(bug 24837) Fix issue where namespaces which were localised but not defined were...
[lhc/web/wiklou.git] / languages / Language.php
1 <?php
2 /**
3 * @defgroup Language Language
4 *
5 * @file
6 * @ingroup Language
7 */
8
9 if ( !defined( 'MEDIAWIKI' ) ) {
10 echo "This file is part of MediaWiki, it is not a valid entry point.\n";
11 exit( 1 );
12 }
13
14 # Read language names
15 global $wgLanguageNames;
16 require_once( dirname( __FILE__ ) . '/Names.php' );
17
18 global $wgInputEncoding, $wgOutputEncoding;
19
20 /**
21 * These are always UTF-8, they exist only for backwards compatibility
22 */
23 $wgInputEncoding = 'UTF-8';
24 $wgOutputEncoding = 'UTF-8';
25
26 if ( function_exists( 'mb_strtoupper' ) ) {
27 mb_internal_encoding( 'UTF-8' );
28 }
29
30 /**
31 * a fake language converter
32 *
33 * @ingroup Language
34 */
35 class FakeConverter {
36 var $mLang;
37 function FakeConverter( $langobj ) { $this->mLang = $langobj; }
38 function autoConvertToAllVariants( $text ) { return $text; }
39 function convert( $t ) { return $t; }
40 function convertTitle( $t ) { return $t->getPrefixedText(); }
41 function getVariants() { return array( $this->mLang->getCode() ); }
42 function getPreferredVariant() { return $this->mLang->getCode(); }
43 function getConvRuleTitle() { return false; }
44 function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) { }
45 function getExtraHashOptions() { return ''; }
46 function getParsedTitle() { return ''; }
47 function markNoConversion( $text, $noParse = false ) { return $text; }
48 function convertCategoryKey( $key ) { return $key; }
49 function convertLinkToAllVariants( $text ) { return array( $this->mLang->getCode() => $text ); }
50 function armourMath( $text ) { return $text; }
51 }
52
53 /**
54 * Internationalisation code
55 * @ingroup Language
56 */
57 class Language {
58 var $mConverter, $mVariants, $mCode, $mLoaded = false;
59 var $mMagicExtensions = array(), $mMagicHookDone = false;
60
61 var $mNamespaceIds, $namespaceNames, $namespaceAliases;
62 var $dateFormatStrings = array();
63 var $mExtendedSpecialPageAliases;
64
65 /**
66 * ReplacementArray object caches
67 */
68 var $transformData = array();
69
70 static public $dataCache;
71 static public $mLangObjCache = array();
72
73 static public $mWeekdayMsgs = array(
74 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday',
75 'friday', 'saturday'
76 );
77
78 static public $mWeekdayAbbrevMsgs = array(
79 'sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'
80 );
81
82 static public $mMonthMsgs = array(
83 'january', 'february', 'march', 'april', 'may_long', 'june',
84 'july', 'august', 'september', 'october', 'november',
85 'december'
86 );
87 static public $mMonthGenMsgs = array(
88 'january-gen', 'february-gen', 'march-gen', 'april-gen', 'may-gen', 'june-gen',
89 'july-gen', 'august-gen', 'september-gen', 'october-gen', 'november-gen',
90 'december-gen'
91 );
92 static public $mMonthAbbrevMsgs = array(
93 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
94 'sep', 'oct', 'nov', 'dec'
95 );
96
97 static public $mIranianCalendarMonthMsgs = array(
98 'iranian-calendar-m1', 'iranian-calendar-m2', 'iranian-calendar-m3',
99 'iranian-calendar-m4', 'iranian-calendar-m5', 'iranian-calendar-m6',
100 'iranian-calendar-m7', 'iranian-calendar-m8', 'iranian-calendar-m9',
101 'iranian-calendar-m10', 'iranian-calendar-m11', 'iranian-calendar-m12'
102 );
103
104 static public $mHebrewCalendarMonthMsgs = array(
105 'hebrew-calendar-m1', 'hebrew-calendar-m2', 'hebrew-calendar-m3',
106 'hebrew-calendar-m4', 'hebrew-calendar-m5', 'hebrew-calendar-m6',
107 'hebrew-calendar-m7', 'hebrew-calendar-m8', 'hebrew-calendar-m9',
108 'hebrew-calendar-m10', 'hebrew-calendar-m11', 'hebrew-calendar-m12',
109 'hebrew-calendar-m6a', 'hebrew-calendar-m6b'
110 );
111
112 static public $mHebrewCalendarMonthGenMsgs = array(
113 'hebrew-calendar-m1-gen', 'hebrew-calendar-m2-gen', 'hebrew-calendar-m3-gen',
114 'hebrew-calendar-m4-gen', 'hebrew-calendar-m5-gen', 'hebrew-calendar-m6-gen',
115 'hebrew-calendar-m7-gen', 'hebrew-calendar-m8-gen', 'hebrew-calendar-m9-gen',
116 'hebrew-calendar-m10-gen', 'hebrew-calendar-m11-gen', 'hebrew-calendar-m12-gen',
117 'hebrew-calendar-m6a-gen', 'hebrew-calendar-m6b-gen'
118 );
119
120 static public $mHijriCalendarMonthMsgs = array(
121 'hijri-calendar-m1', 'hijri-calendar-m2', 'hijri-calendar-m3',
122 'hijri-calendar-m4', 'hijri-calendar-m5', 'hijri-calendar-m6',
123 'hijri-calendar-m7', 'hijri-calendar-m8', 'hijri-calendar-m9',
124 'hijri-calendar-m10', 'hijri-calendar-m11', 'hijri-calendar-m12'
125 );
126
127 /**
128 * Get a cached language object for a given language code
129 */
130 static function factory( $code ) {
131 if ( !isset( self::$mLangObjCache[$code] ) ) {
132 if ( count( self::$mLangObjCache ) > 10 ) {
133 // Don't keep a billion objects around, that's stupid.
134 self::$mLangObjCache = array();
135 }
136 self::$mLangObjCache[$code] = self::newFromCode( $code );
137 }
138 return self::$mLangObjCache[$code];
139 }
140
141 /**
142 * Create a language object for a given language code
143 */
144 protected static function newFromCode( $code ) {
145 global $IP;
146 static $recursionLevel = 0;
147 if ( $code == 'en' ) {
148 $class = 'Language';
149 } else {
150 $class = 'Language' . str_replace( '-', '_', ucfirst( $code ) );
151 // Preload base classes to work around APC/PHP5 bug
152 if ( file_exists( "$IP/languages/classes/$class.deps.php" ) ) {
153 include_once( "$IP/languages/classes/$class.deps.php" );
154 }
155 if ( file_exists( "$IP/languages/classes/$class.php" ) ) {
156 include_once( "$IP/languages/classes/$class.php" );
157 }
158 }
159
160 if ( $recursionLevel > 5 ) {
161 throw new MWException( "Language fallback loop detected when creating class $class\n" );
162 }
163
164 if ( !class_exists( $class ) ) {
165 $fallback = Language::getFallbackFor( $code );
166 ++$recursionLevel;
167 $lang = Language::newFromCode( $fallback );
168 --$recursionLevel;
169 $lang->setCode( $code );
170 } else {
171 $lang = new $class;
172 }
173 return $lang;
174 }
175
176 /**
177 * Get the LocalisationCache instance
178 */
179 public static function getLocalisationCache() {
180 if ( is_null( self::$dataCache ) ) {
181 global $wgLocalisationCacheConf;
182 $class = $wgLocalisationCacheConf['class'];
183 self::$dataCache = new $class( $wgLocalisationCacheConf );
184 }
185 return self::$dataCache;
186 }
187
188 function __construct() {
189 $this->mConverter = new FakeConverter( $this );
190 // Set the code to the name of the descendant
191 if ( get_class( $this ) == 'Language' ) {
192 $this->mCode = 'en';
193 } else {
194 $this->mCode = str_replace( '_', '-', strtolower( substr( get_class( $this ), 8 ) ) );
195 }
196 self::getLocalisationCache();
197 }
198
199 /**
200 * Reduce memory usage
201 */
202 function __destruct() {
203 foreach ( $this as $name => $value ) {
204 unset( $this->$name );
205 }
206 }
207
208 /**
209 * Hook which will be called if this is the content language.
210 * Descendants can use this to register hook functions or modify globals
211 */
212 function initContLang() { }
213
214 /**
215 * @deprecated Use User::getDefaultOptions()
216 * @return array
217 */
218 function getDefaultUserOptions() {
219 wfDeprecated( __METHOD__ );
220 return User::getDefaultOptions();
221 }
222
223 function getFallbackLanguageCode() {
224 if ( $this->mCode === 'en' ) {
225 return false;
226 } else {
227 return self::$dataCache->getItem( $this->mCode, 'fallback' );
228 }
229 }
230
231 /**
232 * Exports $wgBookstoreListEn
233 * @return array
234 */
235 function getBookstoreList() {
236 return self::$dataCache->getItem( $this->mCode, 'bookstoreList' );
237 }
238
239 /**
240 * @return array
241 */
242 function getNamespaces() {
243 if ( is_null( $this->namespaceNames ) ) {
244 global $wgExtraNamespaces, $wgMetaNamespace, $wgMetaNamespaceTalk;
245
246 $this->namespaceNames = self::$dataCache->getItem( $this->mCode, 'namespaceNames' );
247 if ( $wgExtraNamespaces ) {
248 $this->namespaceNames = $wgExtraNamespaces + $this->namespaceNames;
249 }
250
251 $this->namespaceNames[NS_PROJECT] = $wgMetaNamespace;
252 if ( $wgMetaNamespaceTalk ) {
253 $this->namespaceNames[NS_PROJECT_TALK] = $wgMetaNamespaceTalk;
254 } else {
255 $talk = $this->namespaceNames[NS_PROJECT_TALK];
256 $this->namespaceNames[NS_PROJECT_TALK] =
257 $this->fixVariableInNamespace( $talk );
258 }
259
260 # Sometimes a language will be localised but not actually exist on this wiki.
261 $validNamespaces = MWNamespace::getValidNamespaces();
262 foreach( $this->namespaceNames as $key => $text ) {
263 if ( ! in_array( $key, $validNamespaces ) ) {
264 unset( $this->namespaceNames[$key] );
265 }
266 }
267
268 # The above mixing may leave namespaces out of canonical order.
269 # Re-order by namespace ID number...
270 ksort( $this->namespaceNames );
271 }
272 return $this->namespaceNames;
273 }
274
275 /**
276 * A convenience function that returns the same thing as
277 * getNamespaces() except with the array values changed to ' '
278 * where it found '_', useful for producing output to be displayed
279 * e.g. in <select> forms.
280 *
281 * @return array
282 */
283 function getFormattedNamespaces() {
284 $ns = $this->getNamespaces();
285 foreach ( $ns as $k => $v ) {
286 $ns[$k] = strtr( $v, '_', ' ' );
287 }
288 return $ns;
289 }
290
291 /**
292 * Get a namespace value by key
293 * <code>
294 * $mw_ns = $wgContLang->getNsText( NS_MEDIAWIKI );
295 * echo $mw_ns; // prints 'MediaWiki'
296 * </code>
297 *
298 * @param $index Int: the array key of the namespace to return
299 * @return mixed, string if the namespace value exists, otherwise false
300 */
301 function getNsText( $index ) {
302 $ns = $this->getNamespaces();
303 return isset( $ns[$index] ) ? $ns[$index] : false;
304 }
305
306 /**
307 * A convenience function that returns the same thing as
308 * getNsText() except with '_' changed to ' ', useful for
309 * producing output.
310 *
311 * @return array
312 */
313 function getFormattedNsText( $index ) {
314 $ns = $this->getNsText( $index );
315 return strtr( $ns, '_', ' ' );
316 }
317
318 /**
319 * Get a namespace key by value, case insensitive.
320 * Only matches namespace names for the current language, not the
321 * canonical ones defined in Namespace.php.
322 *
323 * @param $text String
324 * @return mixed An integer if $text is a valid value otherwise false
325 */
326 function getLocalNsIndex( $text ) {
327 $lctext = $this->lc( $text );
328 $ids = $this->getNamespaceIds();
329 return isset( $ids[$lctext] ) ? $ids[$lctext] : false;
330 }
331
332 function getNamespaceAliases() {
333 if ( is_null( $this->namespaceAliases ) ) {
334 $aliases = self::$dataCache->getItem( $this->mCode, 'namespaceAliases' );
335 if ( !$aliases ) {
336 $aliases = array();
337 } else {
338 foreach ( $aliases as $name => $index ) {
339 if ( $index === NS_PROJECT_TALK ) {
340 unset( $aliases[$name] );
341 $name = $this->fixVariableInNamespace( $name );
342 $aliases[$name] = $index;
343 }
344 }
345 }
346 $this->namespaceAliases = $aliases;
347 }
348 return $this->namespaceAliases;
349 }
350
351 function getNamespaceIds() {
352 if ( is_null( $this->mNamespaceIds ) ) {
353 global $wgNamespaceAliases;
354 # Put namespace names and aliases into a hashtable.
355 # If this is too slow, then we should arrange it so that it is done
356 # before caching. The catch is that at pre-cache time, the above
357 # class-specific fixup hasn't been done.
358 $this->mNamespaceIds = array();
359 foreach ( $this->getNamespaces() as $index => $name ) {
360 $this->mNamespaceIds[$this->lc( $name )] = $index;
361 }
362 foreach ( $this->getNamespaceAliases() as $name => $index ) {
363 $this->mNamespaceIds[$this->lc( $name )] = $index;
364 }
365 if ( $wgNamespaceAliases ) {
366 foreach ( $wgNamespaceAliases as $name => $index ) {
367 $this->mNamespaceIds[$this->lc( $name )] = $index;
368 }
369 }
370 }
371 return $this->mNamespaceIds;
372 }
373
374
375 /**
376 * Get a namespace key by value, case insensitive. Canonical namespace
377 * names override custom ones defined for the current language.
378 *
379 * @param $text String
380 * @return mixed An integer if $text is a valid value otherwise false
381 */
382 function getNsIndex( $text ) {
383 $lctext = $this->lc( $text );
384 if ( ( $ns = MWNamespace::getCanonicalIndex( $lctext ) ) !== null ) {
385 return $ns;
386 }
387 $ids = $this->getNamespaceIds();
388 return isset( $ids[$lctext] ) ? $ids[$lctext] : false;
389 }
390
391 /**
392 * short names for language variants used for language conversion links.
393 *
394 * @param $code String
395 * @return string
396 */
397 function getVariantname( $code ) {
398 return $this->getMessageFromDB( "variantname-$code" );
399 }
400
401 function specialPage( $name ) {
402 $aliases = $this->getSpecialPageAliases();
403 if ( isset( $aliases[$name][0] ) ) {
404 $name = $aliases[$name][0];
405 }
406 return $this->getNsText( NS_SPECIAL ) . ':' . $name;
407 }
408
409 function getQuickbarSettings() {
410 return array(
411 $this->getMessage( 'qbsettings-none' ),
412 $this->getMessage( 'qbsettings-fixedleft' ),
413 $this->getMessage( 'qbsettings-fixedright' ),
414 $this->getMessage( 'qbsettings-floatingleft' ),
415 $this->getMessage( 'qbsettings-floatingright' )
416 );
417 }
418
419 function getMathNames() {
420 return self::$dataCache->getItem( $this->mCode, 'mathNames' );
421 }
422
423 function getDatePreferences() {
424 return self::$dataCache->getItem( $this->mCode, 'datePreferences' );
425 }
426
427 function getDateFormats() {
428 return self::$dataCache->getItem( $this->mCode, 'dateFormats' );
429 }
430
431 function getDefaultDateFormat() {
432 $df = self::$dataCache->getItem( $this->mCode, 'defaultDateFormat' );
433 if ( $df === 'dmy or mdy' ) {
434 global $wgAmericanDates;
435 return $wgAmericanDates ? 'mdy' : 'dmy';
436 } else {
437 return $df;
438 }
439 }
440
441 function getDatePreferenceMigrationMap() {
442 return self::$dataCache->getItem( $this->mCode, 'datePreferenceMigrationMap' );
443 }
444
445 function getImageFile( $image ) {
446 return self::$dataCache->getSubitem( $this->mCode, 'imageFiles', $image );
447 }
448
449 function getDefaultUserOptionOverrides() {
450 return self::$dataCache->getItem( $this->mCode, 'defaultUserOptionOverrides' );
451 }
452
453 function getExtraUserToggles() {
454 return self::$dataCache->getItem( $this->mCode, 'extraUserToggles' );
455 }
456
457 function getUserToggle( $tog ) {
458 return $this->getMessageFromDB( "tog-$tog" );
459 }
460
461 /**
462 * Get language names, indexed by code.
463 * If $customisedOnly is true, only returns codes with a messages file
464 */
465 public static function getLanguageNames( $customisedOnly = false ) {
466 global $wgLanguageNames, $wgExtraLanguageNames;
467 $allNames = $wgExtraLanguageNames + $wgLanguageNames;
468 if ( !$customisedOnly ) {
469 return $allNames;
470 }
471
472 global $IP;
473 $names = array();
474 $dir = opendir( "$IP/languages/messages" );
475 while ( false !== ( $file = readdir( $dir ) ) ) {
476 $code = self::getCodeFromFileName( $file, 'Messages' );
477 if ( $code && isset( $allNames[$code] ) ) {
478 $names[$code] = $allNames[$code];
479 }
480 }
481 closedir( $dir );
482 return $names;
483 }
484
485 /**
486 * Get a message from the MediaWiki namespace.
487 *
488 * @param $msg String: message name
489 * @return string
490 */
491 function getMessageFromDB( $msg ) {
492 return wfMsgExt( $msg, array( 'parsemag', 'language' => $this ) );
493 }
494
495 function getLanguageName( $code ) {
496 $names = self::getLanguageNames();
497 if ( !array_key_exists( $code, $names ) ) {
498 return '';
499 }
500 return $names[$code];
501 }
502
503 function getMonthName( $key ) {
504 return $this->getMessageFromDB( self::$mMonthMsgs[$key - 1] );
505 }
506
507 function getMonthNameGen( $key ) {
508 return $this->getMessageFromDB( self::$mMonthGenMsgs[$key - 1] );
509 }
510
511 function getMonthAbbreviation( $key ) {
512 return $this->getMessageFromDB( self::$mMonthAbbrevMsgs[$key - 1] );
513 }
514
515 function getWeekdayName( $key ) {
516 return $this->getMessageFromDB( self::$mWeekdayMsgs[$key - 1] );
517 }
518
519 function getWeekdayAbbreviation( $key ) {
520 return $this->getMessageFromDB( self::$mWeekdayAbbrevMsgs[$key - 1] );
521 }
522
523 function getIranianCalendarMonthName( $key ) {
524 return $this->getMessageFromDB( self::$mIranianCalendarMonthMsgs[$key - 1] );
525 }
526
527 function getHebrewCalendarMonthName( $key ) {
528 return $this->getMessageFromDB( self::$mHebrewCalendarMonthMsgs[$key - 1] );
529 }
530
531 function getHebrewCalendarMonthNameGen( $key ) {
532 return $this->getMessageFromDB( self::$mHebrewCalendarMonthGenMsgs[$key - 1] );
533 }
534
535 function getHijriCalendarMonthName( $key ) {
536 return $this->getMessageFromDB( self::$mHijriCalendarMonthMsgs[$key - 1] );
537 }
538
539 /**
540 * Used by date() and time() to adjust the time output.
541 *
542 * @param $ts Int the time in date('YmdHis') format
543 * @param $tz Mixed: adjust the time by this amount (default false, mean we
544 * get user timecorrection setting)
545 * @return int
546 */
547 function userAdjust( $ts, $tz = false ) {
548 global $wgUser, $wgLocalTZoffset;
549
550 if ( $tz === false ) {
551 $tz = $wgUser->getOption( 'timecorrection' );
552 }
553
554 $data = explode( '|', $tz, 3 );
555
556 if ( $data[0] == 'ZoneInfo' ) {
557 if ( function_exists( 'timezone_open' ) && @timezone_open( $data[2] ) !== false ) {
558 $date = date_create( $ts, timezone_open( 'UTC' ) );
559 date_timezone_set( $date, timezone_open( $data[2] ) );
560 $date = date_format( $date, 'YmdHis' );
561 return $date;
562 }
563 # Unrecognized timezone, default to 'Offset' with the stored offset.
564 $data[0] = 'Offset';
565 }
566
567 $minDiff = 0;
568 if ( $data[0] == 'System' || $tz == '' ) {
569 #  Global offset in minutes.
570 if ( isset( $wgLocalTZoffset ) ) {
571 $minDiff = $wgLocalTZoffset;
572 }
573 } else if ( $data[0] == 'Offset' ) {
574 $minDiff = intval( $data[1] );
575 } else {
576 $data = explode( ':', $tz );
577 if ( count( $data ) == 2 ) {
578 $data[0] = intval( $data[0] );
579 $data[1] = intval( $data[1] );
580 $minDiff = abs( $data[0] ) * 60 + $data[1];
581 if ( $data[0] < 0 ) {
582 $minDiff = -$minDiff;
583 }
584 } else {
585 $minDiff = intval( $data[0] ) * 60;
586 }
587 }
588
589 # No difference ? Return time unchanged
590 if ( 0 == $minDiff ) {
591 return $ts;
592 }
593
594 wfSuppressWarnings(); // E_STRICT system time bitching
595 # Generate an adjusted date; take advantage of the fact that mktime
596 # will normalize out-of-range values so we don't have to split $minDiff
597 # into hours and minutes.
598 $t = mktime( (
599 (int)substr( $ts, 8, 2 ) ), # Hours
600 (int)substr( $ts, 10, 2 ) + $minDiff, # Minutes
601 (int)substr( $ts, 12, 2 ), # Seconds
602 (int)substr( $ts, 4, 2 ), # Month
603 (int)substr( $ts, 6, 2 ), # Day
604 (int)substr( $ts, 0, 4 ) ); # Year
605
606 $date = date( 'YmdHis', $t );
607 wfRestoreWarnings();
608
609 return $date;
610 }
611
612 /**
613 * This is a workalike of PHP's date() function, but with better
614 * internationalisation, a reduced set of format characters, and a better
615 * escaping format.
616 *
617 * Supported format characters are dDjlNwzWFmMntLoYyaAgGhHiscrU. See the
618 * PHP manual for definitions. "o" format character is supported since
619 * PHP 5.1.0, previous versions return literal o.
620 * There are a number of extensions, which start with "x":
621 *
622 * xn Do not translate digits of the next numeric format character
623 * xN Toggle raw digit (xn) flag, stays set until explicitly unset
624 * xr Use roman numerals for the next numeric format character
625 * xh Use hebrew numerals for the next numeric format character
626 * xx Literal x
627 * xg Genitive month name
628 *
629 * xij j (day number) in Iranian calendar
630 * xiF F (month name) in Iranian calendar
631 * xin n (month number) in Iranian calendar
632 * xiY Y (full year) in Iranian calendar
633 *
634 * xjj j (day number) in Hebrew calendar
635 * xjF F (month name) in Hebrew calendar
636 * xjt t (days in month) in Hebrew calendar
637 * xjx xg (genitive month name) in Hebrew calendar
638 * xjn n (month number) in Hebrew calendar
639 * xjY Y (full year) in Hebrew calendar
640 *
641 * xmj j (day number) in Hijri calendar
642 * xmF F (month name) in Hijri calendar
643 * xmn n (month number) in Hijri calendar
644 * xmY Y (full year) in Hijri calendar
645 *
646 * xkY Y (full year) in Thai solar calendar. Months and days are
647 * identical to the Gregorian calendar
648 * xoY Y (full year) in Minguo calendar or Juche year.
649 * Months and days are identical to the
650 * Gregorian calendar
651 * xtY Y (full year) in Japanese nengo. Months and days are
652 * identical to the Gregorian calendar
653 *
654 * Characters enclosed in double quotes will be considered literal (with
655 * the quotes themselves removed). Unmatched quotes will be considered
656 * literal quotes. Example:
657 *
658 * "The month is" F => The month is January
659 * i's" => 20'11"
660 *
661 * Backslash escaping is also supported.
662 *
663 * Input timestamp is assumed to be pre-normalized to the desired local
664 * time zone, if any.
665 *
666 * @param $format String
667 * @param $ts String: 14-character timestamp
668 * YYYYMMDDHHMMSS
669 * 01234567890123
670 * @todo emulation of "o" format character for PHP pre 5.1.0
671 * @todo handling of "o" format character for Iranian, Hebrew, Hijri & Thai?
672 */
673 function sprintfDate( $format, $ts ) {
674 $s = '';
675 $raw = false;
676 $roman = false;
677 $hebrewNum = false;
678 $unix = false;
679 $rawToggle = false;
680 $iranian = false;
681 $hebrew = false;
682 $hijri = false;
683 $thai = false;
684 $minguo = false;
685 $tenno = false;
686 for ( $p = 0; $p < strlen( $format ); $p++ ) {
687 $num = false;
688 $code = $format[$p];
689 if ( $code == 'x' && $p < strlen( $format ) - 1 ) {
690 $code .= $format[++$p];
691 }
692
693 if ( ( $code === 'xi' || $code == 'xj' || $code == 'xk' || $code == 'xm' || $code == 'xo' || $code == 'xt' ) && $p < strlen( $format ) - 1 ) {
694 $code .= $format[++$p];
695 }
696
697 switch ( $code ) {
698 case 'xx':
699 $s .= 'x';
700 break;
701 case 'xn':
702 $raw = true;
703 break;
704 case 'xN':
705 $rawToggle = !$rawToggle;
706 break;
707 case 'xr':
708 $roman = true;
709 break;
710 case 'xh':
711 $hebrewNum = true;
712 break;
713 case 'xg':
714 $s .= $this->getMonthNameGen( substr( $ts, 4, 2 ) );
715 break;
716 case 'xjx':
717 if ( !$hebrew ) $hebrew = self::tsToHebrew( $ts );
718 $s .= $this->getHebrewCalendarMonthNameGen( $hebrew[1] );
719 break;
720 case 'd':
721 $num = substr( $ts, 6, 2 );
722 break;
723 case 'D':
724 if ( !$unix ) $unix = wfTimestamp( TS_UNIX, $ts );
725 $s .= $this->getWeekdayAbbreviation( gmdate( 'w', $unix ) + 1 );
726 break;
727 case 'j':
728 $num = intval( substr( $ts, 6, 2 ) );
729 break;
730 case 'xij':
731 if ( !$iranian ) {
732 $iranian = self::tsToIranian( $ts );
733 }
734 $num = $iranian[2];
735 break;
736 case 'xmj':
737 if ( !$hijri ) {
738 $hijri = self::tsToHijri( $ts );
739 }
740 $num = $hijri[2];
741 break;
742 case 'xjj':
743 if ( !$hebrew ) {
744 $hebrew = self::tsToHebrew( $ts );
745 }
746 $num = $hebrew[2];
747 break;
748 case 'l':
749 if ( !$unix ) {
750 $unix = wfTimestamp( TS_UNIX, $ts );
751 }
752 $s .= $this->getWeekdayName( gmdate( 'w', $unix ) + 1 );
753 break;
754 case 'N':
755 if ( !$unix ) {
756 $unix = wfTimestamp( TS_UNIX, $ts );
757 }
758 $w = gmdate( 'w', $unix );
759 $num = $w ? $w : 7;
760 break;
761 case 'w':
762 if ( !$unix ) {
763 $unix = wfTimestamp( TS_UNIX, $ts );
764 }
765 $num = gmdate( 'w', $unix );
766 break;
767 case 'z':
768 if ( !$unix ) {
769 $unix = wfTimestamp( TS_UNIX, $ts );
770 }
771 $num = gmdate( 'z', $unix );
772 break;
773 case 'W':
774 if ( !$unix ) {
775 $unix = wfTimestamp( TS_UNIX, $ts );
776 }
777 $num = gmdate( 'W', $unix );
778 break;
779 case 'F':
780 $s .= $this->getMonthName( substr( $ts, 4, 2 ) );
781 break;
782 case 'xiF':
783 if ( !$iranian ) {
784 $iranian = self::tsToIranian( $ts );
785 }
786 $s .= $this->getIranianCalendarMonthName( $iranian[1] );
787 break;
788 case 'xmF':
789 if ( !$hijri ) {
790 $hijri = self::tsToHijri( $ts );
791 }
792 $s .= $this->getHijriCalendarMonthName( $hijri[1] );
793 break;
794 case 'xjF':
795 if ( !$hebrew ) {
796 $hebrew = self::tsToHebrew( $ts );
797 }
798 $s .= $this->getHebrewCalendarMonthName( $hebrew[1] );
799 break;
800 case 'm':
801 $num = substr( $ts, 4, 2 );
802 break;
803 case 'M':
804 $s .= $this->getMonthAbbreviation( substr( $ts, 4, 2 ) );
805 break;
806 case 'n':
807 $num = intval( substr( $ts, 4, 2 ) );
808 break;
809 case 'xin':
810 if ( !$iranian ) {
811 $iranian = self::tsToIranian( $ts );
812 }
813 $num = $iranian[1];
814 break;
815 case 'xmn':
816 if ( !$hijri ) {
817 $hijri = self::tsToHijri ( $ts );
818 }
819 $num = $hijri[1];
820 break;
821 case 'xjn':
822 if ( !$hebrew ) {
823 $hebrew = self::tsToHebrew( $ts );
824 }
825 $num = $hebrew[1];
826 break;
827 case 't':
828 if ( !$unix ) {
829 $unix = wfTimestamp( TS_UNIX, $ts );
830 }
831 $num = gmdate( 't', $unix );
832 break;
833 case 'xjt':
834 if ( !$hebrew ) {
835 $hebrew = self::tsToHebrew( $ts );
836 }
837 $num = $hebrew[3];
838 break;
839 case 'L':
840 if ( !$unix ) {
841 $unix = wfTimestamp( TS_UNIX, $ts );
842 }
843 $num = gmdate( 'L', $unix );
844 break;
845 # 'o' is supported since PHP 5.1.0
846 # return literal if not supported
847 # TODO: emulation for pre 5.1.0 versions
848 case 'o':
849 if ( !$unix ) {
850 $unix = wfTimestamp( TS_UNIX, $ts );
851 }
852 if ( version_compare( PHP_VERSION, '5.1.0' ) === 1 ) {
853 $num = date( 'o', $unix );
854 } else {
855 $s .= 'o';
856 }
857 break;
858 case 'Y':
859 $num = substr( $ts, 0, 4 );
860 break;
861 case 'xiY':
862 if ( !$iranian ) {
863 $iranian = self::tsToIranian( $ts );
864 }
865 $num = $iranian[0];
866 break;
867 case 'xmY':
868 if ( !$hijri ) {
869 $hijri = self::tsToHijri( $ts );
870 }
871 $num = $hijri[0];
872 break;
873 case 'xjY':
874 if ( !$hebrew ) {
875 $hebrew = self::tsToHebrew( $ts );
876 }
877 $num = $hebrew[0];
878 break;
879 case 'xkY':
880 if ( !$thai ) {
881 $thai = self::tsToYear( $ts, 'thai' );
882 }
883 $num = $thai[0];
884 break;
885 case 'xoY':
886 if ( !$minguo ) {
887 $minguo = self::tsToYear( $ts, 'minguo' );
888 }
889 $num = $minguo[0];
890 break;
891 case 'xtY':
892 if ( !$tenno ) {
893 $tenno = self::tsToYear( $ts, 'tenno' );
894 }
895 $num = $tenno[0];
896 break;
897 case 'y':
898 $num = substr( $ts, 2, 2 );
899 break;
900 case 'a':
901 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ? 'am' : 'pm';
902 break;
903 case 'A':
904 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ? 'AM' : 'PM';
905 break;
906 case 'g':
907 $h = substr( $ts, 8, 2 );
908 $num = $h % 12 ? $h % 12 : 12;
909 break;
910 case 'G':
911 $num = intval( substr( $ts, 8, 2 ) );
912 break;
913 case 'h':
914 $h = substr( $ts, 8, 2 );
915 $num = sprintf( '%02d', $h % 12 ? $h % 12 : 12 );
916 break;
917 case 'H':
918 $num = substr( $ts, 8, 2 );
919 break;
920 case 'i':
921 $num = substr( $ts, 10, 2 );
922 break;
923 case 's':
924 $num = substr( $ts, 12, 2 );
925 break;
926 case 'c':
927 if ( !$unix ) {
928 $unix = wfTimestamp( TS_UNIX, $ts );
929 }
930 $s .= gmdate( 'c', $unix );
931 break;
932 case 'r':
933 if ( !$unix ) {
934 $unix = wfTimestamp( TS_UNIX, $ts );
935 }
936 $s .= gmdate( 'r', $unix );
937 break;
938 case 'U':
939 if ( !$unix ) {
940 $unix = wfTimestamp( TS_UNIX, $ts );
941 }
942 $num = $unix;
943 break;
944 case '\\':
945 # Backslash escaping
946 if ( $p < strlen( $format ) - 1 ) {
947 $s .= $format[++$p];
948 } else {
949 $s .= '\\';
950 }
951 break;
952 case '"':
953 # Quoted literal
954 if ( $p < strlen( $format ) - 1 ) {
955 $endQuote = strpos( $format, '"', $p + 1 );
956 if ( $endQuote === false ) {
957 # No terminating quote, assume literal "
958 $s .= '"';
959 } else {
960 $s .= substr( $format, $p + 1, $endQuote - $p - 1 );
961 $p = $endQuote;
962 }
963 } else {
964 # Quote at end of string, assume literal "
965 $s .= '"';
966 }
967 break;
968 default:
969 $s .= $format[$p];
970 }
971 if ( $num !== false ) {
972 if ( $rawToggle || $raw ) {
973 $s .= $num;
974 $raw = false;
975 } elseif ( $roman ) {
976 $s .= self::romanNumeral( $num );
977 $roman = false;
978 } elseif ( $hebrewNum ) {
979 $s .= self::hebrewNumeral( $num );
980 $hebrewNum = false;
981 } else {
982 $s .= $this->formatNum( $num, true );
983 }
984 $num = false;
985 }
986 }
987 return $s;
988 }
989
990 private static $GREG_DAYS = array( 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 );
991 private static $IRANIAN_DAYS = array( 31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29 );
992 /**
993 * Algorithm by Roozbeh Pournader and Mohammad Toossi to convert
994 * Gregorian dates to Iranian dates. Originally written in C, it
995 * is released under the terms of GNU Lesser General Public
996 * License. Conversion to PHP was performed by Niklas Laxström.
997 *
998 * Link: http://www.farsiweb.info/jalali/jalali.c
999 */
1000 private static function tsToIranian( $ts ) {
1001 $gy = substr( $ts, 0, 4 ) -1600;
1002 $gm = substr( $ts, 4, 2 ) -1;
1003 $gd = substr( $ts, 6, 2 ) -1;
1004
1005 # Days passed from the beginning (including leap years)
1006 $gDayNo = 365 * $gy
1007 + floor( ( $gy + 3 ) / 4 )
1008 - floor( ( $gy + 99 ) / 100 )
1009 + floor( ( $gy + 399 ) / 400 );
1010
1011
1012 // Add days of the past months of this year
1013 for ( $i = 0; $i < $gm; $i++ ) {
1014 $gDayNo += self::$GREG_DAYS[$i];
1015 }
1016
1017 // Leap years
1018 if ( $gm > 1 && ( ( $gy % 4 === 0 && $gy % 100 !== 0 || ( $gy % 400 == 0 ) ) ) ) {
1019 $gDayNo++;
1020 }
1021
1022 // Days passed in current month
1023 $gDayNo += $gd;
1024
1025 $jDayNo = $gDayNo - 79;
1026
1027 $jNp = floor( $jDayNo / 12053 );
1028 $jDayNo %= 12053;
1029
1030 $jy = 979 + 33 * $jNp + 4 * floor( $jDayNo / 1461 );
1031 $jDayNo %= 1461;
1032
1033 if ( $jDayNo >= 366 ) {
1034 $jy += floor( ( $jDayNo - 1 ) / 365 );
1035 $jDayNo = floor( ( $jDayNo - 1 ) % 365 );
1036 }
1037
1038 for ( $i = 0; $i < 11 && $jDayNo >= self::$IRANIAN_DAYS[$i]; $i++ ) {
1039 $jDayNo -= self::$IRANIAN_DAYS[$i];
1040 }
1041
1042 $jm = $i + 1;
1043 $jd = $jDayNo + 1;
1044
1045 return array( $jy, $jm, $jd );
1046 }
1047
1048 /**
1049 * Converting Gregorian dates to Hijri dates.
1050 *
1051 * Based on a PHP-Nuke block by Sharjeel which is released under GNU/GPL license
1052 *
1053 * @link http://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0
1054 */
1055 private static function tsToHijri( $ts ) {
1056 $year = substr( $ts, 0, 4 );
1057 $month = substr( $ts, 4, 2 );
1058 $day = substr( $ts, 6, 2 );
1059
1060 $zyr = $year;
1061 $zd = $day;
1062 $zm = $month;
1063 $zy = $zyr;
1064
1065 if (
1066 ( $zy > 1582 ) || ( ( $zy == 1582 ) && ( $zm > 10 ) ) ||
1067 ( ( $zy == 1582 ) && ( $zm == 10 ) && ( $zd > 14 ) )
1068 )
1069 {
1070 $zjd = (int)( ( 1461 * ( $zy + 4800 + (int)( ( $zm - 14 ) / 12 ) ) ) / 4 ) +
1071 (int)( ( 367 * ( $zm - 2 - 12 * ( (int)( ( $zm - 14 ) / 12 ) ) ) ) / 12 ) -
1072 (int)( ( 3 * (int)( ( ( $zy + 4900 + (int)( ( $zm - 14 ) / 12 ) ) / 100 ) ) ) / 4 ) +
1073 $zd - 32075;
1074 } else {
1075 $zjd = 367 * $zy - (int)( ( 7 * ( $zy + 5001 + (int)( ( $zm - 9 ) / 7 ) ) ) / 4 ) +
1076 (int)( ( 275 * $zm ) / 9 ) + $zd + 1729777;
1077 }
1078
1079 $zl = $zjd -1948440 + 10632;
1080 $zn = (int)( ( $zl - 1 ) / 10631 );
1081 $zl = $zl - 10631 * $zn + 354;
1082 $zj = ( (int)( ( 10985 - $zl ) / 5316 ) ) * ( (int)( ( 50 * $zl ) / 17719 ) ) + ( (int)( $zl / 5670 ) ) * ( (int)( ( 43 * $zl ) / 15238 ) );
1083 $zl = $zl - ( (int)( ( 30 - $zj ) / 15 ) ) * ( (int)( ( 17719 * $zj ) / 50 ) ) - ( (int)( $zj / 16 ) ) * ( (int)( ( 15238 * $zj ) / 43 ) ) + 29;
1084 $zm = (int)( ( 24 * $zl ) / 709 );
1085 $zd = $zl - (int)( ( 709 * $zm ) / 24 );
1086 $zy = 30 * $zn + $zj - 30;
1087
1088 return array( $zy, $zm, $zd );
1089 }
1090
1091 /**
1092 * Converting Gregorian dates to Hebrew dates.
1093 *
1094 * Based on a JavaScript code by Abu Mami and Yisrael Hersch
1095 * (abu-mami@kaluach.net, http://www.kaluach.net), who permitted
1096 * to translate the relevant functions into PHP and release them under
1097 * GNU GPL.
1098 *
1099 * The months are counted from Tishrei = 1. In a leap year, Adar I is 13
1100 * and Adar II is 14. In a non-leap year, Adar is 6.
1101 */
1102 private static function tsToHebrew( $ts ) {
1103 # Parse date
1104 $year = substr( $ts, 0, 4 );
1105 $month = substr( $ts, 4, 2 );
1106 $day = substr( $ts, 6, 2 );
1107
1108 # Calculate Hebrew year
1109 $hebrewYear = $year + 3760;
1110
1111 # Month number when September = 1, August = 12
1112 $month += 4;
1113 if ( $month > 12 ) {
1114 # Next year
1115 $month -= 12;
1116 $year++;
1117 $hebrewYear++;
1118 }
1119
1120 # Calculate day of year from 1 September
1121 $dayOfYear = $day;
1122 for ( $i = 1; $i < $month; $i++ ) {
1123 if ( $i == 6 ) {
1124 # February
1125 $dayOfYear += 28;
1126 # Check if the year is leap
1127 if ( $year % 400 == 0 || ( $year % 4 == 0 && $year % 100 > 0 ) ) {
1128 $dayOfYear++;
1129 }
1130 } elseif ( $i == 8 || $i == 10 || $i == 1 || $i == 3 ) {
1131 $dayOfYear += 30;
1132 } else {
1133 $dayOfYear += 31;
1134 }
1135 }
1136
1137 # Calculate the start of the Hebrew year
1138 $start = self::hebrewYearStart( $hebrewYear );
1139
1140 # Calculate next year's start
1141 if ( $dayOfYear <= $start ) {
1142 # Day is before the start of the year - it is the previous year
1143 # Next year's start
1144 $nextStart = $start;
1145 # Previous year
1146 $year--;
1147 $hebrewYear--;
1148 # Add days since previous year's 1 September
1149 $dayOfYear += 365;
1150 if ( ( $year % 400 == 0 ) || ( $year % 100 != 0 && $year % 4 == 0 ) ) {
1151 # Leap year
1152 $dayOfYear++;
1153 }
1154 # Start of the new (previous) year
1155 $start = self::hebrewYearStart( $hebrewYear );
1156 } else {
1157 # Next year's start
1158 $nextStart = self::hebrewYearStart( $hebrewYear + 1 );
1159 }
1160
1161 # Calculate Hebrew day of year
1162 $hebrewDayOfYear = $dayOfYear - $start;
1163
1164 # Difference between year's days
1165 $diff = $nextStart - $start;
1166 # Add 12 (or 13 for leap years) days to ignore the difference between
1167 # Hebrew and Gregorian year (353 at least vs. 365/6) - now the
1168 # difference is only about the year type
1169 if ( ( $year % 400 == 0 ) || ( $year % 100 != 0 && $year % 4 == 0 ) ) {
1170 $diff += 13;
1171 } else {
1172 $diff += 12;
1173 }
1174
1175 # Check the year pattern, and is leap year
1176 # 0 means an incomplete year, 1 means a regular year, 2 means a complete year
1177 # This is mod 30, to work on both leap years (which add 30 days of Adar I)
1178 # and non-leap years
1179 $yearPattern = $diff % 30;
1180 # Check if leap year
1181 $isLeap = $diff >= 30;
1182
1183 # Calculate day in the month from number of day in the Hebrew year
1184 # Don't check Adar - if the day is not in Adar, we will stop before;
1185 # if it is in Adar, we will use it to check if it is Adar I or Adar II
1186 $hebrewDay = $hebrewDayOfYear;
1187 $hebrewMonth = 1;
1188 $days = 0;
1189 while ( $hebrewMonth <= 12 ) {
1190 # Calculate days in this month
1191 if ( $isLeap && $hebrewMonth == 6 ) {
1192 # Adar in a leap year
1193 if ( $isLeap ) {
1194 # Leap year - has Adar I, with 30 days, and Adar II, with 29 days
1195 $days = 30;
1196 if ( $hebrewDay <= $days ) {
1197 # Day in Adar I
1198 $hebrewMonth = 13;
1199 } else {
1200 # Subtract the days of Adar I
1201 $hebrewDay -= $days;
1202 # Try Adar II
1203 $days = 29;
1204 if ( $hebrewDay <= $days ) {
1205 # Day in Adar II
1206 $hebrewMonth = 14;
1207 }
1208 }
1209 }
1210 } elseif ( $hebrewMonth == 2 && $yearPattern == 2 ) {
1211 # Cheshvan in a complete year (otherwise as the rule below)
1212 $days = 30;
1213 } elseif ( $hebrewMonth == 3 && $yearPattern == 0 ) {
1214 # Kislev in an incomplete year (otherwise as the rule below)
1215 $days = 29;
1216 } else {
1217 # Odd months have 30 days, even have 29
1218 $days = 30 - ( $hebrewMonth - 1 ) % 2;
1219 }
1220 if ( $hebrewDay <= $days ) {
1221 # In the current month
1222 break;
1223 } else {
1224 # Subtract the days of the current month
1225 $hebrewDay -= $days;
1226 # Try in the next month
1227 $hebrewMonth++;
1228 }
1229 }
1230
1231 return array( $hebrewYear, $hebrewMonth, $hebrewDay, $days );
1232 }
1233
1234 /**
1235 * This calculates the Hebrew year start, as days since 1 September.
1236 * Based on Carl Friedrich Gauss algorithm for finding Easter date.
1237 * Used for Hebrew date.
1238 */
1239 private static function hebrewYearStart( $year ) {
1240 $a = intval( ( 12 * ( $year - 1 ) + 17 ) % 19 );
1241 $b = intval( ( $year - 1 ) % 4 );
1242 $m = 32.044093161144 + 1.5542417966212 * $a + $b / 4.0 - 0.0031777940220923 * ( $year - 1 );
1243 if ( $m < 0 ) {
1244 $m--;
1245 }
1246 $Mar = intval( $m );
1247 if ( $m < 0 ) {
1248 $m++;
1249 }
1250 $m -= $Mar;
1251
1252 $c = intval( ( $Mar + 3 * ( $year - 1 ) + 5 * $b + 5 ) % 7 );
1253 if ( $c == 0 && $a > 11 && $m >= 0.89772376543210 ) {
1254 $Mar++;
1255 } else if ( $c == 1 && $a > 6 && $m >= 0.63287037037037 ) {
1256 $Mar += 2;
1257 } else if ( $c == 2 || $c == 4 || $c == 6 ) {
1258 $Mar++;
1259 }
1260
1261 $Mar += intval( ( $year - 3761 ) / 100 ) - intval( ( $year - 3761 ) / 400 ) - 24;
1262 return $Mar;
1263 }
1264
1265 /**
1266 * Algorithm to convert Gregorian dates to Thai solar dates,
1267 * Minguo dates or Minguo dates.
1268 *
1269 * Link: http://en.wikipedia.org/wiki/Thai_solar_calendar
1270 * http://en.wikipedia.org/wiki/Minguo_calendar
1271 * http://en.wikipedia.org/wiki/Japanese_era_name
1272 *
1273 * @param $ts String: 14-character timestamp
1274 * @param $cName String: calender name
1275 * @return Array: converted year, month, day
1276 */
1277 private static function tsToYear( $ts, $cName ) {
1278 $gy = substr( $ts, 0, 4 );
1279 $gm = substr( $ts, 4, 2 );
1280 $gd = substr( $ts, 6, 2 );
1281
1282 if ( !strcmp( $cName, 'thai' ) ) {
1283 # Thai solar dates
1284 # Add 543 years to the Gregorian calendar
1285 # Months and days are identical
1286 $gy_offset = $gy + 543;
1287 } else if ( ( !strcmp( $cName, 'minguo' ) ) || !strcmp( $cName, 'juche' ) ) {
1288 # Minguo dates
1289 # Deduct 1911 years from the Gregorian calendar
1290 # Months and days are identical
1291 $gy_offset = $gy - 1911;
1292 } else if ( !strcmp( $cName, 'tenno' ) ) {
1293 # Nengō dates up to Meiji period
1294 # Deduct years from the Gregorian calendar
1295 # depending on the nengo periods
1296 # Months and days are identical
1297 if ( ( $gy < 1912 ) || ( ( $gy == 1912 ) && ( $gm < 7 ) ) || ( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd < 31 ) ) ) {
1298 # Meiji period
1299 $gy_gannen = $gy - 1868 + 1;
1300 $gy_offset = $gy_gannen;
1301 if ( $gy_gannen == 1 ) {
1302 $gy_offset = '元';
1303 }
1304 $gy_offset = '明治' . $gy_offset;
1305 } else if (
1306 ( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd == 31 ) ) ||
1307 ( ( $gy == 1912 ) && ( $gm >= 8 ) ) ||
1308 ( ( $gy > 1912 ) && ( $gy < 1926 ) ) ||
1309 ( ( $gy == 1926 ) && ( $gm < 12 ) ) ||
1310 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd < 26 ) )
1311 )
1312 {
1313 # Taishō period
1314 $gy_gannen = $gy - 1912 + 1;
1315 $gy_offset = $gy_gannen;
1316 if ( $gy_gannen == 1 ) {
1317 $gy_offset = '元';
1318 }
1319 $gy_offset = '大正' . $gy_offset;
1320 } else if (
1321 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd >= 26 ) ) ||
1322 ( ( $gy > 1926 ) && ( $gy < 1989 ) ) ||
1323 ( ( $gy == 1989 ) && ( $gm == 1 ) && ( $gd < 8 ) )
1324 )
1325 {
1326 # Shōwa period
1327 $gy_gannen = $gy - 1926 + 1;
1328 $gy_offset = $gy_gannen;
1329 if ( $gy_gannen == 1 ) {
1330 $gy_offset = '元';
1331 }
1332 $gy_offset = '昭和' . $gy_offset;
1333 } else {
1334 # Heisei period
1335 $gy_gannen = $gy - 1989 + 1;
1336 $gy_offset = $gy_gannen;
1337 if ( $gy_gannen == 1 ) {
1338 $gy_offset = '元';
1339 }
1340 $gy_offset = '平成' . $gy_offset;
1341 }
1342 } else {
1343 $gy_offset = $gy;
1344 }
1345
1346 return array( $gy_offset, $gm, $gd );
1347 }
1348
1349 /**
1350 * Roman number formatting up to 3000
1351 */
1352 static function romanNumeral( $num ) {
1353 static $table = array(
1354 array( '', 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X' ),
1355 array( '', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC', 'C' ),
1356 array( '', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM', 'M' ),
1357 array( '', 'M', 'MM', 'MMM' )
1358 );
1359
1360 $num = intval( $num );
1361 if ( $num > 3000 || $num <= 0 ) {
1362 return $num;
1363 }
1364
1365 $s = '';
1366 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1367 if ( $num >= $pow10 ) {
1368 $s .= $table[$i][floor( $num / $pow10 )];
1369 }
1370 $num = $num % $pow10;
1371 }
1372 return $s;
1373 }
1374
1375 /**
1376 * Hebrew Gematria number formatting up to 9999
1377 */
1378 static function hebrewNumeral( $num ) {
1379 static $table = array(
1380 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' ),
1381 array( '', 'י', 'כ', 'ל', 'מ', 'נ', 'ס', 'ע', 'פ', 'צ', 'ק' ),
1382 array( '', 'ק', 'ר', 'ש', 'ת', 'תק', 'תר', 'תש', 'תת', 'תתק', 'תתר' ),
1383 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' )
1384 );
1385
1386 $num = intval( $num );
1387 if ( $num > 9999 || $num <= 0 ) {
1388 return $num;
1389 }
1390
1391 $s = '';
1392 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1393 if ( $num >= $pow10 ) {
1394 if ( $num == 15 || $num == 16 ) {
1395 $s .= $table[0][9] . $table[0][$num - 9];
1396 $num = 0;
1397 } else {
1398 $s .= $table[$i][intval( ( $num / $pow10 ) )];
1399 if ( $pow10 == 1000 ) {
1400 $s .= "'";
1401 }
1402 }
1403 }
1404 $num = $num % $pow10;
1405 }
1406 if ( strlen( $s ) == 2 ) {
1407 $str = $s . "'";
1408 } else {
1409 $str = substr( $s, 0, strlen( $s ) - 2 ) . '"';
1410 $str .= substr( $s, strlen( $s ) - 2, 2 );
1411 }
1412 $start = substr( $str, 0, strlen( $str ) - 2 );
1413 $end = substr( $str, strlen( $str ) - 2 );
1414 switch( $end ) {
1415 case 'כ':
1416 $str = $start . 'ך';
1417 break;
1418 case 'מ':
1419 $str = $start . 'ם';
1420 break;
1421 case 'נ':
1422 $str = $start . 'ן';
1423 break;
1424 case 'פ':
1425 $str = $start . 'ף';
1426 break;
1427 case 'צ':
1428 $str = $start . 'ץ';
1429 break;
1430 }
1431 return $str;
1432 }
1433
1434 /**
1435 * This is meant to be used by time(), date(), and timeanddate() to get
1436 * the date preference they're supposed to use, it should be used in
1437 * all children.
1438 *
1439 *<code>
1440 * function timeanddate([...], $format = true) {
1441 * $datePreference = $this->dateFormat($format);
1442 * [...]
1443 * }
1444 *</code>
1445 *
1446 * @param $usePrefs Mixed: if true, the user's preference is used
1447 * if false, the site/language default is used
1448 * if int/string, assumed to be a format.
1449 * @return string
1450 */
1451 function dateFormat( $usePrefs = true ) {
1452 global $wgUser;
1453
1454 if ( is_bool( $usePrefs ) ) {
1455 if ( $usePrefs ) {
1456 $datePreference = $wgUser->getDatePreference();
1457 } else {
1458 $datePreference = (string)User::getDefaultOption( 'date' );
1459 }
1460 } else {
1461 $datePreference = (string)$usePrefs;
1462 }
1463
1464 // return int
1465 if ( $datePreference == '' ) {
1466 return 'default';
1467 }
1468
1469 return $datePreference;
1470 }
1471
1472 /**
1473 * Get a format string for a given type and preference
1474 * @param $type May be date, time or both
1475 * @param $pref The format name as it appears in Messages*.php
1476 */
1477 function getDateFormatString( $type, $pref ) {
1478 if ( !isset( $this->dateFormatStrings[$type][$pref] ) ) {
1479 if ( $pref == 'default' ) {
1480 $pref = $this->getDefaultDateFormat();
1481 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1482 } else {
1483 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1484 if ( is_null( $df ) ) {
1485 $pref = $this->getDefaultDateFormat();
1486 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1487 }
1488 }
1489 $this->dateFormatStrings[$type][$pref] = $df;
1490 }
1491 return $this->dateFormatStrings[$type][$pref];
1492 }
1493
1494 /**
1495 * @param $ts Mixed: the time format which needs to be turned into a
1496 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1497 * @param $adj Bool: whether to adjust the time output according to the
1498 * user configured offset ($timecorrection)
1499 * @param $format Mixed: true to use user's date format preference
1500 * @param $timecorrection String: the time offset as returned by
1501 * validateTimeZone() in Special:Preferences
1502 * @return string
1503 */
1504 function date( $ts, $adj = false, $format = true, $timecorrection = false ) {
1505 if ( $adj ) {
1506 $ts = $this->userAdjust( $ts, $timecorrection );
1507 }
1508 $df = $this->getDateFormatString( 'date', $this->dateFormat( $format ) );
1509 return $this->sprintfDate( $df, $ts );
1510 }
1511
1512 /**
1513 * @param $ts Mixed: the time format which needs to be turned into a
1514 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1515 * @param $adj Bool: whether to adjust the time output according to the
1516 * user configured offset ($timecorrection)
1517 * @param $format Mixed: true to use user's date format preference
1518 * @param $timecorrection String: the time offset as returned by
1519 * validateTimeZone() in Special:Preferences
1520 * @return string
1521 */
1522 function time( $ts, $adj = false, $format = true, $timecorrection = false ) {
1523 if ( $adj ) {
1524 $ts = $this->userAdjust( $ts, $timecorrection );
1525 }
1526 $df = $this->getDateFormatString( 'time', $this->dateFormat( $format ) );
1527 return $this->sprintfDate( $df, $ts );
1528 }
1529
1530 /**
1531 * @param $ts Mixed: the time format which needs to be turned into a
1532 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1533 * @param $adj Bool: whether to adjust the time output according to the
1534 * user configured offset ($timecorrection)
1535 * @param $format Mixed: what format to return, if it's false output the
1536 * default one (default true)
1537 * @param $timecorrection String: the time offset as returned by
1538 * validateTimeZone() in Special:Preferences
1539 * @return string
1540 */
1541 function timeanddate( $ts, $adj = false, $format = true, $timecorrection = false ) {
1542 $ts = wfTimestamp( TS_MW, $ts );
1543 if ( $adj ) {
1544 $ts = $this->userAdjust( $ts, $timecorrection );
1545 }
1546 $df = $this->getDateFormatString( 'both', $this->dateFormat( $format ) );
1547 return $this->sprintfDate( $df, $ts );
1548 }
1549
1550 function getMessage( $key ) {
1551 return self::$dataCache->getSubitem( $this->mCode, 'messages', $key );
1552 }
1553
1554 function getAllMessages() {
1555 return self::$dataCache->getItem( $this->mCode, 'messages' );
1556 }
1557
1558 function iconv( $in, $out, $string ) {
1559 # This is a wrapper for iconv in all languages except esperanto,
1560 # which does some nasty x-conversions beforehand
1561
1562 # Even with //IGNORE iconv can whine about illegal characters in
1563 # *input* string. We just ignore those too.
1564 # REF: http://bugs.php.net/bug.php?id=37166
1565 # REF: https://bugzilla.wikimedia.org/show_bug.cgi?id=16885
1566 wfSuppressWarnings();
1567 $text = iconv( $in, $out . '//IGNORE', $string );
1568 wfRestoreWarnings();
1569 return $text;
1570 }
1571
1572 // callback functions for uc(), lc(), ucwords(), ucwordbreaks()
1573 function ucwordbreaksCallbackAscii( $matches ) {
1574 return $this->ucfirst( $matches[1] );
1575 }
1576
1577 function ucwordbreaksCallbackMB( $matches ) {
1578 return mb_strtoupper( $matches[0] );
1579 }
1580
1581 function ucCallback( $matches ) {
1582 list( $wikiUpperChars ) = self::getCaseMaps();
1583 return strtr( $matches[1], $wikiUpperChars );
1584 }
1585
1586 function lcCallback( $matches ) {
1587 list( , $wikiLowerChars ) = self::getCaseMaps();
1588 return strtr( $matches[1], $wikiLowerChars );
1589 }
1590
1591 function ucwordsCallbackMB( $matches ) {
1592 return mb_strtoupper( $matches[0] );
1593 }
1594
1595 function ucwordsCallbackWiki( $matches ) {
1596 list( $wikiUpperChars ) = self::getCaseMaps();
1597 return strtr( $matches[0], $wikiUpperChars );
1598 }
1599
1600 function ucfirst( $str ) {
1601 $o = ord( $str );
1602 if ( $o < 96 ) {
1603 return $str;
1604 } elseif ( $o < 128 ) {
1605 return ucfirst( $str );
1606 } else {
1607 // fall back to more complex logic in case of multibyte strings
1608 return $this->uc( $str, true );
1609 }
1610 }
1611
1612 function uc( $str, $first = false ) {
1613 if ( function_exists( 'mb_strtoupper' ) ) {
1614 if ( $first ) {
1615 if ( $this->isMultibyte( $str ) ) {
1616 return mb_strtoupper( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
1617 } else {
1618 return ucfirst( $str );
1619 }
1620 } else {
1621 return $this->isMultibyte( $str ) ? mb_strtoupper( $str ) : strtoupper( $str );
1622 }
1623 } else {
1624 if ( $this->isMultibyte( $str ) ) {
1625 $x = $first ? '^' : '';
1626 return preg_replace_callback(
1627 "/$x([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
1628 array( $this, 'ucCallback' ),
1629 $str
1630 );
1631 } else {
1632 return $first ? ucfirst( $str ) : strtoupper( $str );
1633 }
1634 }
1635 }
1636
1637 function lcfirst( $str ) {
1638 $o = ord( $str );
1639 if ( !$o ) {
1640 return strval( $str );
1641 } elseif ( $o >= 128 ) {
1642 return $this->lc( $str, true );
1643 } elseif ( $o > 96 ) {
1644 return $str;
1645 } else {
1646 $str[0] = strtolower( $str[0] );
1647 return $str;
1648 }
1649 }
1650
1651 function lc( $str, $first = false ) {
1652 if ( function_exists( 'mb_strtolower' ) ) {
1653 if ( $first ) {
1654 if ( $this->isMultibyte( $str ) ) {
1655 return mb_strtolower( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
1656 } else {
1657 return strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 );
1658 }
1659 } else {
1660 return $this->isMultibyte( $str ) ? mb_strtolower( $str ) : strtolower( $str );
1661 }
1662 } else {
1663 if ( $this->isMultibyte( $str ) ) {
1664 $x = $first ? '^' : '';
1665 return preg_replace_callback(
1666 "/$x([A-Z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
1667 array( $this, 'lcCallback' ),
1668 $str
1669 );
1670 } else {
1671 return $first ? strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 ) : strtolower( $str );
1672 }
1673 }
1674 }
1675
1676 function isMultibyte( $str ) {
1677 return (bool)preg_match( '/[\x80-\xff]/', $str );
1678 }
1679
1680 function ucwords( $str ) {
1681 if ( $this->isMultibyte( $str ) ) {
1682 $str = $this->lc( $str );
1683
1684 // regexp to find first letter in each word (i.e. after each space)
1685 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)| ([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
1686
1687 // function to use to capitalize a single char
1688 if ( function_exists( 'mb_strtoupper' ) ) {
1689 return preg_replace_callback(
1690 $replaceRegexp,
1691 array( $this, 'ucwordsCallbackMB' ),
1692 $str
1693 );
1694 } else {
1695 return preg_replace_callback(
1696 $replaceRegexp,
1697 array( $this, 'ucwordsCallbackWiki' ),
1698 $str
1699 );
1700 }
1701 } else {
1702 return ucwords( strtolower( $str ) );
1703 }
1704 }
1705
1706 # capitalize words at word breaks
1707 function ucwordbreaks( $str ) {
1708 if ( $this->isMultibyte( $str ) ) {
1709 $str = $this->lc( $str );
1710
1711 // since \b doesn't work for UTF-8, we explicitely define word break chars
1712 $breaks = "[ \-\(\)\}\{\.,\?!]";
1713
1714 // find first letter after word break
1715 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)|$breaks([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
1716
1717 if ( function_exists( 'mb_strtoupper' ) ) {
1718 return preg_replace_callback(
1719 $replaceRegexp,
1720 array( $this, 'ucwordbreaksCallbackMB' ),
1721 $str
1722 );
1723 } else {
1724 return preg_replace_callback(
1725 $replaceRegexp,
1726 array( $this, 'ucwordsCallbackWiki' ),
1727 $str
1728 );
1729 }
1730 } else {
1731 return preg_replace_callback(
1732 '/\b([\w\x80-\xff]+)\b/',
1733 array( $this, 'ucwordbreaksCallbackAscii' ),
1734 $str
1735 );
1736 }
1737 }
1738
1739 /**
1740 * Return a case-folded representation of $s
1741 *
1742 * This is a representation such that caseFold($s1)==caseFold($s2) if $s1
1743 * and $s2 are the same except for the case of their characters. It is not
1744 * necessary for the value returned to make sense when displayed.
1745 *
1746 * Do *not* perform any other normalisation in this function. If a caller
1747 * uses this function when it should be using a more general normalisation
1748 * function, then fix the caller.
1749 */
1750 function caseFold( $s ) {
1751 return $this->uc( $s );
1752 }
1753
1754 function checkTitleEncoding( $s ) {
1755 if ( is_array( $s ) ) {
1756 wfDebugDieBacktrace( 'Given array to checkTitleEncoding.' );
1757 }
1758 # Check for non-UTF-8 URLs
1759 $ishigh = preg_match( '/[\x80-\xff]/', $s );
1760 if ( !$ishigh ) {
1761 return $s;
1762 }
1763
1764 $isutf8 = preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
1765 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s );
1766 if ( $isutf8 ) {
1767 return $s;
1768 }
1769
1770 return $this->iconv( $this->fallback8bitEncoding(), 'utf-8', $s );
1771 }
1772
1773 function fallback8bitEncoding() {
1774 return self::$dataCache->getItem( $this->mCode, 'fallback8bitEncoding' );
1775 }
1776
1777 /**
1778 * Most writing systems use whitespace to break up words.
1779 * Some languages such as Chinese don't conventionally do this,
1780 * which requires special handling when breaking up words for
1781 * searching etc.
1782 */
1783 function hasWordBreaks() {
1784 return true;
1785 }
1786
1787 /**
1788 * Some languages such as Chinese require word segmentation,
1789 * Specify such segmentation when overridden in derived class.
1790 *
1791 * @param $string String
1792 * @return String
1793 */
1794 function segmentByWord( $string ) {
1795 return $string;
1796 }
1797
1798 /**
1799 * Some languages have special punctuation need to be normalized.
1800 * Make such changes here.
1801 *
1802 * @param $string String
1803 * @return String
1804 */
1805 function normalizeForSearch( $string ) {
1806 return self::convertDoubleWidth( $string );
1807 }
1808
1809 /**
1810 * convert double-width roman characters to single-width.
1811 * range: ff00-ff5f ~= 0020-007f
1812 */
1813 protected static function convertDoubleWidth( $string ) {
1814 static $full = null;
1815 static $half = null;
1816
1817 if ( $full === null ) {
1818 $fullWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
1819 $halfWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
1820 $full = str_split( $fullWidth, 3 );
1821 $half = str_split( $halfWidth );
1822 }
1823
1824 $string = str_replace( $full, $half, $string );
1825 return $string;
1826 }
1827
1828 protected static function insertSpace( $string, $pattern ) {
1829 $string = preg_replace( $pattern, " $1 ", $string );
1830 $string = preg_replace( '/ +/', ' ', $string );
1831 return $string;
1832 }
1833
1834 function convertForSearchResult( $termsArray ) {
1835 # some languages, e.g. Chinese, need to do a conversion
1836 # in order for search results to be displayed correctly
1837 return $termsArray;
1838 }
1839
1840 /**
1841 * Get the first character of a string.
1842 *
1843 * @param $s string
1844 * @return string
1845 */
1846 function firstChar( $s ) {
1847 $matches = array();
1848 preg_match(
1849 '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
1850 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})/',
1851 $s,
1852 $matches
1853 );
1854
1855 if ( isset( $matches[1] ) ) {
1856 if ( strlen( $matches[1] ) != 3 ) {
1857 return $matches[1];
1858 }
1859
1860 // Break down Hangul syllables to grab the first jamo
1861 $code = utf8ToCodepoint( $matches[1] );
1862 if ( $code < 0xac00 || 0xd7a4 <= $code ) {
1863 return $matches[1];
1864 } elseif ( $code < 0xb098 ) {
1865 return "\xe3\x84\xb1";
1866 } elseif ( $code < 0xb2e4 ) {
1867 return "\xe3\x84\xb4";
1868 } elseif ( $code < 0xb77c ) {
1869 return "\xe3\x84\xb7";
1870 } elseif ( $code < 0xb9c8 ) {
1871 return "\xe3\x84\xb9";
1872 } elseif ( $code < 0xbc14 ) {
1873 return "\xe3\x85\x81";
1874 } elseif ( $code < 0xc0ac ) {
1875 return "\xe3\x85\x82";
1876 } elseif ( $code < 0xc544 ) {
1877 return "\xe3\x85\x85";
1878 } elseif ( $code < 0xc790 ) {
1879 return "\xe3\x85\x87";
1880 } elseif ( $code < 0xcc28 ) {
1881 return "\xe3\x85\x88";
1882 } elseif ( $code < 0xce74 ) {
1883 return "\xe3\x85\x8a";
1884 } elseif ( $code < 0xd0c0 ) {
1885 return "\xe3\x85\x8b";
1886 } elseif ( $code < 0xd30c ) {
1887 return "\xe3\x85\x8c";
1888 } elseif ( $code < 0xd558 ) {
1889 return "\xe3\x85\x8d";
1890 } else {
1891 return "\xe3\x85\x8e";
1892 }
1893 } else {
1894 return '';
1895 }
1896 }
1897
1898 function initEncoding() {
1899 # Some languages may have an alternate char encoding option
1900 # (Esperanto X-coding, Japanese furigana conversion, etc)
1901 # If this language is used as the primary content language,
1902 # an override to the defaults can be set here on startup.
1903 }
1904
1905 function recodeForEdit( $s ) {
1906 # For some languages we'll want to explicitly specify
1907 # which characters make it into the edit box raw
1908 # or are converted in some way or another.
1909 # Note that if wgOutputEncoding is different from
1910 # wgInputEncoding, this text will be further converted
1911 # to wgOutputEncoding.
1912 global $wgEditEncoding;
1913 if ( $wgEditEncoding == '' || $wgEditEncoding == 'UTF-8' ) {
1914 return $s;
1915 } else {
1916 return $this->iconv( 'UTF-8', $wgEditEncoding, $s );
1917 }
1918 }
1919
1920 function recodeInput( $s ) {
1921 # Take the previous into account.
1922 global $wgEditEncoding;
1923 if ( $wgEditEncoding != '' ) {
1924 $enc = $wgEditEncoding;
1925 } else {
1926 $enc = 'UTF-8';
1927 }
1928 if ( $enc == 'UTF-8' ) {
1929 return $s;
1930 } else {
1931 return $this->iconv( $enc, 'UTF-8', $s );
1932 }
1933 }
1934
1935 /**
1936 * Convert a UTF-8 string to normal form C. In Malayalam and Arabic, this
1937 * also cleans up certain backwards-compatible sequences, converting them
1938 * to the modern Unicode equivalent.
1939 *
1940 * This is language-specific for performance reasons only.
1941 */
1942 function normalize( $s ) {
1943 global $wgAllUnicodeFixes;
1944 $s = UtfNormal::cleanUp( $s );
1945 if ( $wgAllUnicodeFixes ) {
1946 $s = $this->transformUsingPairFile( 'normalize-ar.ser', $s );
1947 $s = $this->transformUsingPairFile( 'normalize-ml.ser', $s );
1948 }
1949
1950 return $s;
1951 }
1952
1953 /**
1954 * Transform a string using serialized data stored in the given file (which
1955 * must be in the serialized subdirectory of $IP). The file contains pairs
1956 * mapping source characters to destination characters.
1957 *
1958 * The data is cached in process memory. This will go faster if you have the
1959 * FastStringSearch extension.
1960 */
1961 function transformUsingPairFile( $file, $string ) {
1962 if ( !isset( $this->transformData[$file] ) ) {
1963 $data = wfGetPrecompiledData( $file );
1964 if ( $data === false ) {
1965 throw new MWException( __METHOD__ . ": The transformation file $file is missing" );
1966 }
1967 $this->transformData[$file] = new ReplacementArray( $data );
1968 }
1969 return $this->transformData[$file]->replace( $string );
1970 }
1971
1972 /**
1973 * For right-to-left language support
1974 *
1975 * @return bool
1976 */
1977 function isRTL() {
1978 return self::$dataCache->getItem( $this->mCode, 'rtl' );
1979 }
1980
1981 /**
1982 * Return the correct HTML 'dir' attribute value for this language.
1983 * @return String
1984 */
1985 function getDir() {
1986 return $this->isRTL() ? 'rtl' : 'ltr';
1987 }
1988
1989 /**
1990 * Return 'left' or 'right' as appropriate alignment for line-start
1991 * for this language's text direction.
1992 *
1993 * Should be equivalent to CSS3 'start' text-align value....
1994 *
1995 * @return String
1996 */
1997 function alignStart() {
1998 return $this->isRTL() ? 'right' : 'left';
1999 }
2000
2001 /**
2002 * Return 'right' or 'left' as appropriate alignment for line-end
2003 * for this language's text direction.
2004 *
2005 * Should be equivalent to CSS3 'end' text-align value....
2006 *
2007 * @return String
2008 */
2009 function alignEnd() {
2010 return $this->isRTL() ? 'left' : 'right';
2011 }
2012
2013 /**
2014 * A hidden direction mark (LRM or RLM), depending on the language direction
2015 *
2016 * @return string
2017 */
2018 function getDirMark() {
2019 return $this->isRTL() ? "\xE2\x80\x8F" : "\xE2\x80\x8E";
2020 }
2021
2022 function capitalizeAllNouns() {
2023 return self::$dataCache->getItem( $this->mCode, 'capitalizeAllNouns' );
2024 }
2025
2026 /**
2027 * An arrow, depending on the language direction
2028 *
2029 * @return string
2030 */
2031 function getArrow() {
2032 return $this->isRTL() ? '←' : '→';
2033 }
2034
2035 /**
2036 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
2037 *
2038 * @return bool
2039 */
2040 function linkPrefixExtension() {
2041 return self::$dataCache->getItem( $this->mCode, 'linkPrefixExtension' );
2042 }
2043
2044 function getMagicWords() {
2045 return self::$dataCache->getItem( $this->mCode, 'magicWords' );
2046 }
2047
2048 # Fill a MagicWord object with data from here
2049 function getMagic( $mw ) {
2050 if ( !$this->mMagicHookDone ) {
2051 $this->mMagicHookDone = true;
2052 wfProfileIn( 'LanguageGetMagic' );
2053 wfRunHooks( 'LanguageGetMagic', array( &$this->mMagicExtensions, $this->getCode() ) );
2054 wfProfileOut( 'LanguageGetMagic' );
2055 }
2056 if ( isset( $this->mMagicExtensions[$mw->mId] ) ) {
2057 $rawEntry = $this->mMagicExtensions[$mw->mId];
2058 } else {
2059 $magicWords = $this->getMagicWords();
2060 if ( isset( $magicWords[$mw->mId] ) ) {
2061 $rawEntry = $magicWords[$mw->mId];
2062 } else {
2063 $rawEntry = false;
2064 }
2065 }
2066
2067 if ( !is_array( $rawEntry ) ) {
2068 error_log( "\"$rawEntry\" is not a valid magic thingie for \"$mw->mId\"" );
2069 } else {
2070 $mw->mCaseSensitive = $rawEntry[0];
2071 $mw->mSynonyms = array_slice( $rawEntry, 1 );
2072 }
2073 }
2074
2075 /**
2076 * Add magic words to the extension array
2077 */
2078 function addMagicWordsByLang( $newWords ) {
2079 $code = $this->getCode();
2080 $fallbackChain = array();
2081 while ( $code && !in_array( $code, $fallbackChain ) ) {
2082 $fallbackChain[] = $code;
2083 $code = self::getFallbackFor( $code );
2084 }
2085 if ( !in_array( 'en', $fallbackChain ) ) {
2086 $fallbackChain[] = 'en';
2087 }
2088 $fallbackChain = array_reverse( $fallbackChain );
2089 foreach ( $fallbackChain as $code ) {
2090 if ( isset( $newWords[$code] ) ) {
2091 $this->mMagicExtensions = $newWords[$code] + $this->mMagicExtensions;
2092 }
2093 }
2094 }
2095
2096 /**
2097 * Get special page names, as an associative array
2098 * case folded alias => real name
2099 */
2100 function getSpecialPageAliases() {
2101 // Cache aliases because it may be slow to load them
2102 if ( is_null( $this->mExtendedSpecialPageAliases ) ) {
2103 // Initialise array
2104 $this->mExtendedSpecialPageAliases =
2105 self::$dataCache->getItem( $this->mCode, 'specialPageAliases' );
2106 wfRunHooks( 'LanguageGetSpecialPageAliases',
2107 array( &$this->mExtendedSpecialPageAliases, $this->getCode() ) );
2108 }
2109
2110 return $this->mExtendedSpecialPageAliases;
2111 }
2112
2113 /**
2114 * Italic is unsuitable for some languages
2115 *
2116 * @param $text String: the text to be emphasized.
2117 * @return string
2118 */
2119 function emphasize( $text ) {
2120 return "<em>$text</em>";
2121 }
2122
2123 /**
2124 * Normally we output all numbers in plain en_US style, that is
2125 * 293,291.235 for twohundredninetythreethousand-twohundredninetyone
2126 * point twohundredthirtyfive. However this is not sutable for all
2127 * languages, some such as Pakaran want ੨੯੩,੨੯੫.੨੩੫ and others such as
2128 * Icelandic just want to use commas instead of dots, and dots instead
2129 * of commas like "293.291,235".
2130 *
2131 * An example of this function being called:
2132 * <code>
2133 * wfMsg( 'message', $wgLang->formatNum( $num ) )
2134 * </code>
2135 *
2136 * See LanguageGu.php for the Gujarati implementation and
2137 * $separatorTransformTable on MessageIs.php for
2138 * the , => . and . => , implementation.
2139 *
2140 * @todo check if it's viable to use localeconv() for the decimal
2141 * separator thing.
2142 * @param $number Mixed: the string to be formatted, should be an integer
2143 * or a floating point number.
2144 * @param $nocommafy Bool: set to true for special numbers like dates
2145 * @return string
2146 */
2147 function formatNum( $number, $nocommafy = false ) {
2148 global $wgTranslateNumerals;
2149 if ( !$nocommafy ) {
2150 $number = $this->commafy( $number );
2151 $s = $this->separatorTransformTable();
2152 if ( $s ) {
2153 $number = strtr( $number, $s );
2154 }
2155 }
2156
2157 if ( $wgTranslateNumerals ) {
2158 $s = $this->digitTransformTable();
2159 if ( $s ) {
2160 $number = strtr( $number, $s );
2161 }
2162 }
2163
2164 return $number;
2165 }
2166
2167 function parseFormattedNumber( $number ) {
2168 $s = $this->digitTransformTable();
2169 if ( $s ) {
2170 $number = strtr( $number, array_flip( $s ) );
2171 }
2172
2173 $s = $this->separatorTransformTable();
2174 if ( $s ) {
2175 $number = strtr( $number, array_flip( $s ) );
2176 }
2177
2178 $number = strtr( $number, array( ',' => '' ) );
2179 return $number;
2180 }
2181
2182 /**
2183 * Adds commas to a given number
2184 *
2185 * @param $_ mixed
2186 * @return string
2187 */
2188 function commafy( $_ ) {
2189 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
2190 }
2191
2192 function digitTransformTable() {
2193 return self::$dataCache->getItem( $this->mCode, 'digitTransformTable' );
2194 }
2195
2196 function separatorTransformTable() {
2197 return self::$dataCache->getItem( $this->mCode, 'separatorTransformTable' );
2198 }
2199
2200 /**
2201 * Take a list of strings and build a locale-friendly comma-separated
2202 * list, using the local comma-separator message.
2203 * The last two strings are chained with an "and".
2204 *
2205 * @param $l Array
2206 * @return string
2207 */
2208 function listToText( $l ) {
2209 $s = '';
2210 $m = count( $l ) - 1;
2211 if ( $m == 1 ) {
2212 return $l[0] . $this->getMessageFromDB( 'and' ) . $this->getMessageFromDB( 'word-separator' ) . $l[1];
2213 } else {
2214 for ( $i = $m; $i >= 0; $i-- ) {
2215 if ( $i == $m ) {
2216 $s = $l[$i];
2217 } else if ( $i == $m - 1 ) {
2218 $s = $l[$i] . $this->getMessageFromDB( 'and' ) . $this->getMessageFromDB( 'word-separator' ) . $s;
2219 } else {
2220 $s = $l[$i] . $this->getMessageFromDB( 'comma-separator' ) . $s;
2221 }
2222 }
2223 return $s;
2224 }
2225 }
2226
2227 /**
2228 * Take a list of strings and build a locale-friendly comma-separated
2229 * list, using the local comma-separator message.
2230 * @param $list array of strings to put in a comma list
2231 * @return string
2232 */
2233 function commaList( $list ) {
2234 return implode(
2235 $list,
2236 wfMsgExt(
2237 'comma-separator',
2238 array( 'parsemag', 'escapenoentities', 'language' => $this )
2239 )
2240 );
2241 }
2242
2243 /**
2244 * Take a list of strings and build a locale-friendly semicolon-separated
2245 * list, using the local semicolon-separator message.
2246 * @param $list array of strings to put in a semicolon list
2247 * @return string
2248 */
2249 function semicolonList( $list ) {
2250 return implode(
2251 $list,
2252 wfMsgExt(
2253 'semicolon-separator',
2254 array( 'parsemag', 'escapenoentities', 'language' => $this )
2255 )
2256 );
2257 }
2258
2259 /**
2260 * Same as commaList, but separate it with the pipe instead.
2261 * @param $list array of strings to put in a pipe list
2262 * @return string
2263 */
2264 function pipeList( $list ) {
2265 return implode(
2266 $list,
2267 wfMsgExt(
2268 'pipe-separator',
2269 array( 'escapenoentities', 'language' => $this )
2270 )
2271 );
2272 }
2273
2274 /**
2275 * Truncate a string to a specified length in bytes, appending an optional
2276 * string (e.g. for ellipses)
2277 *
2278 * The database offers limited byte lengths for some columns in the database;
2279 * multi-byte character sets mean we need to ensure that only whole characters
2280 * are included, otherwise broken characters can be passed to the user
2281 *
2282 * If $length is negative, the string will be truncated from the beginning
2283 *
2284 * @param $string String to truncate
2285 * @param $length Int: maximum length (excluding ellipses)
2286 * @param $ellipsis String to append to the truncated text
2287 * @return string
2288 */
2289 function truncate( $string, $length, $ellipsis = '...' ) {
2290 # Use the localized ellipsis character
2291 if ( $ellipsis == '...' ) {
2292 $ellipsis = wfMsgExt( 'ellipsis', array( 'escapenoentities', 'language' => $this ) );
2293 }
2294 # Check if there is no need to truncate
2295 if ( $length == 0 ) {
2296 return $ellipsis;
2297 } elseif ( strlen( $string ) <= abs( $length ) ) {
2298 return $string;
2299 }
2300 $stringOriginal = $string;
2301 if ( $length > 0 ) {
2302 $string = substr( $string, 0, $length ); // xyz...
2303 $string = $this->removeBadCharLast( $string );
2304 $string = $string . $ellipsis;
2305 } else {
2306 $string = substr( $string, $length ); // ...xyz
2307 $string = $this->removeBadCharFirst( $string );
2308 $string = $ellipsis . $string;
2309 }
2310 # Do not truncate if the ellipsis makes the string longer/equal (bug 22181)
2311 if ( strlen( $string ) < strlen( $stringOriginal ) ) {
2312 return $string;
2313 } else {
2314 return $stringOriginal;
2315 }
2316 }
2317
2318 /**
2319 * Remove bytes that represent an incomplete Unicode character
2320 * at the end of string (e.g. bytes of the char are missing)
2321 *
2322 * @param $string String
2323 * @return string
2324 */
2325 protected function removeBadCharLast( $string ) {
2326 $char = ord( $string[strlen( $string ) - 1] );
2327 $m = array();
2328 if ( $char >= 0xc0 ) {
2329 # We got the first byte only of a multibyte char; remove it.
2330 $string = substr( $string, 0, -1 );
2331 } elseif ( $char >= 0x80 &&
2332 preg_match( '/^(.*)(?:[\xe0-\xef][\x80-\xbf]|' .
2333 '[\xf0-\xf7][\x80-\xbf]{1,2})$/', $string, $m ) )
2334 {
2335 # We chopped in the middle of a character; remove it
2336 $string = $m[1];
2337 }
2338 return $string;
2339 }
2340
2341 /**
2342 * Remove bytes that represent an incomplete Unicode character
2343 * at the start of string (e.g. bytes of the char are missing)
2344 *
2345 * @param $string String
2346 * @return string
2347 */
2348 protected function removeBadCharFirst( $string ) {
2349 $char = ord( $string[0] );
2350 if ( $char >= 0x80 && $char < 0xc0 ) {
2351 # We chopped in the middle of a character; remove the whole thing
2352 $string = preg_replace( '/^[\x80-\xbf]+/', '', $string );
2353 }
2354 return $string;
2355 }
2356
2357 /*
2358 * Truncate a string of valid HTML to a specified length in bytes,
2359 * appending an optional string (e.g. for ellipses), and return valid HTML
2360 *
2361 * This is only intended for styled/linked text, such as HTML with
2362 * tags like <span> and <a>, were the tags are self-contained (valid HTML)
2363 *
2364 * Note: tries to fix broken HTML with MWTidy
2365 *
2366 * @param string $text String to truncate
2367 * @param int $length (zero/positive) Maximum length (excluding ellipses)
2368 * @param string $ellipsis String to append to the truncated text
2369 * @returns string
2370 */
2371 function truncateHtml( $text, $length, $ellipsis = '...' ) {
2372 # Use the localized ellipsis character
2373 if ( $ellipsis == '...' ) {
2374 $ellipsis = wfMsgExt( 'ellipsis', array( 'escapenoentities', 'language' => $this ) );
2375 }
2376 # Check if there is no need to truncate
2377 if ( $length <= 0 ) {
2378 return $ellipsis; // no text shown, nothing to format
2379 } elseif ( strlen( $text ) <= $length ) {
2380 return $text; // string short enough even *with* HTML
2381 }
2382 $text = MWTidy::tidy( $text ); // fix tags
2383 $displayLen = 0; // innerHTML legth so far
2384 $testingEllipsis = false; // checking if ellipses will make string longer/equal?
2385 $tagType = 0; // 0-open, 1-close
2386 $bracketState = 0; // 1-tag start, 2-tag name, 0-neither
2387 $entityState = 0; // 0-not entity, 1-entity
2388 $tag = $ret = $ch = '';
2389 $openTags = array();
2390 $textLen = strlen( $text );
2391 for ( $pos = 0; $pos < $textLen; ++$pos ) {
2392 $ch = $text[$pos];
2393 $lastCh = $pos ? $text[$pos - 1] : '';
2394 $ret .= $ch; // add to result string
2395 if ( $ch == '<' ) {
2396 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags ); // for bad HTML
2397 $entityState = 0; // for bad HTML
2398 $bracketState = 1; // tag started (checking for backslash)
2399 } elseif ( $ch == '>' ) {
2400 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags );
2401 $entityState = 0; // for bad HTML
2402 $bracketState = 0; // out of brackets
2403 } elseif ( $bracketState == 1 ) {
2404 if ( $ch == '/' ) {
2405 $tagType = 1; // close tag (e.g. "</span>")
2406 } else {
2407 $tagType = 0; // open tag (e.g. "<span>")
2408 $tag .= $ch;
2409 }
2410 $bracketState = 2; // building tag name
2411 } elseif ( $bracketState == 2 ) {
2412 if ( $ch != ' ' ) {
2413 $tag .= $ch;
2414 } else {
2415 // Name found (e.g. "<a href=..."), add on tag attributes...
2416 $pos += $this->truncate_skip( $ret, $text, "<>", $pos + 1 );
2417 }
2418 } elseif ( $bracketState == 0 ) {
2419 if ( $entityState ) {
2420 if ( $ch == ';' ) {
2421 $entityState = 0;
2422 $displayLen++; // entity is one displayed char
2423 }
2424 } else {
2425 if ( $ch == '&' ) {
2426 $entityState = 1; // entity found, (e.g. "&#160;")
2427 } else {
2428 $displayLen++; // this char is displayed
2429 // Add on the other display text after this...
2430 $skipped = $this->truncate_skip(
2431 $ret, $text, "<>&", $pos + 1, $length - $displayLen );
2432 $displayLen += $skipped;
2433 $pos += $skipped;
2434 }
2435 }
2436 }
2437 # Consider truncation once the display length has reached the maximim.
2438 # Double-check that we're not in the middle of a bracket/entity...
2439 if ( $displayLen >= $length && $bracketState == 0 && $entityState == 0 ) {
2440 if ( !$testingEllipsis ) {
2441 $testingEllipsis = true;
2442 # Save where we are; we will truncate here unless
2443 # the ellipsis actually makes the string longer.
2444 $pOpenTags = $openTags; // save state
2445 $pRet = $ret; // save state
2446 } elseif ( $displayLen > ( $length + strlen( $ellipsis ) ) ) {
2447 # Ellipsis won't make string longer/equal, the truncation point was OK.
2448 $openTags = $pOpenTags; // reload state
2449 $ret = $this->removeBadCharLast( $pRet ); // reload state, multi-byte char fix
2450 $ret .= $ellipsis; // add ellipsis
2451 break;
2452 }
2453 }
2454 }
2455 if ( $displayLen == 0 ) {
2456 return ''; // no text shown, nothing to format
2457 }
2458 $this->truncate_endBracket( $tag, $text[$textLen - 1], $tagType, $openTags ); // for bad HTML
2459 while ( count( $openTags ) > 0 ) {
2460 $ret .= '</' . array_pop( $openTags ) . '>'; // close open tags
2461 }
2462 return $ret;
2463 }
2464
2465 // truncateHtml() helper function
2466 // like strcspn() but adds the skipped chars to $ret
2467 private function truncate_skip( &$ret, $text, $search, $start, $len = -1 ) {
2468 $skipCount = 0;
2469 if ( $start < strlen( $text ) ) {
2470 $skipCount = strcspn( $text, $search, $start, $len );
2471 $ret .= substr( $text, $start, $skipCount );
2472 }
2473 return $skipCount;
2474 }
2475
2476 // truncateHtml() helper function
2477 // (a) push or pop $tag from $openTags as needed
2478 // (b) clear $tag value
2479 private function truncate_endBracket( &$tag, $tagType, $lastCh, &$openTags ) {
2480 $tag = ltrim( $tag );
2481 if ( $tag != '' ) {
2482 if ( $tagType == 0 && $lastCh != '/' ) {
2483 $openTags[] = $tag; // tag opened (didn't close itself)
2484 } else if ( $tagType == 1 ) {
2485 if ( $openTags && $tag == $openTags[count( $openTags ) - 1] ) {
2486 array_pop( $openTags ); // tag closed
2487 }
2488 }
2489 $tag = '';
2490 }
2491 }
2492
2493 /**
2494 * Grammatical transformations, needed for inflected languages
2495 * Invoked by putting {{grammar:case|word}} in a message
2496 *
2497 * @param $word string
2498 * @param $case string
2499 * @return string
2500 */
2501 function convertGrammar( $word, $case ) {
2502 global $wgGrammarForms;
2503 if ( isset( $wgGrammarForms[$this->getCode()][$case][$word] ) ) {
2504 return $wgGrammarForms[$this->getCode()][$case][$word];
2505 }
2506 return $word;
2507 }
2508
2509 /**
2510 * Provides an alternative text depending on specified gender.
2511 * Usage {{gender:username|masculine|feminine|neutral}}.
2512 * username is optional, in which case the gender of current user is used,
2513 * but only in (some) interface messages; otherwise default gender is used.
2514 * If second or third parameter are not specified, masculine is used.
2515 * These details may be overriden per language.
2516 */
2517 function gender( $gender, $forms ) {
2518 if ( !count( $forms ) ) {
2519 return '';
2520 }
2521 $forms = $this->preConvertPlural( $forms, 2 );
2522 if ( $gender === 'male' ) {
2523 return $forms[0];
2524 }
2525 if ( $gender === 'female' ) {
2526 return $forms[1];
2527 }
2528 return isset( $forms[2] ) ? $forms[2] : $forms[0];
2529 }
2530
2531 /**
2532 * Plural form transformations, needed for some languages.
2533 * For example, there are 3 form of plural in Russian and Polish,
2534 * depending on "count mod 10". See [[w:Plural]]
2535 * For English it is pretty simple.
2536 *
2537 * Invoked by putting {{plural:count|wordform1|wordform2}}
2538 * or {{plural:count|wordform1|wordform2|wordform3}}
2539 *
2540 * Example: {{plural:{{NUMBEROFARTICLES}}|article|articles}}
2541 *
2542 * @param $count Integer: non-localized number
2543 * @param $forms Array: different plural forms
2544 * @return string Correct form of plural for $count in this language
2545 */
2546 function convertPlural( $count, $forms ) {
2547 if ( !count( $forms ) ) {
2548 return '';
2549 }
2550 $forms = $this->preConvertPlural( $forms, 2 );
2551
2552 return ( $count == 1 ) ? $forms[0] : $forms[1];
2553 }
2554
2555 /**
2556 * Checks that convertPlural was given an array and pads it to requested
2557 * amound of forms by copying the last one.
2558 *
2559 * @param $count Integer: How many forms should there be at least
2560 * @param $forms Array of forms given to convertPlural
2561 * @return array Padded array of forms or an exception if not an array
2562 */
2563 protected function preConvertPlural( /* Array */ $forms, $count ) {
2564 while ( count( $forms ) < $count ) {
2565 $forms[] = $forms[count( $forms ) - 1];
2566 }
2567 return $forms;
2568 }
2569
2570 /**
2571 * For translating of expiry times
2572 * @param $str String: the validated block time in English
2573 * @return Somehow translated block time
2574 * @see LanguageFi.php for example implementation
2575 */
2576 function translateBlockExpiry( $str ) {
2577 $scBlockExpiryOptions = $this->getMessageFromDB( 'ipboptions' );
2578
2579 if ( $scBlockExpiryOptions == '-' ) {
2580 return $str;
2581 }
2582
2583 foreach ( explode( ',', $scBlockExpiryOptions ) as $option ) {
2584 if ( strpos( $option, ':' ) === false ) {
2585 continue;
2586 }
2587 list( $show, $value ) = explode( ':', $option );
2588 if ( strcmp( $str, $value ) == 0 ) {
2589 return htmlspecialchars( trim( $show ) );
2590 }
2591 }
2592
2593 return $str;
2594 }
2595
2596 /**
2597 * languages like Chinese need to be segmented in order for the diff
2598 * to be of any use
2599 *
2600 * @param $text String
2601 * @return String
2602 */
2603 function segmentForDiff( $text ) {
2604 return $text;
2605 }
2606
2607 /**
2608 * and unsegment to show the result
2609 *
2610 * @param $text String
2611 * @return String
2612 */
2613 function unsegmentForDiff( $text ) {
2614 return $text;
2615 }
2616
2617 # convert text to all supported variants
2618 function autoConvertToAllVariants( $text ) {
2619 return $this->mConverter->autoConvertToAllVariants( $text );
2620 }
2621
2622 # convert text to different variants of a language.
2623 function convert( $text ) {
2624 return $this->mConverter->convert( $text );
2625 }
2626
2627 # Convert a Title object to a string in the preferred variant
2628 function convertTitle( $title ) {
2629 return $this->mConverter->convertTitle( $title );
2630 }
2631
2632 # Check if this is a language with variants
2633 function hasVariants() {
2634 return sizeof( $this->getVariants() ) > 1;
2635 }
2636
2637 # Put custom tags (e.g. -{ }-) around math to prevent conversion
2638 function armourMath( $text ) {
2639 return $this->mConverter->armourMath( $text );
2640 }
2641
2642 /**
2643 * Perform output conversion on a string, and encode for safe HTML output.
2644 * @param $text String text to be converted
2645 * @param $isTitle Bool whether this conversion is for the article title
2646 * @return string
2647 * @todo this should get integrated somewhere sane
2648 */
2649 function convertHtml( $text, $isTitle = false ) {
2650 return htmlspecialchars( $this->convert( $text, $isTitle ) );
2651 }
2652
2653 function convertCategoryKey( $key ) {
2654 return $this->mConverter->convertCategoryKey( $key );
2655 }
2656
2657 /**
2658 * Get the list of variants supported by this langauge
2659 * see sample implementation in LanguageZh.php
2660 *
2661 * @return array an array of language codes
2662 */
2663 function getVariants() {
2664 return $this->mConverter->getVariants();
2665 }
2666
2667 function getPreferredVariant( $fromUser = true, $fromHeader = false ) {
2668 return $this->mConverter->getPreferredVariant( $fromUser, $fromHeader );
2669 }
2670
2671 /**
2672 * If a language supports multiple variants, it is
2673 * possible that non-existing link in one variant
2674 * actually exists in another variant. this function
2675 * tries to find it. See e.g. LanguageZh.php
2676 *
2677 * @param $link String: the name of the link
2678 * @param $nt Mixed: the title object of the link
2679 * @param $ignoreOtherCond Boolean: to disable other conditions when
2680 * we need to transclude a template or update a category's link
2681 * @return null the input parameters may be modified upon return
2682 */
2683 function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
2684 $this->mConverter->findVariantLink( $link, $nt, $ignoreOtherCond );
2685 }
2686
2687 /**
2688 * If a language supports multiple variants, converts text
2689 * into an array of all possible variants of the text:
2690 * 'variant' => text in that variant
2691 */
2692 function convertLinkToAllVariants( $text ) {
2693 return $this->mConverter->convertLinkToAllVariants( $text );
2694 }
2695
2696 /**
2697 * returns language specific options used by User::getPageRenderHash()
2698 * for example, the preferred language variant
2699 *
2700 * @return string
2701 */
2702 function getExtraHashOptions() {
2703 return $this->mConverter->getExtraHashOptions();
2704 }
2705
2706 /**
2707 * For languages that support multiple variants, the title of an
2708 * article may be displayed differently in different variants. this
2709 * function returns the apporiate title defined in the body of the article.
2710 *
2711 * @return string
2712 */
2713 function getParsedTitle() {
2714 return $this->mConverter->getParsedTitle();
2715 }
2716
2717 /**
2718 * Enclose a string with the "no conversion" tag. This is used by
2719 * various functions in the Parser
2720 *
2721 * @param $text String: text to be tagged for no conversion
2722 * @param $noParse
2723 * @return string the tagged text
2724 */
2725 function markNoConversion( $text, $noParse = false ) {
2726 return $this->mConverter->markNoConversion( $text, $noParse );
2727 }
2728
2729 /**
2730 * A regular expression to match legal word-trailing characters
2731 * which should be merged onto a link of the form [[foo]]bar.
2732 *
2733 * @return string
2734 */
2735 function linkTrail() {
2736 return self::$dataCache->getItem( $this->mCode, 'linkTrail' );
2737 }
2738
2739 function getLangObj() {
2740 return $this;
2741 }
2742
2743 /**
2744 * Get the RFC 3066 code for this language object
2745 */
2746 function getCode() {
2747 return $this->mCode;
2748 }
2749
2750 function setCode( $code ) {
2751 $this->mCode = $code;
2752 }
2753
2754 /**
2755 * Get the name of a file for a certain language code
2756 * @param $prefix string Prepend this to the filename
2757 * @param $code string Language code
2758 * @param $suffix string Append this to the filename
2759 * @return string $prefix . $mangledCode . $suffix
2760 */
2761 static function getFileName( $prefix = 'Language', $code, $suffix = '.php' ) {
2762 return $prefix . str_replace( '-', '_', ucfirst( $code ) ) . $suffix;
2763 }
2764
2765 /**
2766 * Get the language code from a file name. Inverse of getFileName()
2767 * @param $filename string $prefix . $languageCode . $suffix
2768 * @param $prefix string Prefix before the language code
2769 * @param $suffix string Suffix after the language code
2770 * @return Language code, or false if $prefix or $suffix isn't found
2771 */
2772 static function getCodeFromFileName( $filename, $prefix = 'Language', $suffix = '.php' ) {
2773 $m = null;
2774 preg_match( '/' . preg_quote( $prefix, '/' ) . '([A-Z][a-z_]+)' .
2775 preg_quote( $suffix, '/' ) . '/', $filename, $m );
2776 if ( !count( $m ) ) {
2777 return false;
2778 }
2779 return str_replace( '_', '-', strtolower( $m[1] ) );
2780 }
2781
2782 static function getMessagesFileName( $code ) {
2783 global $IP;
2784 return self::getFileName( "$IP/languages/messages/Messages", $code, '.php' );
2785 }
2786
2787 static function getClassFileName( $code ) {
2788 global $IP;
2789 return self::getFileName( "$IP/languages/classes/Language", $code, '.php' );
2790 }
2791
2792 /**
2793 * Get the fallback for a given language
2794 */
2795 static function getFallbackFor( $code ) {
2796 if ( $code === 'en' ) {
2797 // Shortcut
2798 return false;
2799 } else {
2800 return self::getLocalisationCache()->getItem( $code, 'fallback' );
2801 }
2802 }
2803
2804 /**
2805 * Get all messages for a given language
2806 * WARNING: this may take a long time
2807 */
2808 static function getMessagesFor( $code ) {
2809 return self::getLocalisationCache()->getItem( $code, 'messages' );
2810 }
2811
2812 /**
2813 * Get a message for a given language
2814 */
2815 static function getMessageFor( $key, $code ) {
2816 return self::getLocalisationCache()->getSubitem( $code, 'messages', $key );
2817 }
2818
2819 function fixVariableInNamespace( $talk ) {
2820 if ( strpos( $talk, '$1' ) === false ) {
2821 return $talk;
2822 }
2823
2824 global $wgMetaNamespace;
2825 $talk = str_replace( '$1', $wgMetaNamespace, $talk );
2826
2827 # Allow grammar transformations
2828 # Allowing full message-style parsing would make simple requests
2829 # such as action=raw much more expensive than they need to be.
2830 # This will hopefully cover most cases.
2831 $talk = preg_replace_callback( '/{{grammar:(.*?)\|(.*?)}}/i',
2832 array( &$this, 'replaceGrammarInNamespace' ), $talk );
2833 return str_replace( ' ', '_', $talk );
2834 }
2835
2836 function replaceGrammarInNamespace( $m ) {
2837 return $this->convertGrammar( trim( $m[2] ), trim( $m[1] ) );
2838 }
2839
2840 static function getCaseMaps() {
2841 static $wikiUpperChars, $wikiLowerChars;
2842 if ( isset( $wikiUpperChars ) ) {
2843 return array( $wikiUpperChars, $wikiLowerChars );
2844 }
2845
2846 wfProfileIn( __METHOD__ );
2847 $arr = wfGetPrecompiledData( 'Utf8Case.ser' );
2848 if ( $arr === false ) {
2849 throw new MWException(
2850 "Utf8Case.ser is missing, please run \"make\" in the serialized directory\n" );
2851 }
2852 extract( $arr );
2853 wfProfileOut( __METHOD__ );
2854 return array( $wikiUpperChars, $wikiLowerChars );
2855 }
2856
2857 function formatTimePeriod( $seconds ) {
2858 if ( $seconds < 10 ) {
2859 return $this->formatNum( sprintf( "%.1f", $seconds ) ) . $this->getMessageFromDB( 'seconds-abbrev' );
2860 } elseif ( $seconds < 60 ) {
2861 return $this->formatNum( round( $seconds ) ) . $this->getMessageFromDB( 'seconds-abbrev' );
2862 } elseif ( $seconds < 3600 ) {
2863 $minutes = floor( $seconds / 60 );
2864 $secondsPart = round( fmod( $seconds, 60 ) );
2865 if ( $secondsPart == 60 ) {
2866 $secondsPart = 0;
2867 $minutes++;
2868 }
2869 return $this->formatNum( $minutes ) . $this->getMessageFromDB( 'minutes-abbrev' ) . ' ' .
2870 $this->formatNum( $secondsPart ) . $this->getMessageFromDB( 'seconds-abbrev' );
2871 } else {
2872 $hours = floor( $seconds / 3600 );
2873 $minutes = floor( ( $seconds - $hours * 3600 ) / 60 );
2874 $secondsPart = round( $seconds - $hours * 3600 - $minutes * 60 );
2875 if ( $secondsPart == 60 ) {
2876 $secondsPart = 0;
2877 $minutes++;
2878 }
2879 if ( $minutes == 60 ) {
2880 $minutes = 0;
2881 $hours++;
2882 }
2883 return $this->formatNum( $hours ) . $this->getMessageFromDB( 'hours-abbrev' ) . ' ' .
2884 $this->formatNum( $minutes ) . $this->getMessageFromDB( 'minutes-abbrev' ) . ' ' .
2885 $this->formatNum( $secondsPart ) . $this->getMessageFromDB( 'seconds-abbrev' );
2886 }
2887 }
2888
2889 function formatBitrate( $bps ) {
2890 $units = array( 'bps', 'kbps', 'Mbps', 'Gbps' );
2891 if ( $bps <= 0 ) {
2892 return $this->formatNum( $bps ) . $units[0];
2893 }
2894 $unitIndex = floor( log10( $bps ) / 3 );
2895 $mantissa = $bps / pow( 1000, $unitIndex );
2896 if ( $mantissa < 10 ) {
2897 $mantissa = round( $mantissa, 1 );
2898 } else {
2899 $mantissa = round( $mantissa );
2900 }
2901 return $this->formatNum( $mantissa ) . $units[$unitIndex];
2902 }
2903
2904 /**
2905 * Format a size in bytes for output, using an appropriate
2906 * unit (B, KB, MB or GB) according to the magnitude in question
2907 *
2908 * @param $size Size to format
2909 * @return string Plain text (not HTML)
2910 */
2911 function formatSize( $size ) {
2912 // For small sizes no decimal places necessary
2913 $round = 0;
2914 if ( $size > 1024 ) {
2915 $size = $size / 1024;
2916 if ( $size > 1024 ) {
2917 $size = $size / 1024;
2918 // For MB and bigger two decimal places are smarter
2919 $round = 2;
2920 if ( $size > 1024 ) {
2921 $size = $size / 1024;
2922 $msg = 'size-gigabytes';
2923 } else {
2924 $msg = 'size-megabytes';
2925 }
2926 } else {
2927 $msg = 'size-kilobytes';
2928 }
2929 } else {
2930 $msg = 'size-bytes';
2931 }
2932 $size = round( $size, $round );
2933 $text = $this->getMessageFromDB( $msg );
2934 return str_replace( '$1', $this->formatNum( $size ), $text );
2935 }
2936
2937 /**
2938 * Get the conversion rule title, if any.
2939 */
2940 function getConvRuleTitle() {
2941 return $this->mConverter->getConvRuleTitle();
2942 }
2943
2944 /**
2945 * Given a string, convert it to a (hopefully short) key that can be used
2946 * for efficient sorting. A binary sort according to the sortkeys
2947 * corresponds to a logical sort of the corresponding strings. Current
2948 * code expects that a null character should sort before all others, but
2949 * has no other particular expectations (and that one can be changed if
2950 * necessary).
2951 *
2952 * @param string $string UTF-8 string
2953 * @return string Binary sortkey
2954 */
2955 public function convertToSortkey( $string ) {
2956 # Fake function for now
2957 return strtoupper( $string );
2958 }
2959
2960 /**
2961 * Does it make sense for lists to be split up into sections based on their
2962 * first letter? Logogram-based scripts probably want to return false.
2963 *
2964 * TODO: Use this in CategoryPage.php.
2965 *
2966 * @return boolean
2967 */
2968 public function usesFirstLettersInLists() {
2969 return true;
2970 }
2971
2972 /**
2973 * Given a string, return the logical "first letter" to be used for
2974 * grouping on category pages and so on. This has to be coordinated
2975 * carefully with convertToSortkey(), or else the sorted list might jump
2976 * back and forth between the same "initial letters" or other pathological
2977 * behavior. For instance, if you just return the first character, but "a"
2978 * sorts the same as "A" based on convertToSortkey(), then you might get a
2979 * list like
2980 *
2981 * == A ==
2982 * * [[Aardvark]]
2983 *
2984 * == a ==
2985 * * [[antelope]]
2986 *
2987 * == A ==
2988 * * [[Ape]]
2989 *
2990 * etc., assuming for the sake of argument that $wgCapitalLinks is false.
2991 * Obviously, this is ignored if usesFirstLettersInLists() is false.
2992 *
2993 * @param string $string UTF-8 string
2994 * @return string UTF-8 string corresponding to the first letter of input
2995 */
2996 public function firstLetterForLists( $string ) {
2997 if ( $string[0] == "\0" ) {
2998 $string = substr( $string, 1 );
2999 }
3000 return strtoupper( $this->firstChar( $string ) );
3001 }
3002 }