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