Merge "Add support for PHP7 random_bytes in favor of mcrypt_create_iv"
[lhc/web/wiklou.git] / languages / classes / LanguageShi.php
1 <?php
2 /**
3 * Shilha specific code.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Language
22 */
23
24 /**
25 * Conversion script between Latin and Tifinagh for Tachelhit.
26 * - Tifinagh -> lowercase Latin
27 * - lowercase/uppercase Latin -> Tifinagh
28 *
29 *
30 * Based on:
31 * - https://en.wikipedia.org/wiki/Shilha_language
32 * - LanguageSr.php
33 *
34 * @ingroup Language
35 */
36 class ShiConverter extends LanguageConverter {
37 protected $mDoContentConvert;
38
39 public $mToLatin = [
40 'ⴰ' => 'a', 'ⴱ' => 'b', 'ⴳ' => 'g', 'ⴷ' => 'd', 'ⴹ' => 'ḍ', 'ⴻ' => 'e',
41 'ⴼ' => 'f', 'ⴽ' => 'k', 'ⵀ' => 'h', 'ⵃ' => 'ḥ', 'ⵄ' => 'ε', 'ⵅ' => 'x',
42 'ⵇ' => 'q', 'ⵉ' => 'i', 'ⵊ' => 'j', 'ⵍ' => 'l', 'ⵎ' => 'm', 'ⵏ' => 'n',
43 'ⵓ' => 'u', 'ⵔ' => 'r', 'ⵕ' => 'ṛ', 'ⵖ' => 'γ', 'ⵙ' => 's', 'ⵚ' => 'ṣ',
44 'ⵛ' => 'š', 'ⵜ' => 't', 'ⵟ' => 'ṭ', 'ⵡ' => 'w', 'ⵢ' => 'y', 'ⵣ' => 'z',
45 'ⵥ' => 'ẓ', 'ⵯ' => 'ʷ', 'ⵖ' => 'ɣ', 'ⵠ' => 'v', 'ⵒ' => 'p',
46 ];
47
48 public $mUpperToLowerCaseLatin = [
49 'A' => 'a', 'B' => 'b', 'C' => 'c', 'D' => 'd', 'E' => 'e',
50 'F' => 'f', 'G' => 'g', 'H' => 'h', 'I' => 'i', 'J' => 'j',
51 'K' => 'k', 'L' => 'l', 'M' => 'm', 'N' => 'n', 'O' => 'o',
52 'P' => 'p', 'Q' => 'q', 'R' => 'r', 'S' => 's', 'T' => 't',
53 'U' => 'u', 'V' => 'v', 'W' => 'w', 'X' => 'x', 'Y' => 'y',
54 'Z' => 'z', 'Ɣ' => 'ɣ',
55 ];
56
57 public $mToTifinagh = [
58 'a' => 'ⴰ', 'b' => 'ⴱ', 'g' => 'ⴳ', 'd' => 'ⴷ', 'ḍ' => 'ⴹ', 'e' => 'ⴻ',
59 'f' => 'ⴼ', 'k' => 'ⴽ', 'h' => 'ⵀ', 'ḥ' => 'ⵃ', 'ε' => 'ⵄ', 'x' => 'ⵅ',
60 'q' => 'ⵇ', 'i' => 'ⵉ', 'j' => 'ⵊ', 'l' => 'ⵍ', 'm' => 'ⵎ', 'n' => 'ⵏ',
61 'u' => 'ⵓ', 'r' => 'ⵔ', 'ṛ' => 'ⵕ', 'γ' => 'ⵖ', 's' => 'ⵙ', 'ṣ' => 'ⵚ',
62 'š' => 'ⵛ', 't' => 'ⵜ', 'ṭ' => 'ⵟ', 'w' => 'ⵡ', 'y' => 'ⵢ', 'z' => 'ⵣ',
63 'ẓ' => 'ⵥ', 'ʷ' => 'ⵯ', 'ɣ' => 'ⵖ', 'v' => 'ⵠ', 'p' => 'ⵒ',
64 ];
65
66 function loadDefaultTables() {
67 $this->mTables = [
68 'lowercase' => new ReplacementArray( $this->mUpperToLowerCaseLatin ),
69 'shi-tfng' => new ReplacementArray( $this->mToTifinagh ),
70 'shi-latn' => new ReplacementArray( $this->mToLatin ),
71 'shi' => new ReplacementArray()
72 ];
73 }
74
75 /**
76 * A function wrapper:
77 * - if there is no selected variant, leave the link
78 * names as they were
79 * - do not try to find variants for usernames
80 *
81 * @param string &$link
82 * @param Title &$nt
83 * @param bool $ignoreOtherCond
84 */
85 function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
86 // check for user namespace
87 if ( is_object( $nt ) ) {
88 $ns = $nt->getNamespace();
89 if ( $ns == NS_USER || $ns == NS_USER_TALK ) {
90 return;
91 }
92 }
93
94 $oldlink = $link;
95 parent::findVariantLink( $link, $nt, $ignoreOtherCond );
96 if ( $this->getPreferredVariant() == $this->mMainLanguageCode ) {
97 $link = $oldlink;
98 }
99 }
100
101 /**
102 * It translates text into variant
103 *
104 * @param string $text
105 * @param string $toVariant
106 *
107 * @return string
108 */
109 function translate( $text, $toVariant ) {
110 // If $text is empty or only includes spaces, do nothing
111 // Otherwise translate it
112 if ( trim( $text ) ) {
113 $this->loadTables();
114 // To Tifinagh, first translate uppercase to lowercase Latin
115 if ( $toVariant == 'shi-tfng' ) {
116 $text = $this->mTables['lowercase']->replace( $text );
117 }
118 $text = $this->mTables[$toVariant]->replace( $text );
119 }
120 return $text;
121 }
122 }
123
124 /**
125 * Tachelhit
126 *
127 * @ingroup Language
128 */
129 class LanguageShi extends Language {
130 function __construct() {
131 parent::__construct();
132
133 $variants = [ 'shi', 'shi-tfng', 'shi-latn' ];
134 $variantfallbacks = [
135 'shi' => 'shi-tfng',
136 'shi-tfng' => 'shi',
137 'shi-latn' => 'shi',
138 ];
139
140 $flags = [];
141 $this->mConverter = new ShiConverter( $this, 'shi', $variants, $variantfallbacks, $flags );
142 }
143 }