54 $this->factory = MediaWikiServices::getInstance()->getMagicWordFactory();
63 public function add( $name ) {
64 $this->names[] =
$name;
65 $this->hash = $this->baseRegex = $this->regex =
null;
74 $this->names = array_merge( $this->names, array_values(
$names ) );
75 $this->hash = $this->baseRegex = $this->regex =
null;
83 if ( is_null( $this->hash ) ) {
84 $this->hash = [ 0 => [], 1 => [] ];
85 foreach ( $this->names as $name ) {
86 $magic = $this->factory->get( $name );
87 $case = intval( $magic->isCaseSensitive() );
88 foreach ( $magic->getSynonyms() as $syn ) {
90 $syn = $this->factory->getContentLanguage()->lc( $syn );
92 $this->hash[$case][$syn] =
$name;
104 if ( is_null( $this->baseRegex ) ) {
105 $this->baseRegex = [ 0 =>
'', 1 =>
'' ];
107 foreach ( $this->names as $name ) {
108 $magic = $this->factory->get( $name );
109 $case = intval( $magic->isCaseSensitive() );
110 foreach ( $magic->getSynonyms() as $i => $syn ) {
112 $it = strtr( $i,
'0123456789',
'abcdefghij' );
113 $groupName = $it .
'_' .
$name;
114 $group =
'(?P<' . $groupName .
'>' . preg_quote( $syn,
'/' ) .
')';
116 if ( isset( $allGroups[$groupName] ) ) {
118 __METHOD__ .
': duplicate internal name in magic word array: ' . $name
121 $allGroups[$groupName] =
true;
122 if ( $this->baseRegex[$case] ===
'' ) {
123 $this->baseRegex[$case] = $group;
125 $this->baseRegex[$case] .=
'|' . $group;
138 if ( is_null( $this->regex ) ) {
140 $this->regex = [
'',
'' ];
141 if ( $this->baseRegex[0] !==
'' ) {
142 $this->regex[0] =
"/{$base[0]}/iuS";
144 if ( $this->baseRegex[1] !==
'' ) {
145 $this->regex[1] =
"/{$base[1]}/S";
157 return str_replace(
"\\$1",
"(.*?)", $this->
getRegex() );
167 $newRegex = [
'',
'' ];
168 if (
$base[0] !==
'' ) {
169 $newRegex[0] =
"/^(?:{$base[0]})/iuS";
171 if (
$base[1] !==
'' ) {
172 $newRegex[1] =
"/^(?:{$base[1]})/S";
184 $newRegex = [
'',
'' ];
185 if (
$base[0] !==
'' ) {
186 $newRegex[0] = str_replace(
"\\$1",
"(.*?)",
"/^(?:{$base[0]})$/iuS" );
188 if (
$base[1] !==
'' ) {
189 $newRegex[1] = str_replace(
"\\$1",
"(.*?)",
"/^(?:{$base[1]})$/S" );
214 while ( ( $key =
key( $m ) ) !==
null ) {
217 if ( $key === 0 ||
$value ===
'' ) {
220 $parts = explode(
'_', $key, 2 );
221 if ( count( $parts ) != 2 ) {
224 throw new MWException( __METHOD__ .
': bad parameter name' );
226 list( , $magicName ) = $parts;
227 $paramValue = next( $m );
228 return [ $magicName, $paramValue ];
231 throw new MWException( __METHOD__ .
': parameter not found' );
246 foreach ( $regexes as
$regex ) {
249 if ( preg_match(
$regex, $text, $m ) ) {
254 return [
false,
false ];
267 if ( isset(
$hash[1][$text] ) ) {
268 return $hash[1][$text];
270 $lc = $this->factory->getContentLanguage()->lc( $text );
271 if ( isset(
$hash[0][$lc] ) ) {
272 return $hash[0][$lc];
288 foreach ( $regexes as
$regex ) {
294 if (
$res ===
false ) {
295 LoggerFactory::getInstance(
'parser' )->warning(
'preg_match_all returned false', [
296 'code' => preg_last_error(),
303 $found[
$name] = $param;
307 if (
$res ===
null ) {
308 LoggerFactory::getInstance(
'parser' )->warning(
'preg_replace returned null', [
309 'code' => preg_last_error(),
331 foreach ( $regexes as
$regex ) {
335 if ( preg_match(
$regex, $text, $m ) ) {
337 if ( strlen( $m[0] ) >= strlen( $text ) ) {
340 $text = substr( $text, strlen( $m[0] ) );
Class for handling an array of magic words.
matchVariableStartToEnd( $text)
Match some text, with parameter capture Returns an array with the magic word name in the first elemen...
add( $name)
Add a magic word by name.
getVariableRegex()
Get a regex for matching variables with parameters.
__construct( $names=[], MagicWordFactory $factory=null)
parseMatch( $m)
Parse a match array from preg_match Returns array(magic word ID, parameter value) If there is no para...
matchStartToEnd( $text)
Match some text, without parameter capture Returns the magic word name, or false if there was no capt...
getRegexStart()
Get a regex anchored to the start of the string that does not match parameters.
getBaseRegex()
Get the base regex.
matchStartAndRemove(&$text)
Return the ID of the magic word at the start of $text, and remove the prefix from $text.
getRegex()
Get an unanchored regex that does not match parameters.
getVariableStartToEndRegex()
Get an anchored regex for matching variables with parameters.
getHash()
Get a 2-d hashtable for this array.
MagicWordFactory $factory
matchAndRemove(&$text)
Returns an associative array, ID => param value, for all items that match Removes the matched items f...
addArray( $names)
Add a number of magic words by name.
A factory that stores information about MagicWords, and creates them on demand with caching.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
Allows to change the fields on the form that will be generated $name
processing should stop and the error should be shown to the user * false
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))