MediaWiki REL1_32
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 return MediaWikiServices::getInstance()->getMagicWordFactory()->get( $id );
129 }
130
137 public static function getVariableIDs() {
138 return MediaWikiServices::getInstance()->getMagicWordFactory()->getVariableIDs();
139 }
140
146 public static function getSubstIDs() {
147 return MediaWikiServices::getInstance()->getMagicWordFactory()->getSubstIDs();
148 }
149
157 public static function getCacheTTL( $id ) {
158 return MediaWikiServices::getInstance()->getMagicWordFactory()->getCacheTTL( $id );
159 }
160
167 public static function getDoubleUnderscoreArray() {
168 return MediaWikiServices::getInstance()->getMagicWordFactory()->getDoubleUnderscoreArray();
169 }
170
177 public function load( $id ) {
178 $this->mId = $id;
179 $this->contLang->getMagic( $this );
180 if ( !$this->mSynonyms ) {
181 $this->mSynonyms = [ 'brionmademeputthishere' ];
182 throw new MWException( "Error: invalid magic word '$id'" );
183 }
184 }
185
190 public function initRegex() {
191 // Sort the synonyms by length, descending, so that the longest synonym
192 // matches in precedence to the shortest
193 $synonyms = $this->mSynonyms;
194 usort( $synonyms, [ $this, 'compareStringLength' ] );
195
196 $escSyn = [];
197 foreach ( $synonyms as $synonym ) {
198 // In case a magic word contains /, like that's going to happen;)
199 $escSyn[] = preg_quote( $synonym, '/' );
200 }
201 $this->mBaseRegex = implode( '|', $escSyn );
202
203 $case = $this->mCaseSensitive ? '' : 'iu';
204 $this->mRegex = "/{$this->mBaseRegex}/{$case}";
205 $this->mRegexStart = "/^(?:{$this->mBaseRegex})/{$case}";
206 $this->mRegexStartToEnd = "/^(?:{$this->mBaseRegex})$/{$case}";
207 $this->mVariableRegex = str_replace( "\\$1", "(.*?)", $this->mRegex );
208 $this->mVariableStartToEndRegex = str_replace( "\\$1", "(.*?)",
209 "/^(?:{$this->mBaseRegex})$/{$case}" );
210 }
211
222 public function compareStringLength( $s1, $s2 ) {
223 $l1 = strlen( $s1 );
224 $l2 = strlen( $s2 );
225 return $l2 <=> $l1; // descending
226 }
227
233 public function getRegex() {
234 if ( $this->mRegex == '' ) {
235 $this->initRegex();
236 }
237 return $this->mRegex;
238 }
239
247 public function getRegexCase() {
248 if ( $this->mRegex === '' ) {
249 $this->initRegex();
250 }
251
252 return $this->mCaseSensitive ? '' : 'iu';
253 }
254
260 public function getRegexStart() {
261 if ( $this->mRegex == '' ) {
262 $this->initRegex();
263 }
264 return $this->mRegexStart;
265 }
266
273 public function getRegexStartToEnd() {
274 if ( $this->mRegexStartToEnd == '' ) {
275 $this->initRegex();
276 }
278 }
279
285 public function getBaseRegex() {
286 if ( $this->mRegex == '' ) {
287 $this->initRegex();
288 }
289 return $this->mBaseRegex;
290 }
291
299 public function match( $text ) {
300 return (bool)preg_match( $this->getRegex(), $text );
301 }
302
310 public function matchStart( $text ) {
311 return (bool)preg_match( $this->getRegexStart(), $text );
312 }
313
322 public function matchStartToEnd( $text ) {
323 return (bool)preg_match( $this->getRegexStartToEnd(), $text );
324 }
325
336 public function matchVariableStartToEnd( $text ) {
337 $matches = [];
338 $matchcount = preg_match( $this->getVariableStartToEndRegex(), $text, $matches );
339 if ( $matchcount == 0 ) {
340 return null;
341 } else {
342 # multiple matched parts (variable match); some will be empty because of
343 # synonyms. The variable will be the second non-empty one so remove any
344 # blank elements and re-sort the indices.
345 # See also T8526
346
347 $matches = array_values( array_filter( $matches ) );
348
349 if ( count( $matches ) == 1 ) {
350 return $matches[0];
351 } else {
352 return $matches[1];
353 }
354 }
355 }
356
365 public function matchAndRemove( &$text ) {
366 $this->mFound = false;
367 $text = preg_replace_callback(
368 $this->getRegex(),
369 [ $this, 'pregRemoveAndRecord' ],
370 $text
371 );
372
373 return $this->mFound;
374 }
375
380 public function matchStartAndRemove( &$text ) {
381 $this->mFound = false;
382 $text = preg_replace_callback(
383 $this->getRegexStart(),
384 [ $this, 'pregRemoveAndRecord' ],
385 $text
386 );
387
388 return $this->mFound;
389 }
390
396 public function pregRemoveAndRecord() {
397 $this->mFound = true;
398 return '';
399 }
400
410 public function replace( $replacement, $subject, $limit = -1 ) {
411 $res = preg_replace(
412 $this->getRegex(),
414 $subject,
415 $limit
416 );
417 $this->mModified = $res !== $subject;
418 return $res;
419 }
420
431 public function substituteCallback( $text, $callback ) {
432 $res = preg_replace_callback( $this->getVariableRegex(), $callback, $text );
433 $this->mModified = $res !== $text;
434 return $res;
435 }
436
442 public function getVariableRegex() {
443 if ( $this->mVariableRegex == '' ) {
444 $this->initRegex();
445 }
447 }
448
454 public function getVariableStartToEndRegex() {
455 if ( $this->mVariableStartToEndRegex == '' ) {
456 $this->initRegex();
457 }
459 }
460
468 public function getSynonym( $i ) {
469 return $this->mSynonyms[$i];
470 }
471
475 public function getSynonyms() {
476 return $this->mSynonyms;
477 }
478
485 public function getWasModified() {
486 return $this->mModified;
487 }
488
496 public function addToArray( &$array, $value ) {
497 foreach ( $this->mSynonyms as $syn ) {
498 $array[$this->contLang->lc( $syn )] = $value;
499 }
500 }
501
505 public function isCaseSensitive() {
507 }
508
512 public function getId() {
513 return $this->mId;
514 }
515}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Internationalisation code.
Definition Language.php:35
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.
static escapeRegexReplacement( $string)
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter.
$res
Definition database.txt:21
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
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
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))