MediaWiki REL1_33
MagicWord.php
Go to the documentation of this file.
1<?php
25
57class MagicWord {
61 public $mId;
62
64 public $mSynonyms;
65
68
70 private $mRegex = '';
71
73 private $mRegexStart = '';
74
76 private $mRegexStartToEnd = '';
77
79 private $mBaseRegex = '';
80
82 private $mVariableRegex = '';
83
86
88 private $mModified = false;
89
91 private $mFound = false;
92
94 private $contLang;
95
108 public function __construct( $id = null, $syn = [], $cs = false, Language $contLang = null ) {
109 $this->mId = $id;
110 $this->mSynonyms = (array)$syn;
111 $this->mCaseSensitive = $cs;
112 $this->contLang = $contLang;
113
114 if ( !$contLang ) {
115 $this->contLang = MediaWikiServices::getInstance()->getContentLanguage();
116 }
117 }
118
127 public static function get( $id ) {
128 wfDeprecated( __METHOD__, '1.32' );
129 return MediaWikiServices::getInstance()->getMagicWordFactory()->get( $id );
130 }
131
138 public static function getVariableIDs() {
139 wfDeprecated( __METHOD__, '1.32' );
140 return MediaWikiServices::getInstance()->getMagicWordFactory()->getVariableIDs();
141 }
142
148 public static function getSubstIDs() {
149 wfDeprecated( __METHOD__, '1.32' );
150 return MediaWikiServices::getInstance()->getMagicWordFactory()->getSubstIDs();
151 }
152
160 public static function getCacheTTL( $id ) {
161 wfDeprecated( __METHOD__, '1.32' );
162 return MediaWikiServices::getInstance()->getMagicWordFactory()->getCacheTTL( $id );
163 }
164
171 public static function getDoubleUnderscoreArray() {
172 wfDeprecated( __METHOD__, '1.32' );
173 return MediaWikiServices::getInstance()->getMagicWordFactory()->getDoubleUnderscoreArray();
174 }
175
182 public function load( $id ) {
183 $this->mId = $id;
184 $this->contLang->getMagic( $this );
185 if ( !$this->mSynonyms ) {
186 $this->mSynonyms = [ 'brionmademeputthishere' ];
187 throw new MWException( "Error: invalid magic word '$id'" );
188 }
189 }
190
195 public function initRegex() {
196 // Sort the synonyms by length, descending, so that the longest synonym
197 // matches in precedence to the shortest
198 $synonyms = $this->mSynonyms;
199 usort( $synonyms, [ $this, 'compareStringLength' ] );
200
201 $escSyn = [];
202 foreach ( $synonyms as $synonym ) {
203 // In case a magic word contains /, like that's going to happen;)
204 $escSyn[] = preg_quote( $synonym, '/' );
205 }
206 $this->mBaseRegex = implode( '|', $escSyn );
207
208 $case = $this->mCaseSensitive ? '' : 'iu';
209 $this->mRegex = "/{$this->mBaseRegex}/{$case}";
210 $this->mRegexStart = "/^(?:{$this->mBaseRegex})/{$case}";
211 $this->mRegexStartToEnd = "/^(?:{$this->mBaseRegex})$/{$case}";
212 $this->mVariableRegex = str_replace( "\\$1", "(.*?)", $this->mRegex );
213 $this->mVariableStartToEndRegex = str_replace( "\\$1", "(.*?)",
214 "/^(?:{$this->mBaseRegex})$/{$case}" );
215 }
216
227 public function compareStringLength( $s1, $s2 ) {
228 $l1 = strlen( $s1 );
229 $l2 = strlen( $s2 );
230 return $l2 <=> $l1; // descending
231 }
232
238 public function getRegex() {
239 if ( $this->mRegex == '' ) {
240 $this->initRegex();
241 }
242 return $this->mRegex;
243 }
244
252 public function getRegexCase() {
253 if ( $this->mRegex === '' ) {
254 $this->initRegex();
255 }
256
257 return $this->mCaseSensitive ? '' : 'iu';
258 }
259
265 public function getRegexStart() {
266 if ( $this->mRegex == '' ) {
267 $this->initRegex();
268 }
269 return $this->mRegexStart;
270 }
271
278 public function getRegexStartToEnd() {
279 if ( $this->mRegexStartToEnd == '' ) {
280 $this->initRegex();
281 }
283 }
284
290 public function getBaseRegex() {
291 if ( $this->mRegex == '' ) {
292 $this->initRegex();
293 }
294 return $this->mBaseRegex;
295 }
296
304 public function match( $text ) {
305 return (bool)preg_match( $this->getRegex(), $text );
306 }
307
315 public function matchStart( $text ) {
316 return (bool)preg_match( $this->getRegexStart(), $text );
317 }
318
327 public function matchStartToEnd( $text ) {
328 return (bool)preg_match( $this->getRegexStartToEnd(), $text );
329 }
330
341 public function matchVariableStartToEnd( $text ) {
342 $matches = [];
343 $matchcount = preg_match( $this->getVariableStartToEndRegex(), $text, $matches );
344 if ( $matchcount == 0 ) {
345 return null;
346 } else {
347 # multiple matched parts (variable match); some will be empty because of
348 # synonyms. The variable will be the second non-empty one so remove any
349 # blank elements and re-sort the indices.
350 # See also T8526
351
353
354 if ( count( $matches ) == 1 ) {
355 return $matches[0];
356 } else {
357 return $matches[1];
358 }
359 }
360 }
361
370 public function matchAndRemove( &$text ) {
371 $this->mFound = false;
372 $text = preg_replace_callback(
373 $this->getRegex(),
374 [ $this, 'pregRemoveAndRecord' ],
375 $text
376 );
377
378 return $this->mFound;
379 }
380
385 public function matchStartAndRemove( &$text ) {
386 $this->mFound = false;
387 $text = preg_replace_callback(
388 $this->getRegexStart(),
389 [ $this, 'pregRemoveAndRecord' ],
390 $text
391 );
392
393 return $this->mFound;
394 }
395
401 public function pregRemoveAndRecord() {
402 $this->mFound = true;
403 return '';
404 }
405
415 public function replace( $replacement, $subject, $limit = -1 ) {
417 $this->getRegex(),
418 StringUtils::escapeRegexReplacement( $replacement ),
419 $subject,
420 $limit
421 );
422 $this->mModified = $res !== $subject;
423 return $res;
424 }
425
436 public function substituteCallback( $text, $callback ) {
437 $res = preg_replace_callback( $this->getVariableRegex(), $callback, $text );
438 $this->mModified = $res !== $text;
439 return $res;
440 }
441
447 public function getVariableRegex() {
448 if ( $this->mVariableRegex == '' ) {
449 $this->initRegex();
450 }
452 }
453
459 public function getVariableStartToEndRegex() {
460 if ( $this->mVariableStartToEndRegex == '' ) {
461 $this->initRegex();
462 }
464 }
465
473 public function getSynonym( $i ) {
474 return $this->mSynonyms[$i];
475 }
476
480 public function getSynonyms() {
481 return $this->mSynonyms;
482 }
483
490 public function getWasModified() {
491 return $this->mModified;
492 }
493
501 public function addToArray( &$array, $value ) {
502 foreach ( $this->mSynonyms as $syn ) {
503 $array[$this->contLang->lc( $syn )] = $value;
504 }
505 }
506
510 public function isCaseSensitive() {
512 }
513
517 public function getId() {
518 return $this->mId;
519 }
520}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Internationalisation code.
Definition Language.php:36
MediaWiki exception.
This class encapsulates "magic words" such as "#redirect", NOTOC, etc.
Definition MagicWord.php:57
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.
getWasModified()
Returns true if the last call to replace() or substituteCallback() returned a modified text,...
string $mBaseRegex
Definition MagicWord.php:79
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.
__construct( $id=null, $syn=[], $cs=false, Language $contLang=null)
#-
bool $mCaseSensitive
Definition MagicWord.php:67
bool $mModified
Definition MagicWord.php:88
isCaseSensitive()
string $mRegexStartToEnd
Definition MagicWord.php:76
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:70
getBaseRegex()
regex without the slashes and what not
string $mVariableRegex
Definition MagicWord.php:82
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.
string[] $mSynonyms
Definition MagicWord.php:64
matchStart( $text)
Returns true if the text starts with the word.
getSynonym( $i)
Accesses the synonym list directly.
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,...
getRegexCase()
Gets the regexp case modifier to use, i.e.
bool $mFound
Definition MagicWord.php:91
Language $contLang
Definition MagicWord.php:94
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:85
string $mId
#-
Definition MagicWord.php:61
static getDoubleUnderscoreArray()
Get a MagicWordArray of double-underscore entities.
match( $text)
Returns true if the text contains the word.
static getSubstIDs()
Get an array of parser substitution modifier IDs.
pregRemoveAndRecord()
Used in matchAndRemove()
string $mRegexStart
Definition MagicWord.php:73
matchAndRemove(&$text)
Returns true if the text matches the word, and alters the input string, removing all instances of the...
MediaWikiServices is the service locator for the application scope of MediaWiki.
$res
Definition database.txt:21
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))