MediaWiki REL1_30
MagicWord.php
Go to the documentation of this file.
1<?php
59class MagicWord {
63 public $mId;
64
66 public $mSynonyms;
67
70
72 private $mRegex = '';
73
75 private $mRegexStart = '';
76
78 private $mRegexStartToEnd = '';
79
81 private $mBaseRegex = '';
82
84 private $mVariableRegex = '';
85
88
90 private $mModified = false;
91
93 private $mFound = false;
94
95 public static $mVariableIDsInitialised = false;
96 public static $mVariableIDs = [
97 '!',
98 'currentmonth',
99 'currentmonth1',
100 'currentmonthname',
101 'currentmonthnamegen',
102 'currentmonthabbrev',
103 'currentday',
104 'currentday2',
105 'currentdayname',
106 'currentyear',
107 'currenttime',
108 'currenthour',
109 'localmonth',
110 'localmonth1',
111 'localmonthname',
112 'localmonthnamegen',
113 'localmonthabbrev',
114 'localday',
115 'localday2',
116 'localdayname',
117 'localyear',
118 'localtime',
119 'localhour',
120 'numberofarticles',
121 'numberoffiles',
122 'numberofedits',
123 'articlepath',
124 'pageid',
125 'sitename',
126 'server',
127 'servername',
128 'scriptpath',
129 'stylepath',
130 'pagename',
131 'pagenamee',
132 'fullpagename',
133 'fullpagenamee',
134 'namespace',
135 'namespacee',
136 'namespacenumber',
137 'currentweek',
138 'currentdow',
139 'localweek',
140 'localdow',
141 'revisionid',
142 'revisionday',
143 'revisionday2',
144 'revisionmonth',
145 'revisionmonth1',
146 'revisionyear',
147 'revisiontimestamp',
148 'revisionuser',
149 'revisionsize',
150 'subpagename',
151 'subpagenamee',
152 'talkspace',
153 'talkspacee',
154 'subjectspace',
155 'subjectspacee',
156 'talkpagename',
157 'talkpagenamee',
158 'subjectpagename',
159 'subjectpagenamee',
160 'numberofusers',
161 'numberofactiveusers',
162 'numberofpages',
163 'currentversion',
164 'rootpagename',
165 'rootpagenamee',
166 'basepagename',
167 'basepagenamee',
168 'currenttimestamp',
169 'localtimestamp',
170 'directionmark',
171 'contentlanguage',
172 'pagelanguage',
173 'numberofadmins',
174 'cascadingsources',
175 ];
176
177 /* Array of caching hints for ParserCache */
178 public static $mCacheTTLs = [
179 'currentmonth' => 86400,
180 'currentmonth1' => 86400,
181 'currentmonthname' => 86400,
182 'currentmonthnamegen' => 86400,
183 'currentmonthabbrev' => 86400,
184 'currentday' => 3600,
185 'currentday2' => 3600,
186 'currentdayname' => 3600,
187 'currentyear' => 86400,
188 'currenttime' => 3600,
189 'currenthour' => 3600,
190 'localmonth' => 86400,
191 'localmonth1' => 86400,
192 'localmonthname' => 86400,
193 'localmonthnamegen' => 86400,
194 'localmonthabbrev' => 86400,
195 'localday' => 3600,
196 'localday2' => 3600,
197 'localdayname' => 3600,
198 'localyear' => 86400,
199 'localtime' => 3600,
200 'localhour' => 3600,
201 'numberofarticles' => 3600,
202 'numberoffiles' => 3600,
203 'numberofedits' => 3600,
204 'currentweek' => 3600,
205 'currentdow' => 3600,
206 'localweek' => 3600,
207 'localdow' => 3600,
208 'numberofusers' => 3600,
209 'numberofactiveusers' => 3600,
210 'numberofpages' => 3600,
211 'currentversion' => 86400,
212 'currenttimestamp' => 3600,
213 'localtimestamp' => 3600,
214 'pagesinnamespace' => 3600,
215 'numberofadmins' => 3600,
216 'numberingroup' => 3600,
217 ];
218
219 public static $mDoubleUnderscoreIDs = [
220 'notoc',
221 'nogallery',
222 'forcetoc',
223 'toc',
224 'noeditsection',
225 'newsectionlink',
226 'nonewsectionlink',
227 'hiddencat',
228 'index',
229 'noindex',
230 'staticredirect',
231 'notitleconvert',
232 'nocontentconvert',
233 ];
234
235 public static $mSubstIDs = [
236 'subst',
237 'safesubst',
238 ];
239
240 public static $mObjects = [];
241 public static $mDoubleUnderscoreArray = null;
242
245 public function __construct( $id = 0, $syn = [], $cs = false ) {
246 $this->mId = $id;
247 $this->mSynonyms = (array)$syn;
248 $this->mCaseSensitive = $cs;
249 }
250
258 public static function &get( $id ) {
259 if ( !isset( self::$mObjects[$id] ) ) {
260 $mw = new MagicWord();
261 $mw->load( $id );
262 self::$mObjects[$id] = $mw;
263 }
264 return self::$mObjects[$id];
265 }
266
272 public static function getVariableIDs() {
273 if ( !self::$mVariableIDsInitialised ) {
274 # Get variable IDs
275 Hooks::run( 'MagicWordwgVariableIDs', [ &self::$mVariableIDs ] );
276 self::$mVariableIDsInitialised = true;
277 }
278 return self::$mVariableIDs;
279 }
280
285 public static function getSubstIDs() {
286 return self::$mSubstIDs;
287 }
288
295 public static function getCacheTTL( $id ) {
296 if ( array_key_exists( $id, self::$mCacheTTLs ) ) {
297 return self::$mCacheTTLs[$id];
298 } else {
299 return -1;
300 }
301 }
302
308 public static function getDoubleUnderscoreArray() {
309 if ( is_null( self::$mDoubleUnderscoreArray ) ) {
310 Hooks::run( 'GetDoubleUnderscoreIDs', [ &self::$mDoubleUnderscoreIDs ] );
311 self::$mDoubleUnderscoreArray = new MagicWordArray( self::$mDoubleUnderscoreIDs );
312 }
314 }
315
320 public static function clearCache() {
321 self::$mObjects = [];
322 }
323
330 public function load( $id ) {
332 $this->mId = $id;
333 $wgContLang->getMagic( $this );
334 if ( !$this->mSynonyms ) {
335 $this->mSynonyms = [ 'brionmademeputthishere' ];
336 throw new MWException( "Error: invalid magic word '$id'" );
337 }
338 }
339
344 public function initRegex() {
345 // Sort the synonyms by length, descending, so that the longest synonym
346 // matches in precedence to the shortest
347 $synonyms = $this->mSynonyms;
348 usort( $synonyms, [ $this, 'compareStringLength' ] );
349
350 $escSyn = [];
351 foreach ( $synonyms as $synonym ) {
352 // In case a magic word contains /, like that's going to happen;)
353 $escSyn[] = preg_quote( $synonym, '/' );
354 }
355 $this->mBaseRegex = implode( '|', $escSyn );
356
357 $case = $this->mCaseSensitive ? '' : 'iu';
358 $this->mRegex = "/{$this->mBaseRegex}/{$case}";
359 $this->mRegexStart = "/^(?:{$this->mBaseRegex})/{$case}";
360 $this->mRegexStartToEnd = "/^(?:{$this->mBaseRegex})$/{$case}";
361 $this->mVariableRegex = str_replace( "\\$1", "(.*?)", $this->mRegex );
362 $this->mVariableStartToEndRegex = str_replace( "\\$1", "(.*?)",
363 "/^(?:{$this->mBaseRegex})$/{$case}" );
364 }
365
376 public function compareStringLength( $s1, $s2 ) {
377 $l1 = strlen( $s1 );
378 $l2 = strlen( $s2 );
379 if ( $l1 < $l2 ) {
380 return 1;
381 } elseif ( $l1 > $l2 ) {
382 return -1;
383 } else {
384 return 0;
385 }
386 }
387
393 public function getRegex() {
394 if ( $this->mRegex == '' ) {
395 $this->initRegex();
396 }
397 return $this->mRegex;
398 }
399
407 public function getRegexCase() {
408 if ( $this->mRegex === '' ) {
409 $this->initRegex();
410 }
411
412 return $this->mCaseSensitive ? '' : 'iu';
413 }
414
420 public function getRegexStart() {
421 if ( $this->mRegex == '' ) {
422 $this->initRegex();
423 }
424 return $this->mRegexStart;
425 }
426
433 public function getRegexStartToEnd() {
434 if ( $this->mRegexStartToEnd == '' ) {
435 $this->initRegex();
436 }
438 }
439
445 public function getBaseRegex() {
446 if ( $this->mRegex == '' ) {
447 $this->initRegex();
448 }
449 return $this->mBaseRegex;
450 }
451
459 public function match( $text ) {
460 return (bool)preg_match( $this->getRegex(), $text );
461 }
462
470 public function matchStart( $text ) {
471 return (bool)preg_match( $this->getRegexStart(), $text );
472 }
473
482 public function matchStartToEnd( $text ) {
483 return (bool)preg_match( $this->getRegexStartToEnd(), $text );
484 }
485
496 public function matchVariableStartToEnd( $text ) {
497 $matches = [];
498 $matchcount = preg_match( $this->getVariableStartToEndRegex(), $text, $matches );
499 if ( $matchcount == 0 ) {
500 return null;
501 } else {
502 # multiple matched parts (variable match); some will be empty because of
503 # synonyms. The variable will be the second non-empty one so remove any
504 # blank elements and re-sort the indices.
505 # See also T8526
506
507 $matches = array_values( array_filter( $matches ) );
508
509 if ( count( $matches ) == 1 ) {
510 return $matches[0];
511 } else {
512 return $matches[1];
513 }
514 }
515 }
516
525 public function matchAndRemove( &$text ) {
526 $this->mFound = false;
527 $text = preg_replace_callback(
528 $this->getRegex(),
529 [ $this, 'pregRemoveAndRecord' ],
530 $text
531 );
532
533 return $this->mFound;
534 }
535
540 public function matchStartAndRemove( &$text ) {
541 $this->mFound = false;
542 $text = preg_replace_callback(
543 $this->getRegexStart(),
544 [ $this, 'pregRemoveAndRecord' ],
545 $text
546 );
547
548 return $this->mFound;
549 }
550
556 public function pregRemoveAndRecord() {
557 $this->mFound = true;
558 return '';
559 }
560
570 public function replace( $replacement, $subject, $limit = -1 ) {
571 $res = preg_replace(
572 $this->getRegex(),
574 $subject,
575 $limit
576 );
577 $this->mModified = $res !== $subject;
578 return $res;
579 }
580
591 public function substituteCallback( $text, $callback ) {
592 $res = preg_replace_callback( $this->getVariableRegex(), $callback, $text );
593 $this->mModified = $res !== $text;
594 return $res;
595 }
596
602 public function getVariableRegex() {
603 if ( $this->mVariableRegex == '' ) {
604 $this->initRegex();
605 }
607 }
608
614 public function getVariableStartToEndRegex() {
615 if ( $this->mVariableStartToEndRegex == '' ) {
616 $this->initRegex();
617 }
619 }
620
628 public function getSynonym( $i ) {
629 return $this->mSynonyms[$i];
630 }
631
635 public function getSynonyms() {
636 return $this->mSynonyms;
637 }
638
645 public function getWasModified() {
646 return $this->mModified;
647 }
648
656 public function addToArray( &$array, $value ) {
658 foreach ( $this->mSynonyms as $syn ) {
659 $array[$wgContLang->lc( $syn )] = $value;
660 }
661 }
662
666 public function isCaseSensitive() {
668 }
669
673 public function getId() {
674 return $this->mId;
675 }
676}
MediaWiki exception.
Class for handling an array of magic words.
This class encapsulates "magic words" such as "#redirect", NOTOC, etc.
Definition MagicWord.php:59
getVariableRegex()
Matches the word, where $1 is a wildcard.
compareStringLength( $s1, $s2)
A comparison function that returns -1, 0 or 1 depending on whether the first string is longer,...
initRegex()
Preliminary initialisation.
static $mDoubleUnderscoreIDs
getWasModified()
Returns true if the last call to replace() or substituteCallback() returned a modified text,...
string $mBaseRegex
Definition MagicWord.php:81
replace( $replacement, $subject, $limit=-1)
Replaces the word with something else.
getVariableStartToEndRegex()
Matches the entire string, where $1 is a wildcard.
getRegexStartToEnd()
Gets a regex matching the word from start to end of a string.
static $mVariableIDsInitialised
Definition MagicWord.php:95
static clearCache()
Clear the self::$mObjects variable For use in parser tests.
bool $mCaseSensitive
Definition MagicWord.php:69
bool $mModified
Definition MagicWord.php:90
isCaseSensitive()
string $mRegexStartToEnd
Definition MagicWord.php:78
substituteCallback( $text, $callback)
Variable handling: {{SUBST:xxx}} style words Calls back a function to determine what to replace xxx w...
string $mRegex
Definition MagicWord.php:72
getBaseRegex()
regex without the slashes and what not
string $mVariableRegex
Definition MagicWord.php:84
static getCacheTTL( $id)
Allow external reads of TTL array.
matchStartAndRemove(&$text)
static getVariableIDs()
Get an array of parser variable IDs.
getRegexStart()
Gets a regex matching the word, if it is at the string start.
static $mCacheTTLs
matchStart( $text)
Returns true if the text starts with the word.
int $mId
#-
Definition MagicWord.php:63
static $mVariableIDs
Definition MagicWord.php:96
getSynonym( $i)
Accesses the synonym list directly.
static $mObjects
array $mSynonyms
Definition MagicWord.php:66
getRegex()
Gets a regex representing matching the word.
load( $id)
Initialises this object with an ID.
matchVariableStartToEnd( $text)
Returns NULL if there's no match, the value of $1 otherwise The return code is the matched string,...
static $mSubstIDs
getRegexCase()
Gets the regexp case modifier to use, i.e.
bool $mFound
Definition MagicWord.php:93
addToArray(&$array, $value)
Adds all the synonyms of this MagicWord to an array, to allow quick lookup in a list of magic words.
matchStartToEnd( $text)
Returns true if the text matched the word.
string $mVariableStartToEndRegex
Definition MagicWord.php:87
static getDoubleUnderscoreArray()
Get a MagicWordArray of double-underscore entities.
match( $text)
Returns true if the text contains the word.
static $mDoubleUnderscoreArray
static getSubstIDs()
Get an array of parser substitution modifier IDs.
__construct( $id=0, $syn=[], $cs=false)
#-
pregRemoveAndRecord()
Used in matchAndRemove()
string $mRegexStart
Definition MagicWord.php:75
matchAndRemove(&$text)
Returns true if the text matches the word, and alters the input string, removing all instances of the...
static escapeRegexReplacement( $string)
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter.
$res
Definition database.txt:21
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
the array() calling protocol came about after MediaWiki 1.4rc1.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37