Merge "Selenium: replace UserLoginPage with BlankPage where possible"
[lhc/web/wiklou.git] / includes / cache / localisation / LocalisationCache.php
1 <?php
2 /**
3 * Cache of the contents of localisation files.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 use CLDRPluralRuleParser\Evaluator;
24 use CLDRPluralRuleParser\Error as CLDRPluralRuleError;
25 use MediaWiki\MediaWikiServices;
26
27 /**
28 * Class for caching the contents of localisation files, Messages*.php
29 * and *.i18n.php.
30 *
31 * An instance of this class is available using Language::getLocalisationCache().
32 *
33 * The values retrieved from here are merged, containing items from extension
34 * files, core messages files and the language fallback sequence (e.g. zh-cn ->
35 * zh-hans -> en ). Some common errors are corrected, for example namespace
36 * names with spaces instead of underscores, but heavyweight processing, such
37 * as grammatical transformation, is done by the caller.
38 */
39 class LocalisationCache {
40 const VERSION = 4;
41
42 /** Configuration associative array */
43 private $conf;
44
45 /**
46 * True if recaching should only be done on an explicit call to recache().
47 * Setting this reduces the overhead of cache freshness checking, which
48 * requires doing a stat() for every extension i18n file.
49 */
50 private $manualRecache = false;
51
52 /**
53 * True to treat all files as expired until they are regenerated by this object.
54 */
55 private $forceRecache = false;
56
57 /**
58 * The cache data. 3-d array, where the first key is the language code,
59 * the second key is the item key e.g. 'messages', and the third key is
60 * an item specific subkey index. Some items are not arrays and so for those
61 * items, there are no subkeys.
62 */
63 protected $data = [];
64
65 /**
66 * The persistent store object. An instance of LCStore.
67 *
68 * @var LCStore
69 */
70 private $store;
71
72 /**
73 * A 2-d associative array, code/key, where presence indicates that the item
74 * is loaded. Value arbitrary.
75 *
76 * For split items, if set, this indicates that all of the subitems have been
77 * loaded.
78 */
79 private $loadedItems = [];
80
81 /**
82 * A 3-d associative array, code/key/subkey, where presence indicates that
83 * the subitem is loaded. Only used for the split items, i.e. messages.
84 */
85 private $loadedSubitems = [];
86
87 /**
88 * An array where presence of a key indicates that that language has been
89 * initialised. Initialisation includes checking for cache expiry and doing
90 * any necessary updates.
91 */
92 private $initialisedLangs = [];
93
94 /**
95 * An array mapping non-existent pseudo-languages to fallback languages. This
96 * is filled by initShallowFallback() when data is requested from a language
97 * that lacks a Messages*.php file.
98 */
99 private $shallowFallbacks = [];
100
101 /**
102 * An array where the keys are codes that have been recached by this instance.
103 */
104 private $recachedLangs = [];
105
106 /**
107 * All item keys
108 */
109 public static $allKeys = [
110 'fallback', 'namespaceNames', 'bookstoreList',
111 'magicWords', 'messages', 'rtl', 'capitalizeAllNouns',
112 'digitTransformTable', 'separatorTransformTable',
113 'minimumGroupingDigits', 'fallback8bitEncoding',
114 'linkPrefixExtension', 'linkTrail', 'linkPrefixCharset',
115 'namespaceAliases', 'dateFormats', 'datePreferences',
116 'datePreferenceMigrationMap', 'defaultDateFormat',
117 'specialPageAliases', 'imageFiles', 'preloadedMessages',
118 'namespaceGenderAliases', 'digitGroupingPattern', 'pluralRules',
119 'pluralRuleTypes', 'compiledPluralRules',
120 ];
121
122 /**
123 * Keys for items which consist of associative arrays, which may be merged
124 * by a fallback sequence.
125 */
126 public static $mergeableMapKeys = [ 'messages', 'namespaceNames',
127 'namespaceAliases', 'dateFormats', 'imageFiles', 'preloadedMessages'
128 ];
129
130 /**
131 * Keys for items which are a numbered array.
132 */
133 public static $mergeableListKeys = [];
134
135 /**
136 * Keys for items which contain an array of arrays of equivalent aliases
137 * for each subitem. The aliases may be merged by a fallback sequence.
138 */
139 public static $mergeableAliasListKeys = [ 'specialPageAliases' ];
140
141 /**
142 * Keys for items which contain an associative array, and may be merged if
143 * the primary value contains the special array key "inherit". That array
144 * key is removed after the first merge.
145 */
146 public static $optionalMergeKeys = [ 'bookstoreList' ];
147
148 /**
149 * Keys for items that are formatted like $magicWords
150 */
151 public static $magicWordKeys = [ 'magicWords' ];
152
153 /**
154 * Keys for items where the subitems are stored in the backend separately.
155 */
156 public static $splitKeys = [ 'messages' ];
157
158 /**
159 * Keys which are loaded automatically by initLanguage()
160 */
161 public static $preloadedKeys = [ 'dateFormats', 'namespaceNames' ];
162
163 /**
164 * Associative array of cached plural rules. The key is the language code,
165 * the value is an array of plural rules for that language.
166 */
167 private $pluralRules = null;
168
169 /**
170 * Associative array of cached plural rule types. The key is the language
171 * code, the value is an array of plural rule types for that language. For
172 * example, $pluralRuleTypes['ar'] = ['zero', 'one', 'two', 'few', 'many'].
173 * The index for each rule type matches the index for the rule in
174 * $pluralRules, thus allowing correlation between the two. The reason we
175 * don't just use the type names as the keys in $pluralRules is because
176 * Language::convertPlural applies the rules based on numeric order (or
177 * explicit numeric parameter), not based on the name of the rule type. For
178 * example, {{plural:count|wordform1|wordform2|wordform3}}, rather than
179 * {{plural:count|one=wordform1|two=wordform2|many=wordform3}}.
180 */
181 private $pluralRuleTypes = null;
182
183 private $mergeableKeys = null;
184
185 /**
186 * For constructor parameters, see the documentation in DefaultSettings.php
187 * for $wgLocalisationCacheConf.
188 *
189 * @param array $conf
190 * @throws MWException
191 */
192 function __construct( $conf ) {
193 global $wgCacheDirectory;
194
195 $this->conf = $conf;
196
197 $directory = !empty( $conf['storeDirectory'] ) ? $conf['storeDirectory'] : $wgCacheDirectory;
198 $storeArg = [];
199 $storeArg['directory'] = $directory;
200
201 if ( !empty( $conf['storeClass'] ) ) {
202 $storeClass = $conf['storeClass'];
203 } else {
204 switch ( $conf['store'] ) {
205 case 'files':
206 case 'file':
207 $storeClass = LCStoreCDB::class;
208 break;
209 case 'db':
210 $storeClass = LCStoreDB::class;
211 $storeArg['server'] = $conf['storeServer'] ?? [];
212 break;
213 case 'array':
214 $storeClass = LCStoreStaticArray::class;
215 break;
216 case 'detect':
217 if ( $directory ) {
218 $storeClass = LCStoreCDB::class;
219 } else {
220 $storeClass = LCStoreDB::class;
221 $storeArg['server'] = $conf['storeServer'] ?? [];
222 }
223 break;
224 default:
225 throw new MWException(
226 'Please set $wgLocalisationCacheConf[\'store\'] to something sensible.'
227 );
228 }
229 }
230
231 wfDebugLog( 'caches', static::class . ": using store $storeClass" );
232
233 $this->store = new $storeClass( $storeArg );
234 foreach ( [ 'manualRecache', 'forceRecache' ] as $var ) {
235 if ( isset( $conf[$var] ) ) {
236 $this->$var = $conf[$var];
237 }
238 }
239 }
240
241 /**
242 * Returns true if the given key is mergeable, that is, if it is an associative
243 * array which can be merged through a fallback sequence.
244 * @param string $key
245 * @return bool
246 */
247 public function isMergeableKey( $key ) {
248 if ( $this->mergeableKeys === null ) {
249 $this->mergeableKeys = array_flip( array_merge(
250 self::$mergeableMapKeys,
251 self::$mergeableListKeys,
252 self::$mergeableAliasListKeys,
253 self::$optionalMergeKeys,
254 self::$magicWordKeys
255 ) );
256 }
257
258 return isset( $this->mergeableKeys[$key] );
259 }
260
261 /**
262 * Get a cache item.
263 *
264 * Warning: this may be slow for split items (messages), since it will
265 * need to fetch all of the subitems from the cache individually.
266 * @param string $code
267 * @param string $key
268 * @return mixed
269 */
270 public function getItem( $code, $key ) {
271 if ( !isset( $this->loadedItems[$code][$key] ) ) {
272 $this->loadItem( $code, $key );
273 }
274
275 if ( $key === 'fallback' && isset( $this->shallowFallbacks[$code] ) ) {
276 return $this->shallowFallbacks[$code];
277 }
278
279 return $this->data[$code][$key];
280 }
281
282 /**
283 * Get a subitem, for instance a single message for a given language.
284 * @param string $code
285 * @param string $key
286 * @param string $subkey
287 * @return mixed|null
288 */
289 public function getSubitem( $code, $key, $subkey ) {
290 if ( !isset( $this->loadedSubitems[$code][$key][$subkey] ) &&
291 !isset( $this->loadedItems[$code][$key] )
292 ) {
293 $this->loadSubitem( $code, $key, $subkey );
294 }
295
296 return $this->data[$code][$key][$subkey] ?? null;
297 }
298
299 /**
300 * Get the list of subitem keys for a given item.
301 *
302 * This is faster than array_keys($lc->getItem(...)) for the items listed in
303 * self::$splitKeys.
304 *
305 * Will return null if the item is not found, or false if the item is not an
306 * array.
307 * @param string $code
308 * @param string $key
309 * @return bool|null|string|string[]
310 */
311 public function getSubitemList( $code, $key ) {
312 if ( in_array( $key, self::$splitKeys ) ) {
313 return $this->getSubitem( $code, 'list', $key );
314 } else {
315 $item = $this->getItem( $code, $key );
316 if ( is_array( $item ) ) {
317 return array_keys( $item );
318 } else {
319 return false;
320 }
321 }
322 }
323
324 /**
325 * Load an item into the cache.
326 * @param string $code
327 * @param string $key
328 */
329 protected function loadItem( $code, $key ) {
330 if ( !isset( $this->initialisedLangs[$code] ) ) {
331 $this->initLanguage( $code );
332 }
333
334 // Check to see if initLanguage() loaded it for us
335 if ( isset( $this->loadedItems[$code][$key] ) ) {
336 return;
337 }
338
339 if ( isset( $this->shallowFallbacks[$code] ) ) {
340 $this->loadItem( $this->shallowFallbacks[$code], $key );
341
342 return;
343 }
344
345 if ( in_array( $key, self::$splitKeys ) ) {
346 $subkeyList = $this->getSubitem( $code, 'list', $key );
347 foreach ( $subkeyList as $subkey ) {
348 if ( isset( $this->data[$code][$key][$subkey] ) ) {
349 continue;
350 }
351 $this->data[$code][$key][$subkey] = $this->getSubitem( $code, $key, $subkey );
352 }
353 } else {
354 $this->data[$code][$key] = $this->store->get( $code, $key );
355 }
356
357 $this->loadedItems[$code][$key] = true;
358 }
359
360 /**
361 * Load a subitem into the cache
362 * @param string $code
363 * @param string $key
364 * @param string $subkey
365 */
366 protected function loadSubitem( $code, $key, $subkey ) {
367 if ( !in_array( $key, self::$splitKeys ) ) {
368 $this->loadItem( $code, $key );
369
370 return;
371 }
372
373 if ( !isset( $this->initialisedLangs[$code] ) ) {
374 $this->initLanguage( $code );
375 }
376
377 // Check to see if initLanguage() loaded it for us
378 if ( isset( $this->loadedItems[$code][$key] ) ||
379 isset( $this->loadedSubitems[$code][$key][$subkey] )
380 ) {
381 return;
382 }
383
384 if ( isset( $this->shallowFallbacks[$code] ) ) {
385 $this->loadSubitem( $this->shallowFallbacks[$code], $key, $subkey );
386
387 return;
388 }
389
390 $value = $this->store->get( $code, "$key:$subkey" );
391 $this->data[$code][$key][$subkey] = $value;
392 $this->loadedSubitems[$code][$key][$subkey] = true;
393 }
394
395 /**
396 * Returns true if the cache identified by $code is missing or expired.
397 *
398 * @param string $code
399 *
400 * @return bool
401 */
402 public function isExpired( $code ) {
403 if ( $this->forceRecache && !isset( $this->recachedLangs[$code] ) ) {
404 wfDebug( __METHOD__ . "($code): forced reload\n" );
405
406 return true;
407 }
408
409 $deps = $this->store->get( $code, 'deps' );
410 $keys = $this->store->get( $code, 'list' );
411 $preload = $this->store->get( $code, 'preload' );
412 // Different keys may expire separately for some stores
413 if ( $deps === null || $keys === null || $preload === null ) {
414 wfDebug( __METHOD__ . "($code): cache missing, need to make one\n" );
415
416 return true;
417 }
418
419 foreach ( $deps as $dep ) {
420 // Because we're unserializing stuff from cache, we
421 // could receive objects of classes that don't exist
422 // anymore (e.g. uninstalled extensions)
423 // When this happens, always expire the cache
424 if ( !$dep instanceof CacheDependency || $dep->isExpired() ) {
425 wfDebug( __METHOD__ . "($code): cache for $code expired due to " .
426 get_class( $dep ) . "\n" );
427
428 return true;
429 }
430 }
431
432 return false;
433 }
434
435 /**
436 * Initialise a language in this object. Rebuild the cache if necessary.
437 * @param string $code
438 * @throws MWException
439 */
440 protected function initLanguage( $code ) {
441 if ( isset( $this->initialisedLangs[$code] ) ) {
442 return;
443 }
444
445 $this->initialisedLangs[$code] = true;
446
447 # If the code is of the wrong form for a Messages*.php file, do a shallow fallback
448 if ( !Language::isValidBuiltInCode( $code ) ) {
449 $this->initShallowFallback( $code, 'en' );
450
451 return;
452 }
453
454 # Recache the data if necessary
455 if ( !$this->manualRecache && $this->isExpired( $code ) ) {
456 if ( Language::isSupportedLanguage( $code ) ) {
457 $this->recache( $code );
458 } elseif ( $code === 'en' ) {
459 throw new MWException( 'MessagesEn.php is missing.' );
460 } else {
461 $this->initShallowFallback( $code, 'en' );
462 }
463
464 return;
465 }
466
467 # Preload some stuff
468 $preload = $this->getItem( $code, 'preload' );
469 if ( $preload === null ) {
470 if ( $this->manualRecache ) {
471 // No Messages*.php file. Do shallow fallback to en.
472 if ( $code === 'en' ) {
473 throw new MWException( 'No localisation cache found for English. ' .
474 'Please run maintenance/rebuildLocalisationCache.php.' );
475 }
476 $this->initShallowFallback( $code, 'en' );
477
478 return;
479 } else {
480 throw new MWException( 'Invalid or missing localisation cache.' );
481 }
482 }
483 $this->data[$code] = $preload;
484 foreach ( $preload as $key => $item ) {
485 if ( in_array( $key, self::$splitKeys ) ) {
486 foreach ( $item as $subkey => $subitem ) {
487 $this->loadedSubitems[$code][$key][$subkey] = true;
488 }
489 } else {
490 $this->loadedItems[$code][$key] = true;
491 }
492 }
493 }
494
495 /**
496 * Create a fallback from one language to another, without creating a
497 * complete persistent cache.
498 * @param string $primaryCode
499 * @param string $fallbackCode
500 */
501 public function initShallowFallback( $primaryCode, $fallbackCode ) {
502 $this->data[$primaryCode] =& $this->data[$fallbackCode];
503 $this->loadedItems[$primaryCode] =& $this->loadedItems[$fallbackCode];
504 $this->loadedSubitems[$primaryCode] =& $this->loadedSubitems[$fallbackCode];
505 $this->shallowFallbacks[$primaryCode] = $fallbackCode;
506 }
507
508 /**
509 * Read a PHP file containing localisation data.
510 * @param string $_fileName
511 * @param string $_fileType
512 * @throws MWException
513 * @return array
514 */
515 protected function readPHPFile( $_fileName, $_fileType ) {
516 // Disable APC caching
517 Wikimedia\suppressWarnings();
518 $_apcEnabled = ini_set( 'apc.cache_by_default', '0' );
519 Wikimedia\restoreWarnings();
520
521 include $_fileName;
522
523 Wikimedia\suppressWarnings();
524 ini_set( 'apc.cache_by_default', $_apcEnabled );
525 Wikimedia\restoreWarnings();
526
527 $data = [];
528 if ( $_fileType == 'core' || $_fileType == 'extension' ) {
529 foreach ( self::$allKeys as $key ) {
530 // Not all keys are set in language files, so
531 // check they exist first
532 if ( isset( $$key ) ) {
533 $data[$key] = $$key;
534 }
535 }
536 } elseif ( $_fileType == 'aliases' ) {
537 if ( isset( $aliases ) ) {
538 $data['aliases'] = $aliases;
539 }
540 } else {
541 throw new MWException( __METHOD__ . ": Invalid file type: $_fileType" );
542 }
543
544 return $data;
545 }
546
547 /**
548 * Read a JSON file containing localisation messages.
549 * @param string $fileName Name of file to read
550 * @throws MWException If there is a syntax error in the JSON file
551 * @return array Array with a 'messages' key, or empty array if the file doesn't exist
552 */
553 public function readJSONFile( $fileName ) {
554 if ( !is_readable( $fileName ) ) {
555 return [];
556 }
557
558 $json = file_get_contents( $fileName );
559 if ( $json === false ) {
560 return [];
561 }
562
563 $data = FormatJson::decode( $json, true );
564 if ( $data === null ) {
565 throw new MWException( __METHOD__ . ": Invalid JSON file: $fileName" );
566 }
567
568 // Remove keys starting with '@', they're reserved for metadata and non-message data
569 foreach ( $data as $key => $unused ) {
570 if ( $key === '' || $key[0] === '@' ) {
571 unset( $data[$key] );
572 }
573 }
574
575 // The JSON format only supports messages, none of the other variables, so wrap the data
576 return [ 'messages' => $data ];
577 }
578
579 /**
580 * Get the compiled plural rules for a given language from the XML files.
581 * @since 1.20
582 * @param string $code
583 * @return array|null
584 */
585 public function getCompiledPluralRules( $code ) {
586 $rules = $this->getPluralRules( $code );
587 if ( $rules === null ) {
588 return null;
589 }
590 try {
591 $compiledRules = Evaluator::compile( $rules );
592 } catch ( CLDRPluralRuleError $e ) {
593 wfDebugLog( 'l10n', $e->getMessage() );
594
595 return [];
596 }
597
598 return $compiledRules;
599 }
600
601 /**
602 * Get the plural rules for a given language from the XML files.
603 * Cached.
604 * @since 1.20
605 * @param string $code
606 * @return array|null
607 */
608 public function getPluralRules( $code ) {
609 if ( $this->pluralRules === null ) {
610 $this->loadPluralFiles();
611 }
612 return $this->pluralRules[$code] ?? null;
613 }
614
615 /**
616 * Get the plural rule types for a given language from the XML files.
617 * Cached.
618 * @since 1.22
619 * @param string $code
620 * @return array|null
621 */
622 public function getPluralRuleTypes( $code ) {
623 if ( $this->pluralRuleTypes === null ) {
624 $this->loadPluralFiles();
625 }
626 return $this->pluralRuleTypes[$code] ?? null;
627 }
628
629 /**
630 * Load the plural XML files.
631 */
632 protected function loadPluralFiles() {
633 global $IP;
634 $cldrPlural = "$IP/languages/data/plurals.xml";
635 $mwPlural = "$IP/languages/data/plurals-mediawiki.xml";
636 // Load CLDR plural rules
637 $this->loadPluralFile( $cldrPlural );
638 if ( file_exists( $mwPlural ) ) {
639 // Override or extend
640 $this->loadPluralFile( $mwPlural );
641 }
642 }
643
644 /**
645 * Load a plural XML file with the given filename, compile the relevant
646 * rules, and save the compiled rules in a process-local cache.
647 *
648 * @param string $fileName
649 * @throws MWException
650 */
651 protected function loadPluralFile( $fileName ) {
652 // Use file_get_contents instead of DOMDocument::load (T58439)
653 $xml = file_get_contents( $fileName );
654 if ( !$xml ) {
655 throw new MWException( "Unable to read plurals file $fileName" );
656 }
657 $doc = new DOMDocument;
658 $doc->loadXML( $xml );
659 $rulesets = $doc->getElementsByTagName( "pluralRules" );
660 foreach ( $rulesets as $ruleset ) {
661 $codes = $ruleset->getAttribute( 'locales' );
662 $rules = [];
663 $ruleTypes = [];
664 $ruleElements = $ruleset->getElementsByTagName( "pluralRule" );
665 foreach ( $ruleElements as $elt ) {
666 $ruleType = $elt->getAttribute( 'count' );
667 if ( $ruleType === 'other' ) {
668 // Don't record "other" rules, which have an empty condition
669 continue;
670 }
671 $rules[] = $elt->nodeValue;
672 $ruleTypes[] = $ruleType;
673 }
674 foreach ( explode( ' ', $codes ) as $code ) {
675 $this->pluralRules[$code] = $rules;
676 $this->pluralRuleTypes[$code] = $ruleTypes;
677 }
678 }
679 }
680
681 /**
682 * Read the data from the source files for a given language, and register
683 * the relevant dependencies in the $deps array. If the localisation
684 * exists, the data array is returned, otherwise false is returned.
685 *
686 * @param string $code
687 * @param array &$deps
688 * @return array
689 */
690 protected function readSourceFilesAndRegisterDeps( $code, &$deps ) {
691 global $IP;
692
693 // This reads in the PHP i18n file with non-messages l10n data
694 $fileName = Language::getMessagesFileName( $code );
695 if ( !file_exists( $fileName ) ) {
696 $data = [];
697 } else {
698 $deps[] = new FileDependency( $fileName );
699 $data = $this->readPHPFile( $fileName, 'core' );
700 }
701
702 # Load CLDR plural rules for JavaScript
703 $data['pluralRules'] = $this->getPluralRules( $code );
704 # And for PHP
705 $data['compiledPluralRules'] = $this->getCompiledPluralRules( $code );
706 # Load plural rule types
707 $data['pluralRuleTypes'] = $this->getPluralRuleTypes( $code );
708
709 $deps['plurals'] = new FileDependency( "$IP/languages/data/plurals.xml" );
710 $deps['plurals-mw'] = new FileDependency( "$IP/languages/data/plurals-mediawiki.xml" );
711
712 return $data;
713 }
714
715 /**
716 * Merge two localisation values, a primary and a fallback, overwriting the
717 * primary value in place.
718 * @param string $key
719 * @param mixed &$value
720 * @param mixed $fallbackValue
721 */
722 protected function mergeItem( $key, &$value, $fallbackValue ) {
723 if ( !is_null( $value ) ) {
724 if ( !is_null( $fallbackValue ) ) {
725 if ( in_array( $key, self::$mergeableMapKeys ) ) {
726 $value = $value + $fallbackValue;
727 } elseif ( in_array( $key, self::$mergeableListKeys ) ) {
728 $value = array_unique( array_merge( $fallbackValue, $value ) );
729 } elseif ( in_array( $key, self::$mergeableAliasListKeys ) ) {
730 $value = array_merge_recursive( $value, $fallbackValue );
731 } elseif ( in_array( $key, self::$optionalMergeKeys ) ) {
732 if ( !empty( $value['inherit'] ) ) {
733 $value = array_merge( $fallbackValue, $value );
734 }
735
736 if ( isset( $value['inherit'] ) ) {
737 unset( $value['inherit'] );
738 }
739 } elseif ( in_array( $key, self::$magicWordKeys ) ) {
740 $this->mergeMagicWords( $value, $fallbackValue );
741 }
742 }
743 } else {
744 $value = $fallbackValue;
745 }
746 }
747
748 /**
749 * @param mixed &$value
750 * @param mixed $fallbackValue
751 */
752 protected function mergeMagicWords( &$value, $fallbackValue ) {
753 foreach ( $fallbackValue as $magicName => $fallbackInfo ) {
754 if ( !isset( $value[$magicName] ) ) {
755 $value[$magicName] = $fallbackInfo;
756 } else {
757 $oldSynonyms = array_slice( $fallbackInfo, 1 );
758 $newSynonyms = array_slice( $value[$magicName], 1 );
759 $synonyms = array_values( array_unique( array_merge(
760 $newSynonyms, $oldSynonyms ) ) );
761 $value[$magicName] = array_merge( [ $fallbackInfo[0] ], $synonyms );
762 }
763 }
764 }
765
766 /**
767 * Given an array mapping language code to localisation value, such as is
768 * found in extension *.i18n.php files, iterate through a fallback sequence
769 * to merge the given data with an existing primary value.
770 *
771 * Returns true if any data from the extension array was used, false
772 * otherwise.
773 * @param array $codeSequence
774 * @param string $key
775 * @param mixed &$value
776 * @param mixed $fallbackValue
777 * @return bool
778 */
779 protected function mergeExtensionItem( $codeSequence, $key, &$value, $fallbackValue ) {
780 $used = false;
781 foreach ( $codeSequence as $code ) {
782 if ( isset( $fallbackValue[$code] ) ) {
783 $this->mergeItem( $key, $value, $fallbackValue[$code] );
784 $used = true;
785 }
786 }
787
788 return $used;
789 }
790
791 /**
792 * Gets the combined list of messages dirs from
793 * core and extensions
794 *
795 * @since 1.25
796 * @return array
797 */
798 public function getMessagesDirs() {
799 global $IP;
800
801 $config = MediaWikiServices::getInstance()->getMainConfig();
802 $messagesDirs = $config->get( 'MessagesDirs' );
803 return [
804 'core' => "$IP/languages/i18n",
805 'exif' => "$IP/languages/i18n/exif",
806 'api' => "$IP/includes/api/i18n",
807 'oojs-ui' => "$IP/resources/lib/ooui/i18n",
808 ] + $messagesDirs;
809 }
810
811 /**
812 * Load localisation data for a given language for both core and extensions
813 * and save it to the persistent cache store and the process cache
814 * @param string $code
815 * @throws MWException
816 */
817 public function recache( $code ) {
818 global $wgExtensionMessagesFiles;
819
820 if ( !$code ) {
821 throw new MWException( "Invalid language code requested" );
822 }
823 $this->recachedLangs[$code] = true;
824
825 # Initial values
826 $initialData = array_fill_keys( self::$allKeys, null );
827 $coreData = $initialData;
828 $deps = [];
829
830 # Load the primary localisation from the source file
831 $data = $this->readSourceFilesAndRegisterDeps( $code, $deps );
832 if ( $data === false ) {
833 wfDebug( __METHOD__ . ": no localisation file for $code, using fallback to en\n" );
834 $coreData['fallback'] = 'en';
835 } else {
836 wfDebug( __METHOD__ . ": got localisation for $code from source\n" );
837
838 # Merge primary localisation
839 foreach ( $data as $key => $value ) {
840 $this->mergeItem( $key, $coreData[$key], $value );
841 }
842 }
843
844 # Fill in the fallback if it's not there already
845 if ( ( is_null( $coreData['fallback'] ) || $coreData['fallback'] === false ) && $code === 'en' ) {
846 $coreData['fallback'] = false;
847 $coreData['originalFallbackSequence'] = $coreData['fallbackSequence'] = [];
848 } else {
849 if ( !is_null( $coreData['fallback'] ) ) {
850 $coreData['fallbackSequence'] = array_map( 'trim', explode( ',', $coreData['fallback'] ) );
851 } else {
852 $coreData['fallbackSequence'] = [];
853 }
854 $len = count( $coreData['fallbackSequence'] );
855
856 # Before we add the 'en' fallback for messages, keep a copy of
857 # the original fallback sequence
858 $coreData['originalFallbackSequence'] = $coreData['fallbackSequence'];
859
860 # Ensure that the sequence ends at 'en' for messages
861 if ( !$len || $coreData['fallbackSequence'][$len - 1] !== 'en' ) {
862 $coreData['fallbackSequence'][] = 'en';
863 }
864 }
865
866 $codeSequence = array_merge( [ $code ], $coreData['fallbackSequence'] );
867 $messageDirs = $this->getMessagesDirs();
868
869 # Load non-JSON localisation data for extensions
870 $extensionData = array_fill_keys( $codeSequence, $initialData );
871 foreach ( $wgExtensionMessagesFiles as $extension => $fileName ) {
872 if ( isset( $messageDirs[$extension] ) ) {
873 # This extension has JSON message data; skip the PHP shim
874 continue;
875 }
876
877 $data = $this->readPHPFile( $fileName, 'extension' );
878 $used = false;
879
880 foreach ( $data as $key => $item ) {
881 foreach ( $codeSequence as $csCode ) {
882 if ( isset( $item[$csCode] ) ) {
883 $this->mergeItem( $key, $extensionData[$csCode][$key], $item[$csCode] );
884 $used = true;
885 }
886 }
887 }
888
889 if ( $used ) {
890 $deps[] = new FileDependency( $fileName );
891 }
892 }
893
894 # Load the localisation data for each fallback, then merge it into the full array
895 $allData = $initialData;
896 foreach ( $codeSequence as $csCode ) {
897 $csData = $initialData;
898
899 # Load core messages and the extension localisations.
900 foreach ( $messageDirs as $dirs ) {
901 foreach ( (array)$dirs as $dir ) {
902 $fileName = "$dir/$csCode.json";
903 $data = $this->readJSONFile( $fileName );
904
905 foreach ( $data as $key => $item ) {
906 $this->mergeItem( $key, $csData[$key], $item );
907 }
908
909 $deps[] = new FileDependency( $fileName );
910 }
911 }
912
913 # Merge non-JSON extension data
914 if ( isset( $extensionData[$csCode] ) ) {
915 foreach ( $extensionData[$csCode] as $key => $item ) {
916 $this->mergeItem( $key, $csData[$key], $item );
917 }
918 }
919
920 if ( $csCode === $code ) {
921 # Merge core data into extension data
922 foreach ( $coreData as $key => $item ) {
923 $this->mergeItem( $key, $csData[$key], $item );
924 }
925 } else {
926 # Load the secondary localisation from the source file to
927 # avoid infinite cycles on cyclic fallbacks
928 $fbData = $this->readSourceFilesAndRegisterDeps( $csCode, $deps );
929 if ( $fbData !== false ) {
930 # Only merge the keys that make sense to merge
931 foreach ( self::$allKeys as $key ) {
932 if ( !isset( $fbData[$key] ) ) {
933 continue;
934 }
935
936 if ( is_null( $coreData[$key] ) || $this->isMergeableKey( $key ) ) {
937 $this->mergeItem( $key, $csData[$key], $fbData[$key] );
938 }
939 }
940 }
941 }
942
943 # Allow extensions an opportunity to adjust the data for this
944 # fallback
945 Hooks::run( 'LocalisationCacheRecacheFallback', [ $this, $csCode, &$csData ] );
946
947 # Merge the data for this fallback into the final array
948 if ( $csCode === $code ) {
949 $allData = $csData;
950 } else {
951 foreach ( self::$allKeys as $key ) {
952 if ( !isset( $csData[$key] ) ) {
953 continue;
954 }
955
956 if ( is_null( $allData[$key] ) || $this->isMergeableKey( $key ) ) {
957 $this->mergeItem( $key, $allData[$key], $csData[$key] );
958 }
959 }
960 }
961 }
962
963 # Add cache dependencies for any referenced globals
964 $deps['wgExtensionMessagesFiles'] = new GlobalDependency( 'wgExtensionMessagesFiles' );
965 // The 'MessagesDirs' config setting is used in LocalisationCache::getMessagesDirs().
966 // We use the key 'wgMessagesDirs' for historical reasons.
967 $deps['wgMessagesDirs'] = new MainConfigDependency( 'MessagesDirs' );
968 $deps['version'] = new ConstantDependency( 'LocalisationCache::VERSION' );
969
970 # Add dependencies to the cache entry
971 $allData['deps'] = $deps;
972
973 # Replace spaces with underscores in namespace names
974 $allData['namespaceNames'] = str_replace( ' ', '_', $allData['namespaceNames'] );
975
976 # And do the same for special page aliases. $page is an array.
977 foreach ( $allData['specialPageAliases'] as &$page ) {
978 $page = str_replace( ' ', '_', $page );
979 }
980 # Decouple the reference to prevent accidental damage
981 unset( $page );
982
983 # If there were no plural rules, return an empty array
984 if ( $allData['pluralRules'] === null ) {
985 $allData['pluralRules'] = [];
986 }
987 if ( $allData['compiledPluralRules'] === null ) {
988 $allData['compiledPluralRules'] = [];
989 }
990 # If there were no plural rule types, return an empty array
991 if ( $allData['pluralRuleTypes'] === null ) {
992 $allData['pluralRuleTypes'] = [];
993 }
994
995 # Set the list keys
996 $allData['list'] = [];
997 foreach ( self::$splitKeys as $key ) {
998 $allData['list'][$key] = array_keys( $allData[$key] );
999 }
1000 # Run hooks
1001 $purgeBlobs = true;
1002 Hooks::run( 'LocalisationCacheRecache', [ $this, $code, &$allData, &$purgeBlobs ] );
1003
1004 if ( is_null( $allData['namespaceNames'] ) ) {
1005 throw new MWException( __METHOD__ . ': Localisation data failed sanity check! ' .
1006 'Check that your languages/messages/MessagesEn.php file is intact.' );
1007 }
1008
1009 # Set the preload key
1010 $allData['preload'] = $this->buildPreload( $allData );
1011
1012 # Save to the process cache and register the items loaded
1013 $this->data[$code] = $allData;
1014 foreach ( $allData as $key => $item ) {
1015 $this->loadedItems[$code][$key] = true;
1016 }
1017
1018 # Save to the persistent cache
1019 $this->store->startWrite( $code );
1020 foreach ( $allData as $key => $value ) {
1021 if ( in_array( $key, self::$splitKeys ) ) {
1022 foreach ( $value as $subkey => $subvalue ) {
1023 $this->store->set( "$key:$subkey", $subvalue );
1024 }
1025 } else {
1026 $this->store->set( $key, $value );
1027 }
1028 }
1029 $this->store->finishWrite();
1030
1031 # Clear out the MessageBlobStore
1032 # HACK: If using a null (i.e. disabled) storage backend, we
1033 # can't write to the MessageBlobStore either
1034 if ( $purgeBlobs && !$this->store instanceof LCStoreNull ) {
1035 $blobStore = MediaWikiServices::getInstance()->getResourceLoader()->getMessageBlobStore();
1036 $blobStore->clear();
1037 }
1038 }
1039
1040 /**
1041 * Build the preload item from the given pre-cache data.
1042 *
1043 * The preload item will be loaded automatically, improving performance
1044 * for the commonly-requested items it contains.
1045 * @param array $data
1046 * @return array
1047 */
1048 protected function buildPreload( $data ) {
1049 $preload = [ 'messages' => [] ];
1050 foreach ( self::$preloadedKeys as $key ) {
1051 $preload[$key] = $data[$key];
1052 }
1053
1054 foreach ( $data['preloadedMessages'] as $subkey ) {
1055 $subitem = $data['messages'][$subkey] ?? null;
1056 $preload['messages'][$subkey] = $subitem;
1057 }
1058
1059 return $preload;
1060 }
1061
1062 /**
1063 * Unload the data for a given language from the object cache.
1064 * Reduces memory usage.
1065 * @param string $code
1066 */
1067 public function unload( $code ) {
1068 unset( $this->data[$code] );
1069 unset( $this->loadedItems[$code] );
1070 unset( $this->loadedSubitems[$code] );
1071 unset( $this->initialisedLangs[$code] );
1072 unset( $this->shallowFallbacks[$code] );
1073
1074 foreach ( $this->shallowFallbacks as $shallowCode => $fbCode ) {
1075 if ( $fbCode === $code ) {
1076 $this->unload( $shallowCode );
1077 }
1078 }
1079 }
1080
1081 /**
1082 * Unload all data
1083 */
1084 public function unloadAll() {
1085 foreach ( $this->initialisedLangs as $lang => $unused ) {
1086 $this->unload( $lang );
1087 }
1088 }
1089
1090 /**
1091 * Disable the storage backend
1092 */
1093 public function disableBackend() {
1094 $this->store = new LCStoreNull;
1095 $this->manualRecache = false;
1096 }
1097
1098 }