Merge "Adding Wikivoyage to the default interwiki map"
[lhc/web/wiklou.git] / languages / LanguageConverter.php
1 <?php
2 /**
3 * Contains the LanguageConverter class and ConverterRule class
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 * Base class for language conversion.
26 * @ingroup Language
27 *
28 * @author Zhengzhu Feng <zhengzhu@gmail.com>
29 * @maintainers fdcn <fdcn64@gmail.com>, shinjiman <shinjiman@gmail.com>, PhiLiP <philip.npc@gmail.com>
30 */
31 class LanguageConverter {
32
33 /**
34 * languages supporting variants
35 * @since 1.20
36 * @var array
37 */
38 static public $languagesWithVariants = array(
39 'gan',
40 'iu',
41 'kk',
42 'ku',
43 'shi',
44 'sr',
45 'tg',
46 'uz',
47 'zh',
48 );
49
50 public $mMainLanguageCode;
51 public $mVariants, $mVariantFallbacks, $mVariantNames;
52 public $mTablesLoaded = false;
53 public $mTables;
54 // 'bidirectional' 'unidirectional' 'disable' for each variant
55 public $mManualLevel;
56
57 /**
58 * @var String: memcached key name
59 */
60 public $mCacheKey;
61
62 public $mLangObj;
63 public $mFlags;
64 public $mDescCodeSep = ':', $mDescVarSep = ';';
65 public $mUcfirst = false;
66 public $mConvRuleTitle = false;
67 public $mURLVariant;
68 public $mUserVariant;
69 public $mHeaderVariant;
70 public $mMaxDepth = 10;
71 public $mVarSeparatorPattern;
72
73 const CACHE_VERSION_KEY = 'VERSION 7';
74
75 /**
76 * Constructor
77 *
78 * @param $langobj Language: the Language Object
79 * @param $maincode String: the main language code of this language
80 * @param $variants Array: the supported variants of this language
81 * @param $variantfallbacks Array: the fallback language of each variant
82 * @param $flags Array: defining the custom strings that maps to the flags
83 * @param $manualLevel Array: limit for supported variants
84 */
85 public function __construct( $langobj, $maincode, $variants = array(),
86 $variantfallbacks = array(), $flags = array(),
87 $manualLevel = array() ) {
88 global $wgDisabledVariants;
89 $this->mLangObj = $langobj;
90 $this->mMainLanguageCode = $maincode;
91 $this->mVariants = array_diff( $variants, $wgDisabledVariants );
92 $this->mVariantFallbacks = $variantfallbacks;
93 $this->mVariantNames = Language::fetchLanguageNames();
94 $this->mCacheKey = wfMemcKey( 'conversiontables', $maincode );
95 $defaultflags = array(
96 // 'S' show converted text
97 // '+' add rules for alltext
98 // 'E' the gave flags is error
99 // these flags above are reserved for program
100 'A' => 'A', // add rule for convert code (all text convert)
101 'T' => 'T', // title convert
102 'R' => 'R', // raw content
103 'D' => 'D', // convert description (subclass implement)
104 '-' => '-', // remove convert (not implement)
105 'H' => 'H', // add rule for convert code (but no display in placed code)
106 'N' => 'N' // current variant name
107 );
108 $this->mFlags = array_merge( $defaultflags, $flags );
109 foreach ( $this->mVariants as $v ) {
110 if ( array_key_exists( $v, $manualLevel ) ) {
111 $this->mManualLevel[$v] = $manualLevel[$v];
112 } else {
113 $this->mManualLevel[$v] = 'bidirectional';
114 }
115 $this->mFlags[$v] = $v;
116 }
117 }
118
119 /**
120 * Get all valid variants.
121 * Call this instead of using $this->mVariants directly.
122 *
123 * @return Array: contains all valid variants
124 */
125 public function getVariants() {
126 return $this->mVariants;
127 }
128
129 /**
130 * In case some variant is not defined in the markup, we need
131 * to have some fallback. For example, in zh, normally people
132 * will define zh-hans and zh-hant, but less so for zh-sg or zh-hk.
133 * when zh-sg is preferred but not defined, we will pick zh-hans
134 * in this case. Right now this is only used by zh.
135 *
136 * @param $variant String: the language code of the variant
137 * @return String|array: The code of the fallback language or the
138 * main code if there is no fallback
139 */
140 public function getVariantFallbacks( $variant ) {
141 if ( isset( $this->mVariantFallbacks[$variant] ) ) {
142 return $this->mVariantFallbacks[$variant];
143 }
144 return $this->mMainLanguageCode;
145 }
146
147 /**
148 * Get the title produced by the conversion rule.
149 * @return String: The converted title text
150 */
151 public function getConvRuleTitle() {
152 return $this->mConvRuleTitle;
153 }
154
155 /**
156 * Get preferred language variant.
157 * @return String: the preferred language code
158 */
159 public function getPreferredVariant() {
160 global $wgDefaultLanguageVariant, $wgUser;
161
162 $req = $this->getURLVariant();
163
164 if ( $wgUser->isLoggedIn() && !$req ) {
165 $req = $this->getUserVariant();
166 } elseif ( !$req ) {
167 $req = $this->getHeaderVariant();
168 }
169
170 if ( $wgDefaultLanguageVariant && !$req ) {
171 $req = $this->validateVariant( $wgDefaultLanguageVariant );
172 }
173
174 // This function, unlike the other get*Variant functions, is
175 // not memoized (i.e. there return value is not cached) since
176 // new information might appear during processing after this
177 // is first called.
178 if ( $this->validateVariant( $req ) ) {
179 return $req;
180 }
181 return $this->mMainLanguageCode;
182 }
183
184 /**
185 * Get default variant.
186 * This function would not be affected by user's settings
187 * @return String: the default variant code
188 */
189 public function getDefaultVariant() {
190 global $wgDefaultLanguageVariant;
191
192 $req = $this->getURLVariant();
193
194 if ( !$req ) {
195 $req = $this->getHeaderVariant();
196 }
197
198 if ( $wgDefaultLanguageVariant && !$req ) {
199 $req = $this->validateVariant( $wgDefaultLanguageVariant );
200 }
201
202 if ( $req ) {
203 return $req;
204 }
205 return $this->mMainLanguageCode;
206 }
207
208 /**
209 * Validate the variant
210 * @param $variant String: the variant to validate
211 * @return Mixed: returns the variant if it is valid, null otherwise
212 */
213 public function validateVariant( $variant = null ) {
214 if ( $variant !== null && in_array( $variant, $this->mVariants ) ) {
215 return $variant;
216 }
217 return null;
218 }
219
220 /**
221 * Get the variant specified in the URL
222 *
223 * @return Mixed: variant if one found, false otherwise.
224 */
225 public function getURLVariant() {
226 global $wgRequest;
227
228 if ( $this->mURLVariant ) {
229 return $this->mURLVariant;
230 }
231
232 // see if the preference is set in the request
233 $ret = $wgRequest->getText( 'variant' );
234
235 if ( !$ret ) {
236 $ret = $wgRequest->getVal( 'uselang' );
237 }
238
239 $this->mURLVariant = $this->validateVariant( $ret );
240 return $this->mURLVariant;
241 }
242
243 /**
244 * Determine if the user has a variant set.
245 *
246 * @return Mixed: variant if one found, false otherwise.
247 */
248 protected function getUserVariant() {
249 global $wgUser, $wgContLang;
250
251 // memoizing this function wreaks havoc on parserTest.php
252 /*
253 if ( $this->mUserVariant ) {
254 return $this->mUserVariant;
255 }
256 */
257
258 // Get language variant preference from logged in users
259 // Don't call this on stub objects because that causes infinite
260 // recursion during initialisation
261 if ( $wgUser->isLoggedIn() ) {
262 if ( $this->mMainLanguageCode == $wgContLang->getCode() ) {
263 $ret = $wgUser->getOption( 'variant' );
264 } else {
265 $ret = $wgUser->getOption( 'variant-' . $this->mMainLanguageCode );
266 }
267 } else {
268 // figure out user lang without constructing wgLang to avoid
269 // infinite recursion
270 $ret = $wgUser->getOption( 'language' );
271 }
272
273 $this->mUserVariant = $this->validateVariant( $ret );
274 return $this->mUserVariant;
275 }
276
277 /**
278 * Determine the language variant from the Accept-Language header.
279 *
280 * @return Mixed: variant if one found, false otherwise.
281 */
282 protected function getHeaderVariant() {
283 global $wgRequest;
284
285 if ( $this->mHeaderVariant ) {
286 return $this->mHeaderVariant;
287 }
288
289 // see if some supported language variant is set in the
290 // HTTP header.
291 $languages = array_keys( $wgRequest->getAcceptLang() );
292 if ( empty( $languages ) ) {
293 return null;
294 }
295
296 $fallbackLanguages = array();
297 foreach ( $languages as $language ) {
298 $this->mHeaderVariant = $this->validateVariant( $language );
299 if ( $this->mHeaderVariant ) {
300 break;
301 }
302
303 // To see if there are fallbacks of current language.
304 // We record these fallback variants, and process
305 // them later.
306 $fallbacks = $this->getVariantFallbacks( $language );
307 if ( is_string( $fallbacks ) && $fallbacks !== $this->mMainLanguageCode ) {
308 $fallbackLanguages[] = $fallbacks;
309 } elseif ( is_array( $fallbacks ) ) {
310 $fallbackLanguages =
311 array_merge( $fallbackLanguages, $fallbacks );
312 }
313 }
314
315 if ( !$this->mHeaderVariant ) {
316 // process fallback languages now
317 $fallback_languages = array_unique( $fallbackLanguages );
318 foreach ( $fallback_languages as $language ) {
319 $this->mHeaderVariant = $this->validateVariant( $language );
320 if ( $this->mHeaderVariant ) {
321 break;
322 }
323 }
324 }
325
326 return $this->mHeaderVariant;
327 }
328
329 /**
330 * Dictionary-based conversion.
331 * This function would not parse the conversion rules.
332 * If you want to parse rules, try to use convert() or
333 * convertTo().
334 *
335 * @param $text String the text to be converted
336 * @param $toVariant bool|string the target language code
337 * @return String the converted text
338 */
339 public function autoConvert( $text, $toVariant = false ) {
340 wfProfileIn( __METHOD__ );
341
342 $this->loadTables();
343
344 if ( !$toVariant ) {
345 $toVariant = $this->getPreferredVariant();
346 if ( !$toVariant ) {
347 wfProfileOut( __METHOD__ );
348 return $text;
349 }
350 }
351
352 if ( $this->guessVariant( $text, $toVariant ) ) {
353 wfProfileOut( __METHOD__ );
354 return $text;
355 }
356
357 /* we convert everything except:
358 1. HTML markups (anything between < and >)
359 2. HTML entities
360 3. placeholders created by the parser
361 */
362 global $wgParser;
363 if ( isset( $wgParser ) && $wgParser->UniqPrefix() != '' ) {
364 $marker = '|' . $wgParser->UniqPrefix() . '[\-a-zA-Z0-9]+';
365 } else {
366 $marker = '';
367 }
368
369 // this one is needed when the text is inside an HTML markup
370 $htmlfix = '|<[^>]+$|^[^<>]*>';
371
372 // disable convert to variants between <code> tags
373 $codefix = '<code>.+?<\/code>|';
374 // disable conversion of <script> tags
375 $scriptfix = '<script.*?>.*?<\/script>|';
376 // disable conversion of <pre> tags
377 $prefix = '<pre.*?>.*?<\/pre>|';
378
379 $reg = '/' . $codefix . $scriptfix . $prefix .
380 '<[^>]+>|&[a-zA-Z#][a-z0-9]+;' . $marker . $htmlfix . '/s';
381 $startPos = 0;
382 $sourceBlob = '';
383 $literalBlob = '';
384
385 // Guard against delimiter nulls in the input
386 $text = str_replace( "\000", '', $text );
387
388 $markupMatches = null;
389 $elementMatches = null;
390 while ( $startPos < strlen( $text ) ) {
391 if ( preg_match( $reg, $text, $markupMatches, PREG_OFFSET_CAPTURE, $startPos ) ) {
392 $elementPos = $markupMatches[0][1];
393 $element = $markupMatches[0][0];
394 } else {
395 $elementPos = strlen( $text );
396 $element = '';
397 }
398
399 // Queue the part before the markup for translation in a batch
400 $sourceBlob .= substr( $text, $startPos, $elementPos - $startPos ) . "\000";
401
402 // Advance to the next position
403 $startPos = $elementPos + strlen( $element );
404
405 // Translate any alt or title attributes inside the matched element
406 if ( $element !== ''
407 && preg_match( '/^(<[^>\s]*)\s([^>]*)(.*)$/', $element, $elementMatches )
408 ) {
409 $attrs = Sanitizer::decodeTagAttributes( $elementMatches[2] );
410 $changed = false;
411 foreach ( array( 'title', 'alt' ) as $attrName ) {
412 if ( !isset( $attrs[$attrName] ) ) {
413 continue;
414 }
415 $attr = $attrs[$attrName];
416 // Don't convert URLs
417 if ( !strpos( $attr, '://' ) ) {
418 $attr = $this->recursiveConvertTopLevel( $attr, $toVariant );
419 }
420
421 // Remove HTML tags to avoid disrupting the layout
422 $attr = preg_replace( '/<[^>]+>/', '', $attr );
423 if ( $attr !== $attrs[$attrName] ) {
424 $attrs[$attrName] = $attr;
425 $changed = true;
426 }
427 }
428 if ( $changed ) {
429 $element = $elementMatches[1] . Html::expandAttributes( $attrs ) .
430 $elementMatches[3];
431 }
432 }
433 $literalBlob .= $element . "\000";
434 }
435
436 // Do the main translation batch
437 $translatedBlob = $this->translate( $sourceBlob, $toVariant );
438
439 // Put the output back together
440 $translatedIter = StringUtils::explode( "\000", $translatedBlob );
441 $literalIter = StringUtils::explode( "\000", $literalBlob );
442 $output = '';
443 while ( $translatedIter->valid() && $literalIter->valid() ) {
444 $output .= $translatedIter->current();
445 $output .= $literalIter->current();
446 $translatedIter->next();
447 $literalIter->next();
448 }
449
450 wfProfileOut( __METHOD__ );
451 return $output;
452 }
453
454 /**
455 * Translate a string to a variant.
456 * Doesn't parse rules or do any of that other stuff, for that use
457 * convert() or convertTo().
458 *
459 * @param $text String: text to convert
460 * @param $variant String: variant language code
461 * @return String: translated text
462 */
463 public function translate( $text, $variant ) {
464 wfProfileIn( __METHOD__ );
465 // If $text is empty or only includes spaces, do nothing
466 // Otherwise translate it
467 if ( trim( $text ) ) {
468 $this->loadTables();
469 $text = $this->mTables[$variant]->replace( $text );
470 }
471 wfProfileOut( __METHOD__ );
472 return $text;
473 }
474
475 /**
476 * Call translate() to convert text to all valid variants.
477 *
478 * @param $text String: the text to be converted
479 * @return Array: variant => converted text
480 */
481 public function autoConvertToAllVariants( $text ) {
482 wfProfileIn( __METHOD__ );
483 $this->loadTables();
484
485 $ret = array();
486 foreach ( $this->mVariants as $variant ) {
487 $ret[$variant] = $this->translate( $text, $variant );
488 }
489
490 wfProfileOut( __METHOD__ );
491 return $ret;
492 }
493
494 /**
495 * Apply manual conversion rules.
496 *
497 * @param $convRule ConverterRule Object of ConverterRule
498 */
499 protected function applyManualConv( $convRule ) {
500 // Use syntax -{T|zh-cn:TitleCN; zh-tw:TitleTw}- to custom
501 // title conversion.
502 // Bug 24072: $mConvRuleTitle was overwritten by other manual
503 // rule(s) not for title, this breaks the title conversion.
504 $newConvRuleTitle = $convRule->getTitle();
505 if ( $newConvRuleTitle ) {
506 // So I add an empty check for getTitle()
507 $this->mConvRuleTitle = $newConvRuleTitle;
508 }
509
510 // merge/remove manual conversion rules to/from global table
511 $convTable = $convRule->getConvTable();
512 $action = $convRule->getRulesAction();
513 foreach ( $convTable as $variant => $pair ) {
514 if ( !$this->validateVariant( $variant ) ) {
515 continue;
516 }
517
518 if ( $action == 'add' ) {
519 foreach ( $pair as $from => $to ) {
520 // to ensure that $from and $to not be left blank
521 // so $this->translate() could always return a string
522 if ( $from || $to ) {
523 // more efficient than array_merge(), about 2.5 times.
524 $this->mTables[$variant]->setPair( $from, $to );
525 }
526 }
527 } elseif ( $action == 'remove' ) {
528 $this->mTables[$variant]->removeArray( $pair );
529 }
530 }
531 }
532
533 /**
534 * Auto convert a Title object to a readable string in the
535 * preferred variant.
536 *
537 * @param $title Title a object of Title
538 * @return String: converted title text
539 */
540 public function convertTitle( $title ) {
541 $variant = $this->getPreferredVariant();
542 $index = $title->getNamespace();
543 if ( $index !== NS_MAIN ) {
544 $text = $this->convertNamespace( $index, $variant ) . ':';
545 } else {
546 $text = '';
547 }
548 $text .= $this->translate( $title->getText(), $variant );
549 return $text;
550 }
551
552 /**
553 * Get the namespace display name in the preferred variant.
554 *
555 * @param $index int namespace id
556 * @param $variant string|null variant code or null for preferred variant
557 * @return String: namespace name for display
558 */
559 public function convertNamespace( $index, $variant = null ) {
560 if ( $variant === null ) {
561 $variant = $this->getPreferredVariant();
562 }
563 if ( $index === NS_MAIN ) {
564 return '';
565 } else {
566 // First check if a message gives a converted name in the target variant.
567 $nsConvMsg = wfMessage( 'conversion-ns' . $index )->inLanguage( $variant );
568 if ( $nsConvMsg->exists() ) {
569 return $nsConvMsg->plain();
570 }
571 // Then check if a message gives a converted name in content language
572 // which needs extra translation to the target variant.
573 $nsConvMsg = wfMessage( 'conversion-ns' . $index )->inContentLanguage();
574 if ( $nsConvMsg->exists() ) {
575 return $this->translate( $nsConvMsg->plain(), $variant );
576 }
577 // No message exists, retrieve it from the target variant's namespace names.
578 $langObj = $this->mLangObj->factory( $variant );
579 return $langObj->getFormattedNsText( $index );
580 }
581 }
582
583 /**
584 * Convert text to different variants of a language. The automatic
585 * conversion is done in autoConvert(). Here we parse the text
586 * marked with -{}-, which specifies special conversions of the
587 * text that can not be accomplished in autoConvert().
588 *
589 * Syntax of the markup:
590 * -{code1:text1;code2:text2;...}- or
591 * -{flags|code1:text1;code2:text2;...}- or
592 * -{text}- in which case no conversion should take place for text
593 *
594 * @param $text String: text to be converted
595 * @return String: converted text
596 */
597 public function convert( $text ) {
598 $variant = $this->getPreferredVariant();
599 return $this->convertTo( $text, $variant );
600 }
601
602 /**
603 * Same as convert() except a extra parameter to custom variant.
604 *
605 * @param $text String: text to be converted
606 * @param $variant String: the target variant code
607 * @return String: converted text
608 */
609 public function convertTo( $text, $variant ) {
610 global $wgDisableLangConversion;
611 if ( $wgDisableLangConversion ) {
612 return $text;
613 }
614 // Reset converter state for a new converter run.
615 $this->mConvRuleTitle = false;
616 return $this->recursiveConvertTopLevel( $text, $variant );
617 }
618
619 /**
620 * Recursively convert text on the outside. Allow to use nested
621 * markups to custom rules.
622 *
623 * @param $text String: text to be converted
624 * @param $variant String: the target variant code
625 * @param $depth Integer: depth of recursion
626 * @return String: converted text
627 */
628 protected function recursiveConvertTopLevel( $text, $variant, $depth = 0 ) {
629 $startPos = 0;
630 $out = '';
631 $length = strlen( $text );
632 $shouldConvert = !$this->guessVariant( $text, $variant );
633
634 while ( $startPos < $length ) {
635 $pos = strpos( $text, '-{', $startPos );
636
637 if ( $pos === false ) {
638 // No more markup, append final segment
639 $fragment = substr( $text, $startPos );
640 $out .= $shouldConvert ? $this->autoConvert( $fragment, $variant ) : $fragment;
641 return $out;
642 }
643
644 // Markup found
645 // Append initial segment
646 $fragment = substr( $text, $startPos, $pos - $startPos );
647 $out .= $shouldConvert ? $this->autoConvert( $fragment, $variant ) : $fragment;
648
649 // Advance position
650 $startPos = $pos;
651
652 // Do recursive conversion
653 $out .= $this->recursiveConvertRule( $text, $variant, $startPos, $depth + 1 );
654 }
655
656 return $out;
657 }
658
659 /**
660 * Recursively convert text on the inside.
661 *
662 * @param $text String: text to be converted
663 * @param $variant String: the target variant code
664 * @param $startPos int
665 * @param $depth Integer: depth of recursion
666 *
667 * @throws MWException
668 * @return String: converted text
669 */
670 protected function recursiveConvertRule( $text, $variant, &$startPos, $depth = 0 ) {
671 // Quick sanity check (no function calls)
672 if ( $text[$startPos] !== '-' || $text[$startPos + 1] !== '{' ) {
673 throw new MWException( __METHOD__ . ': invalid input string' );
674 }
675
676 $startPos += 2;
677 $inner = '';
678 $warningDone = false;
679 $length = strlen( $text );
680
681 while ( $startPos < $length ) {
682 $m = false;
683 preg_match( '/-\{|\}-/', $text, $m, PREG_OFFSET_CAPTURE, $startPos );
684 if ( !$m ) {
685 // Unclosed rule
686 break;
687 }
688
689 $token = $m[0][0];
690 $pos = $m[0][1];
691
692 // Markup found
693 // Append initial segment
694 $inner .= substr( $text, $startPos, $pos - $startPos );
695
696 // Advance position
697 $startPos = $pos;
698
699 switch ( $token ) {
700 case '-{':
701 // Check max depth
702 if ( $depth >= $this->mMaxDepth ) {
703 $inner .= '-{';
704 if ( !$warningDone ) {
705 $inner .= '<span class="error">' .
706 wfMessage( 'language-converter-depth-warning' )
707 ->numParams( $this->mMaxDepth )->inContentLanguage()->text() .
708 '</span>';
709 $warningDone = true;
710 }
711 $startPos += 2;
712 continue;
713 }
714 // Recursively parse another rule
715 $inner .= $this->recursiveConvertRule( $text, $variant, $startPos, $depth + 1 );
716 break;
717 case '}-':
718 // Apply the rule
719 $startPos += 2;
720 $rule = new ConverterRule( $inner, $this );
721 $rule->parse( $variant );
722 $this->applyManualConv( $rule );
723 return $rule->getDisplay();
724 default:
725 throw new MWException( __METHOD__ . ': invalid regex match' );
726 }
727 }
728
729 // Unclosed rule
730 if ( $startPos < $length ) {
731 $inner .= substr( $text, $startPos );
732 }
733 $startPos = $length;
734 return '-{' . $this->autoConvert( $inner, $variant );
735 }
736
737 /**
738 * If a language supports multiple variants, it is possible that
739 * non-existing link in one variant actually exists in another variant.
740 * This function tries to find it. See e.g. LanguageZh.php
741 *
742 * @param $link String: the name of the link
743 * @param $nt Mixed: the title object of the link
744 * @param $ignoreOtherCond Boolean: to disable other conditions when
745 * we need to transclude a template or update a category's link
746 * @return Null, the input parameters may be modified upon return
747 */
748 public function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
749 # If the article has already existed, there is no need to
750 # check it again, otherwise it may cause a fault.
751 if ( is_object( $nt ) && $nt->exists() ) {
752 return;
753 }
754
755 global $wgDisableLangConversion, $wgDisableTitleConversion, $wgRequest;
756 $isredir = $wgRequest->getText( 'redirect', 'yes' );
757 $action = $wgRequest->getText( 'action' );
758 $linkconvert = $wgRequest->getText( 'linkconvert', 'yes' );
759 $disableLinkConversion = $wgDisableLangConversion
760 || $wgDisableTitleConversion;
761 $linkBatch = new LinkBatch();
762
763 $ns = NS_MAIN;
764
765 if ( $disableLinkConversion ||
766 ( !$ignoreOtherCond &&
767 ( $isredir == 'no'
768 || $action == 'edit'
769 || $action == 'submit'
770 || $linkconvert == 'no' ) ) ) {
771 return;
772 }
773
774 if ( is_object( $nt ) ) {
775 $ns = $nt->getNamespace();
776 }
777
778 $variants = $this->autoConvertToAllVariants( $link );
779 if ( !$variants ) { // give up
780 return;
781 }
782
783 $titles = array();
784
785 foreach ( $variants as $v ) {
786 if ( $v != $link ) {
787 $varnt = Title::newFromText( $v, $ns );
788 if ( !is_null( $varnt ) ) {
789 $linkBatch->addObj( $varnt );
790 $titles[] = $varnt;
791 }
792 }
793 }
794
795 // fetch all variants in single query
796 $linkBatch->execute();
797
798 foreach ( $titles as $varnt ) {
799 if ( $varnt->getArticleID() > 0 ) {
800 $nt = $varnt;
801 $link = $varnt->getText();
802 break;
803 }
804 }
805 }
806
807 /**
808 * Returns language specific hash options.
809 *
810 * @return string
811 */
812 public function getExtraHashOptions() {
813 $variant = $this->getPreferredVariant();
814 return '!' . $variant;
815 }
816
817 /**
818 * Guess if a text is written in a variant. This should be implemented in subclasses.
819 *
820 * @param string $text the text to be checked
821 * @param string $variant language code of the variant to be checked for
822 * @return bool true if $text appears to be written in $variant, false if not
823 *
824 * @author Nikola Smolenski <smolensk@eunet.rs>
825 * @since 1.19
826 */
827 public function guessVariant( $text, $variant ) {
828 return false;
829 }
830
831 /**
832 * Load default conversion tables.
833 * This method must be implemented in derived class.
834 *
835 * @private
836 * @throws MWException
837 */
838 function loadDefaultTables() {
839 $name = get_class( $this );
840 throw new MWException( "Must implement loadDefaultTables() method in class $name" );
841 }
842
843 /**
844 * Load conversion tables either from the cache or the disk.
845 * @private
846 * @param $fromCache Boolean: load from memcached? Defaults to true.
847 */
848 function loadTables( $fromCache = true ) {
849 global $wgLangConvMemc;
850
851 if ( $this->mTablesLoaded ) {
852 return;
853 }
854
855 wfProfileIn( __METHOD__ );
856 $this->mTablesLoaded = true;
857 $this->mTables = false;
858 if ( $fromCache ) {
859 wfProfileIn( __METHOD__ . '-cache' );
860 $this->mTables = $wgLangConvMemc->get( $this->mCacheKey );
861 wfProfileOut( __METHOD__ . '-cache' );
862 }
863 if ( !$this->mTables || !array_key_exists( self::CACHE_VERSION_KEY, $this->mTables ) ) {
864 wfProfileIn( __METHOD__ . '-recache' );
865 // not in cache, or we need a fresh reload.
866 // We will first load the default tables
867 // then update them using things in MediaWiki:Conversiontable/*
868 $this->loadDefaultTables();
869 foreach ( $this->mVariants as $var ) {
870 $cached = $this->parseCachedTable( $var );
871 $this->mTables[$var]->mergeArray( $cached );
872 }
873
874 $this->postLoadTables();
875 $this->mTables[self::CACHE_VERSION_KEY] = true;
876
877 $wgLangConvMemc->set( $this->mCacheKey, $this->mTables, 43200 );
878 wfProfileOut( __METHOD__ . '-recache' );
879 }
880 wfProfileOut( __METHOD__ );
881 }
882
883 /**
884 * Hook for post processing after conversion tables are loaded.
885 */
886 function postLoadTables() { }
887
888 /**
889 * Reload the conversion tables.
890 *
891 * @private
892 */
893 function reloadTables() {
894 if ( $this->mTables ) {
895 unset( $this->mTables );
896 }
897 $this->mTablesLoaded = false;
898 $this->loadTables( false );
899 }
900
901 /**
902 * Parse the conversion table stored in the cache.
903 *
904 * The tables should be in blocks of the following form:
905 * -{
906 * word => word ;
907 * word => word ;
908 * ...
909 * }-
910 *
911 * To make the tables more manageable, subpages are allowed
912 * and will be parsed recursively if $recursive == true.
913 *
914 * @param $code String: language code
915 * @param $subpage String: subpage name
916 * @param $recursive Boolean: parse subpages recursively? Defaults to true.
917 *
918 * @return array
919 */
920 function parseCachedTable( $code, $subpage = '', $recursive = true ) {
921 static $parsed = array();
922
923 $key = 'Conversiontable/' . $code;
924 if ( $subpage ) {
925 $key .= '/' . $subpage;
926 }
927 if ( array_key_exists( $key, $parsed ) ) {
928 return array();
929 }
930
931 $parsed[$key] = true;
932
933 if ( $subpage === '' ) {
934 $txt = MessageCache::singleton()->getMsgFromNamespace( $key, $code );
935 } else {
936 $txt = false;
937 $title = Title::makeTitleSafe( NS_MEDIAWIKI, $key );
938 if ( $title && $title->exists() ) {
939 $revision = Revision::newFromTitle( $title );
940 if ( $revision ) {
941 if ( $revision->getContentModel() == CONTENT_MODEL_WIKITEXT ) {
942 $txt = $revision->getContent( Revision::RAW )->getNativeData();
943 }
944
945 // @todo in the future, use a specialized content model, perhaps based on json!
946 }
947 }
948 }
949
950 # Nothing to parse if there's no text
951 if ( $txt === false || $txt === null || $txt === '' ) {
952 return array();
953 }
954
955 // get all subpage links of the form
956 // [[MediaWiki:Conversiontable/zh-xx/...|...]]
957 $linkhead = $this->mLangObj->getNsText( NS_MEDIAWIKI ) .
958 ':Conversiontable';
959 $subs = StringUtils::explode( '[[', $txt );
960 $sublinks = array();
961 foreach ( $subs as $sub ) {
962 $link = explode( ']]', $sub, 2 );
963 if ( count( $link ) != 2 ) {
964 continue;
965 }
966 $b = explode( '|', $link[0], 2 );
967 $b = explode( '/', trim( $b[0] ), 3 );
968 if ( count( $b ) == 3 ) {
969 $sublink = $b[2];
970 } else {
971 $sublink = '';
972 }
973
974 if ( $b[0] == $linkhead && $b[1] == $code ) {
975 $sublinks[] = $sublink;
976 }
977 }
978
979 // parse the mappings in this page
980 $blocks = StringUtils::explode( '-{', $txt );
981 $ret = array();
982 $first = true;
983 foreach ( $blocks as $block ) {
984 if ( $first ) {
985 // Skip the part before the first -{
986 $first = false;
987 continue;
988 }
989 $mappings = explode( '}-', $block, 2 );
990 $stripped = str_replace( array( "'", '"', '*', '#' ), '', $mappings[0] );
991 $table = StringUtils::explode( ';', $stripped );
992 foreach ( $table as $t ) {
993 $m = explode( '=>', $t, 3 );
994 if ( count( $m ) != 2 ) {
995 continue;
996 }
997 // trim any trailling comments starting with '//'
998 $tt = explode( '//', $m[1], 2 );
999 $ret[trim( $m[0] )] = trim( $tt[0] );
1000 }
1001 }
1002
1003 // recursively parse the subpages
1004 if ( $recursive ) {
1005 foreach ( $sublinks as $link ) {
1006 $s = $this->parseCachedTable( $code, $link, $recursive );
1007 $ret = array_merge( $ret, $s );
1008 }
1009 }
1010
1011 if ( $this->mUcfirst ) {
1012 foreach ( $ret as $k => $v ) {
1013 $ret[$this->mLangObj->ucfirst( $k )] = $this->mLangObj->ucfirst( $v );
1014 }
1015 }
1016 return $ret;
1017 }
1018
1019 /**
1020 * Enclose a string with the "no conversion" tag. This is used by
1021 * various functions in the Parser.
1022 *
1023 * @param $text String: text to be tagged for no conversion
1024 * @param $noParse Boolean: unused
1025 * @return String: the tagged text
1026 */
1027 public function markNoConversion( $text, $noParse = false ) {
1028 # don't mark if already marked
1029 if ( strpos( $text, '-{' ) || strpos( $text, '}-' ) ) {
1030 return $text;
1031 }
1032
1033 $ret = "-{R|$text}-";
1034 return $ret;
1035 }
1036
1037 /**
1038 * Convert the sorting key for category links. This should make different
1039 * keys that are variants of each other map to the same key.
1040 *
1041 * @param $key string
1042 *
1043 * @return string
1044 */
1045 function convertCategoryKey( $key ) {
1046 return $key;
1047 }
1048
1049 /**
1050 * Hook to refresh the cache of conversion tables when
1051 * MediaWiki:Conversiontable* is updated.
1052 * @private
1053 *
1054 * @param $page WikiPage object
1055 * @param $user Object: User object for the current user
1056 * @param $content Content: new page content
1057 * @param $summary String: edit summary of the edit
1058 * @param $isMinor Boolean: was the edit marked as minor?
1059 * @param $isWatch Boolean: did the user watch this page or not?
1060 * @param $section
1061 * @param $flags int Bitfield
1062 * @param $revision Object: new Revision object or null
1063 * @return Boolean: true
1064 */
1065 function OnPageContentSaveComplete( $page, $user, $content, $summary, $isMinor,
1066 $isWatch, $section, $flags, $revision ) {
1067 $titleobj = $page->getTitle();
1068 if ( $titleobj->getNamespace() == NS_MEDIAWIKI ) {
1069 $title = $titleobj->getDBkey();
1070 $t = explode( '/', $title, 3 );
1071 $c = count( $t );
1072 if ( $c > 1 && $t[0] == 'Conversiontable' ) {
1073 if ( $this->validateVariant( $t[1] ) ) {
1074 $this->reloadTables();
1075 }
1076 }
1077 }
1078 return true;
1079 }
1080
1081 /**
1082 * Armour rendered math against conversion.
1083 * Escape special chars in parsed math text. (in most cases are img elements)
1084 *
1085 * @param $text String: text to armour against conversion
1086 * @return String: armoured text where { and } have been converted to
1087 * &#123; and &#125;
1088 * @deprecated since 1.22 is no longer used
1089 */
1090 public function armourMath( $text ) {
1091 // convert '-{' and '}-' to '-&#123;' and '&#125;-' to prevent
1092 // any unwanted markup appearing in the math image tag.
1093 $text = strtr( $text, array( '-{' => '-&#123;', '}-' => '&#125;-' ) );
1094 return $text;
1095 }
1096
1097 /**
1098 * Get the cached separator pattern for ConverterRule::parseRules()
1099 */
1100 function getVarSeparatorPattern() {
1101 if ( is_null( $this->mVarSeparatorPattern ) ) {
1102 // varsep_pattern for preg_split:
1103 // text should be splited by ";" only if a valid variant
1104 // name exist after the markup, for example:
1105 // -{zh-hans:<span style="font-size:120%;">xxx</span>;zh-hant:\
1106 // <span style="font-size:120%;">yyy</span>;}-
1107 // we should split it as:
1108 // array(
1109 // [0] => 'zh-hans:<span style="font-size:120%;">xxx</span>'
1110 // [1] => 'zh-hant:<span style="font-size:120%;">yyy</span>'
1111 // [2] => ''
1112 // )
1113 $pat = '/;\s*(?=';
1114 foreach ( $this->mVariants as $variant ) {
1115 // zh-hans:xxx;zh-hant:yyy
1116 $pat .= $variant . '\s*:|';
1117 // xxx=>zh-hans:yyy; xxx=>zh-hant:zzz
1118 $pat .= '[^;]*?=>\s*' . $variant . '\s*:|';
1119 }
1120 $pat .= '\s*$)/';
1121 $this->mVarSeparatorPattern = $pat;
1122 }
1123 return $this->mVarSeparatorPattern;
1124 }
1125 }
1126
1127 /**
1128 * Parser for rules of language conversion , parse rules in -{ }- tag.
1129 * @ingroup Language
1130 * @author fdcn <fdcn64@gmail.com>, PhiLiP <philip.npc@gmail.com>
1131 */
1132 class ConverterRule {
1133 public $mText; // original text in -{text}-
1134 public $mConverter; // LanguageConverter object
1135 public $mRuleDisplay = '';
1136 public $mRuleTitle = false;
1137 public $mRules = '';// string : the text of the rules
1138 public $mRulesAction = 'none';
1139 public $mFlags = array();
1140 public $mVariantFlags = array();
1141 public $mConvTable = array();
1142 public $mBidtable = array();// array of the translation in each variant
1143 public $mUnidtable = array();// array of the translation in each variant
1144
1145 /**
1146 * Constructor
1147 *
1148 * @param $text String: the text between -{ and }-
1149 * @param $converter LanguageConverter object
1150 */
1151 public function __construct( $text, $converter ) {
1152 $this->mText = $text;
1153 $this->mConverter = $converter;
1154 }
1155
1156 /**
1157 * Check if variants array in convert array.
1158 *
1159 * @param $variants Array or string: variant language code
1160 * @return String: translated text
1161 */
1162 public function getTextInBidtable( $variants ) {
1163 $variants = (array)$variants;
1164 if ( !$variants ) {
1165 return false;
1166 }
1167 foreach ( $variants as $variant ) {
1168 if ( isset( $this->mBidtable[$variant] ) ) {
1169 return $this->mBidtable[$variant];
1170 }
1171 }
1172 return false;
1173 }
1174
1175 /**
1176 * Parse flags with syntax -{FLAG| ... }-
1177 * @private
1178 */
1179 function parseFlags() {
1180 $text = $this->mText;
1181 $flags = array();
1182 $variantFlags = array();
1183
1184 $sepPos = strpos( $text, '|' );
1185 if ( $sepPos !== false ) {
1186 $validFlags = $this->mConverter->mFlags;
1187 $f = StringUtils::explode( ';', substr( $text, 0, $sepPos ) );
1188 foreach ( $f as $ff ) {
1189 $ff = trim( $ff );
1190 if ( isset( $validFlags[$ff] ) ) {
1191 $flags[$validFlags[$ff]] = true;
1192 }
1193 }
1194 $text = strval( substr( $text, $sepPos + 1 ) );
1195 }
1196
1197 if ( !$flags ) {
1198 $flags['S'] = true;
1199 } elseif ( isset( $flags['R'] ) ) {
1200 $flags = array( 'R' => true );// remove other flags
1201 } elseif ( isset( $flags['N'] ) ) {
1202 $flags = array( 'N' => true );// remove other flags
1203 } elseif ( isset( $flags['-'] ) ) {
1204 $flags = array( '-' => true );// remove other flags
1205 } elseif ( count( $flags ) == 1 && isset( $flags['T'] ) ) {
1206 $flags['H'] = true;
1207 } elseif ( isset( $flags['H'] ) ) {
1208 // replace A flag, and remove other flags except T
1209 $temp = array( '+' => true, 'H' => true );
1210 if ( isset( $flags['T'] ) ) {
1211 $temp['T'] = true;
1212 }
1213 if ( isset( $flags['D'] ) ) {
1214 $temp['D'] = true;
1215 }
1216 $flags = $temp;
1217 } else {
1218 if ( isset( $flags['A'] ) ) {
1219 $flags['+'] = true;
1220 $flags['S'] = true;
1221 }
1222 if ( isset( $flags['D'] ) ) {
1223 unset( $flags['S'] );
1224 }
1225 // try to find flags like "zh-hans", "zh-hant"
1226 // allow syntaxes like "-{zh-hans;zh-hant|XXXX}-"
1227 $variantFlags = array_intersect( array_keys( $flags ), $this->mConverter->mVariants );
1228 if ( $variantFlags ) {
1229 $variantFlags = array_flip( $variantFlags );
1230 $flags = array();
1231 }
1232 }
1233 $this->mVariantFlags = $variantFlags;
1234 $this->mRules = $text;
1235 $this->mFlags = $flags;
1236 }
1237
1238 /**
1239 * Generate conversion table.
1240 * @private
1241 */
1242 function parseRules() {
1243 $rules = $this->mRules;
1244 $bidtable = array();
1245 $unidtable = array();
1246 $variants = $this->mConverter->mVariants;
1247 $varsep_pattern = $this->mConverter->getVarSeparatorPattern();
1248
1249 // Split according to $varsep_pattern, but ignore semicolons from HTML entities
1250 $rules = preg_replace( '/(&[#a-zA-Z0-9]+);/', "$1\x01", $rules );
1251 $choice = preg_split( $varsep_pattern, $rules );
1252 $choice = str_replace( "\x01", ';', $choice );
1253
1254 foreach ( $choice as $c ) {
1255 $v = explode( ':', $c, 2 );
1256 if ( count( $v ) != 2 ) {
1257 // syntax error, skip
1258 continue;
1259 }
1260 $to = trim( $v[1] );
1261 $v = trim( $v[0] );
1262 $u = explode( '=>', $v, 2 );
1263 // if $to is empty, strtr() could return a wrong result
1264 if ( count( $u ) == 1 && $to && in_array( $v, $variants ) ) {
1265 $bidtable[$v] = $to;
1266 } elseif ( count( $u ) == 2 ) {
1267 $from = trim( $u[0] );
1268 $v = trim( $u[1] );
1269 if ( array_key_exists( $v, $unidtable )
1270 && !is_array( $unidtable[$v] )
1271 && $to
1272 && in_array( $v, $variants ) ) {
1273 $unidtable[$v] = array( $from => $to );
1274 } elseif ( $to && in_array( $v, $variants ) ) {
1275 $unidtable[$v][$from] = $to;
1276 }
1277 }
1278 // syntax error, pass
1279 if ( !isset( $this->mConverter->mVariantNames[$v] ) ) {
1280 $bidtable = array();
1281 $unidtable = array();
1282 break;
1283 }
1284 }
1285 $this->mBidtable = $bidtable;
1286 $this->mUnidtable = $unidtable;
1287 }
1288
1289 /**
1290 * @private
1291 *
1292 * @return string
1293 */
1294 function getRulesDesc() {
1295 $codesep = $this->mConverter->mDescCodeSep;
1296 $varsep = $this->mConverter->mDescVarSep;
1297 $text = '';
1298 foreach ( $this->mBidtable as $k => $v ) {
1299 $text .= $this->mConverter->mVariantNames[$k] . "$codesep$v$varsep";
1300 }
1301 foreach ( $this->mUnidtable as $k => $a ) {
1302 foreach ( $a as $from => $to ) {
1303 $text .= $from . '⇒' . $this->mConverter->mVariantNames[$k] .
1304 "$codesep$to$varsep";
1305 }
1306 }
1307 return $text;
1308 }
1309
1310 /**
1311 * Parse rules conversion.
1312 * @private
1313 *
1314 * @param $variant
1315 *
1316 * @return string
1317 */
1318 function getRuleConvertedStr( $variant ) {
1319 $bidtable = $this->mBidtable;
1320 $unidtable = $this->mUnidtable;
1321
1322 if ( count( $bidtable ) + count( $unidtable ) == 0 ) {
1323 return $this->mRules;
1324 } else {
1325 // display current variant in bidirectional array
1326 $disp = $this->getTextInBidtable( $variant );
1327 // or display current variant in fallbacks
1328 if ( !$disp ) {
1329 $disp = $this->getTextInBidtable(
1330 $this->mConverter->getVariantFallbacks( $variant ) );
1331 }
1332 // or display current variant in unidirectional array
1333 if ( !$disp && array_key_exists( $variant, $unidtable ) ) {
1334 $disp = array_values( $unidtable[$variant] );
1335 $disp = $disp[0];
1336 }
1337 // or display frist text under disable manual convert
1338 if ( !$disp && $this->mConverter->mManualLevel[$variant] == 'disable' ) {
1339 if ( count( $bidtable ) > 0 ) {
1340 $disp = array_values( $bidtable );
1341 $disp = $disp[0];
1342 } else {
1343 $disp = array_values( $unidtable );
1344 $disp = array_values( $disp[0] );
1345 $disp = $disp[0];
1346 }
1347 }
1348 return $disp;
1349 }
1350 }
1351
1352 /**
1353 * Similar to getRuleConvertedStr(), but this prefers to use original
1354 * page title if $variant === $this->mConverter->mMainLanguageCode
1355 * and may return false in this case (so this title conversion rule
1356 * will be ignored and the original title is shown).
1357 *
1358 * @since 1.22
1359 * @param $variant The variant code to display page title in
1360 * @return String|false The converted title or false if just page name
1361 */
1362 function getRuleConvertedTitle( $variant ) {
1363 if ( $variant === $this->mConverter->mMainLanguageCode ) {
1364 // If a string targeting exactly this variant is set,
1365 // use it. Otherwise, just return false, so the real
1366 // page name can be shown (and because variant === main,
1367 // there'll be no further automatic conversion).
1368 $disp = $this->getTextInBidtable( $variant );
1369 if ( $disp ) {
1370 return $disp;
1371 }
1372 if ( array_key_exists( $variant, $this->mUnidtable ) ) {
1373 $disp = array_values( $this->mUnidtable[$variant] );
1374 $disp = $disp[0];
1375 }
1376 // Assigned above or still false.
1377 return $disp;
1378 } else {
1379 return $this->getRuleConvertedStr( $variant );
1380 }
1381 }
1382
1383 /**
1384 * Generate conversion table for all text.
1385 * @private
1386 */
1387 function generateConvTable() {
1388 // Special case optimisation
1389 if ( !$this->mBidtable && !$this->mUnidtable ) {
1390 $this->mConvTable = array();
1391 return;
1392 }
1393
1394 $bidtable = $this->mBidtable;
1395 $unidtable = $this->mUnidtable;
1396 $manLevel = $this->mConverter->mManualLevel;
1397
1398 $vmarked = array();
1399 foreach ( $this->mConverter->mVariants as $v ) {
1400 /* for bidirectional array
1401 fill in the missing variants, if any,
1402 with fallbacks */
1403 if ( !isset( $bidtable[$v] ) ) {
1404 $variantFallbacks =
1405 $this->mConverter->getVariantFallbacks( $v );
1406 $vf = $this->getTextInBidtable( $variantFallbacks );
1407 if ( $vf ) {
1408 $bidtable[$v] = $vf;
1409 }
1410 }
1411
1412 if ( isset( $bidtable[$v] ) ) {
1413 foreach ( $vmarked as $vo ) {
1414 // use syntax: -{A|zh:WordZh;zh-tw:WordTw}-
1415 // or -{H|zh:WordZh;zh-tw:WordTw}-
1416 // or -{-|zh:WordZh;zh-tw:WordTw}-
1417 // to introduce a custom mapping between
1418 // words WordZh and WordTw in the whole text
1419 if ( $manLevel[$v] == 'bidirectional' ) {
1420 $this->mConvTable[$v][$bidtable[$vo]] = $bidtable[$v];
1421 }
1422 if ( $manLevel[$vo] == 'bidirectional' ) {
1423 $this->mConvTable[$vo][$bidtable[$v]] = $bidtable[$vo];
1424 }
1425 }
1426 $vmarked[] = $v;
1427 }
1428 /* for unidirectional array fill to convert tables */
1429 if ( ( $manLevel[$v] == 'bidirectional' || $manLevel[$v] == 'unidirectional' )
1430 && isset( $unidtable[$v] )
1431 ) {
1432 if ( isset( $this->mConvTable[$v] ) ) {
1433 $this->mConvTable[$v] = array_merge( $this->mConvTable[$v], $unidtable[$v] );
1434 } else {
1435 $this->mConvTable[$v] = $unidtable[$v];
1436 }
1437 }
1438 }
1439 }
1440
1441 /**
1442 * Parse rules and flags.
1443 * @param $variant String: variant language code
1444 */
1445 public function parse( $variant = null ) {
1446 if ( !$variant ) {
1447 $variant = $this->mConverter->getPreferredVariant();
1448 }
1449
1450 $this->parseFlags();
1451 $flags = $this->mFlags;
1452
1453 // convert to specified variant
1454 // syntax: -{zh-hans;zh-hant[;...]|<text to convert>}-
1455 if ( $this->mVariantFlags ) {
1456 // check if current variant in flags
1457 if ( isset( $this->mVariantFlags[$variant] ) ) {
1458 // then convert <text to convert> to current language
1459 $this->mRules = $this->mConverter->autoConvert( $this->mRules,
1460 $variant );
1461 } else {
1462 // if current variant no in flags,
1463 // then we check its fallback variants.
1464 $variantFallbacks =
1465 $this->mConverter->getVariantFallbacks( $variant );
1466 if ( is_array( $variantFallbacks ) ) {
1467 foreach ( $variantFallbacks as $variantFallback ) {
1468 // if current variant's fallback exist in flags
1469 if ( isset( $this->mVariantFlags[$variantFallback] ) ) {
1470 // then convert <text to convert> to fallback language
1471 $this->mRules =
1472 $this->mConverter->autoConvert( $this->mRules,
1473 $variantFallback );
1474 break;
1475 }
1476 }
1477 }
1478 }
1479 $this->mFlags = $flags = array( 'R' => true );
1480 }
1481
1482 if ( !isset( $flags['R'] ) && !isset( $flags['N'] ) ) {
1483 // decode => HTML entities modified by Sanitizer::removeHTMLtags
1484 $this->mRules = str_replace( '=&gt;', '=>', $this->mRules );
1485 $this->parseRules();
1486 }
1487 $rules = $this->mRules;
1488
1489 if ( !$this->mBidtable && !$this->mUnidtable ) {
1490 if ( isset( $flags['+'] ) || isset( $flags['-'] ) ) {
1491 // fill all variants if text in -{A/H/-|text} without rules
1492 foreach ( $this->mConverter->mVariants as $v ) {
1493 $this->mBidtable[$v] = $rules;
1494 }
1495 } elseif ( !isset( $flags['N'] ) && !isset( $flags['T'] ) ) {
1496 $this->mFlags = $flags = array( 'R' => true );
1497 }
1498 }
1499
1500 $this->mRuleDisplay = false;
1501 foreach ( $flags as $flag => $unused ) {
1502 switch ( $flag ) {
1503 case 'R':
1504 // if we don't do content convert, still strip the -{}- tags
1505 $this->mRuleDisplay = $rules;
1506 break;
1507 case 'N':
1508 // process N flag: output current variant name
1509 $ruleVar = trim( $rules );
1510 if ( isset( $this->mConverter->mVariantNames[$ruleVar] ) ) {
1511 $this->mRuleDisplay = $this->mConverter->mVariantNames[$ruleVar];
1512 } else {
1513 $this->mRuleDisplay = '';
1514 }
1515 break;
1516 case 'D':
1517 // process D flag: output rules description
1518 $this->mRuleDisplay = $this->getRulesDesc();
1519 break;
1520 case 'H':
1521 // process H,- flag or T only: output nothing
1522 $this->mRuleDisplay = '';
1523 break;
1524 case '-':
1525 $this->mRulesAction = 'remove';
1526 $this->mRuleDisplay = '';
1527 break;
1528 case '+':
1529 $this->mRulesAction = 'add';
1530 $this->mRuleDisplay = '';
1531 break;
1532 case 'S':
1533 $this->mRuleDisplay = $this->getRuleConvertedStr( $variant );
1534 break;
1535 case 'T':
1536 $this->mRuleTitle = $this->getRuleConvertedTitle( $variant );
1537 $this->mRuleDisplay = '';
1538 break;
1539 default:
1540 // ignore unknown flags (but see error case below)
1541 }
1542 }
1543 if ( $this->mRuleDisplay === false ) {
1544 $this->mRuleDisplay = '<span class="error">'
1545 . wfMessage( 'converter-manual-rule-error' )->inContentLanguage()->escaped()
1546 . '</span>';
1547 }
1548
1549 $this->generateConvTable();
1550 }
1551
1552 /**
1553 * @todo FIXME: code this function :)
1554 */
1555 public function hasRules() {
1556 // TODO:
1557 }
1558
1559 /**
1560 * Get display text on markup -{...}-
1561 * @return string
1562 */
1563 public function getDisplay() {
1564 return $this->mRuleDisplay;
1565 }
1566
1567 /**
1568 * Get converted title.
1569 * @return string
1570 */
1571 public function getTitle() {
1572 return $this->mRuleTitle;
1573 }
1574
1575 /**
1576 * Return how deal with conversion rules.
1577 * @return string
1578 */
1579 public function getRulesAction() {
1580 return $this->mRulesAction;
1581 }
1582
1583 /**
1584 * Get conversion table. (bidirectional and unidirectional
1585 * conversion table)
1586 * @return array
1587 */
1588 public function getConvTable() {
1589 return $this->mConvTable;
1590 }
1591
1592 /**
1593 * Get conversion rules string.
1594 * @return string
1595 */
1596 public function getRules() {
1597 return $this->mRules;
1598 }
1599
1600 /**
1601 * Get conversion flags.
1602 * @return array
1603 */
1604 public function getFlags() {
1605 return $this->mFlags;
1606 }
1607 }