MediaWiki REL1_30
Finder.php
Go to the documentation of this file.
1<?php
8namespace LocalisationUpdate;
9
14class Finder {
20 public function __construct( $php, $json, $core ) {
21 $this->php = $php;
22 $this->json = $json;
23 $this->core = $core;
24 }
25
29 public function getComponents() {
30 $components = [];
31
32 // For older versions of Mediawiki, pull json updates even though its still using php
33 if ( !isset( $this->json['core'] ) ) {
34 $components['core'] = [
35 'repo' => 'mediawiki',
36 'orig' => "file://{$this->core}/languages/messages/Messages*.php",
37 'path' => 'languages/messages/i18n/*.json',
38 ];
39 }
40
41 foreach ( $this->json as $key => $value ) {
42 // Json should take priority if both exist
43 unset( $this->php[$key] );
44
45 foreach ( (array)$value as $subkey => $subvalue ) {
46 // Mediawiki core files
47 $matches = [];
48 if ( preg_match( '~/(?P<path>(?:includes|languages|resources)/.*)$~', $subvalue, $matches ) ) {
49 $components["$key-$subkey"] = [
50 'repo' => 'mediawiki',
51 'orig' => "file://$value/*.json",
52 'path' => "{$matches['path']}/*.json",
53 ];
54 continue;
55 }
56
57 $item = $this->getItem( 'extensions', $subvalue );
58 if ( $item !== null ) {
59 $item['repo'] = 'extension';
60 $components["$key-$subkey"] = $item;
61 continue;
62 }
63
64 $item = $this->getItem( 'skins', $subvalue );
65 if ( $item !== null ) {
66 $item['repo'] = 'skin';
67 $components["$key-$subkey"] = $item;
68 continue;
69 }
70 }
71 }
72
73 foreach ( $this->php as $key => $value ) {
74 $matches = [];
75 $ok = preg_match( '~/extensions/(?P<name>[^/]+)/(?P<path>.*\.i18n\.php)$~', $value, $matches );
76 if ( !$ok ) {
77 continue;
78 }
79
80 $components[$key] = [
81 'repo' => 'extension',
82 'name' => $matches['name'],
83 'orig' => "file://$value",
84 'path' => $matches['path'],
85 ];
86 }
87
88 return $components;
89 }
90
96 private function getItem( $dir, $subvalue ) {
97 // This ignores magic, alias etc. non message files
98 $matches = [];
99 if ( !preg_match( "~/$dir/(?P<name>[^/]+)/(?P<path>.*)$~", $subvalue, $matches ) ) {
100 return null;
101 }
102
103 return [
104 'name' => $matches['name'],
105 'orig' => "file://$subvalue/*.json",
106 'path' => "{$matches['path']}/*.json",
107 ];
108 }
109}
$dir
Definition Autoload.php:8
The package json
Definition README.txt:1
Interface for classes which provide list of components, which should be included for l10n updates.
Definition Finder.php:14
__construct( $php, $json, $core)
Definition Finder.php:20
getItem( $dir, $subvalue)
Definition Finder.php:96
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext such as when responding to a resource loader request or generating HTML output included in core
Definition hooks.txt:2788