MediaWiki  1.32.0
PathRouter.php
Go to the documentation of this file.
1 <?php
73 class PathRouter {
74 
78  private $patterns = [];
79 
90  protected function doAdd( $path, $params, $options, $key = null ) {
91  // Make sure all paths start with a /
92  if ( $path[0] !== '/' ) {
93  $path = '/' . $path;
94  }
95 
96  if ( !isset( $options['strict'] ) || !$options['strict'] ) {
97  // Unless this is a strict path make sure that the path has a $1
98  if ( strpos( $path, '$1' ) === false ) {
99  if ( substr( $path, -1 ) !== '/' ) {
100  $path .= '/';
101  }
102  $path .= '$1';
103  }
104  }
105 
106  // If 'title' is not specified and our path pattern contains a $1
107  // Add a default 'title' => '$1' rule to the parameters.
108  if ( !isset( $params['title'] ) && strpos( $path, '$1' ) !== false ) {
109  $params['title'] = '$1';
110  }
111  // If the user explicitly marked 'title' as false then omit it from the matches
112  if ( isset( $params['title'] ) && $params['title'] === false ) {
113  unset( $params['title'] );
114  }
115 
116  // Loop over our parameters and convert basic key => string
117  // patterns into fully descriptive array form
118  foreach ( $params as $paramName => $paramData ) {
119  if ( is_string( $paramData ) ) {
120  if ( preg_match( '/\$(\d+|key)/u', $paramData ) ) {
121  $paramArrKey = 'pattern';
122  } else {
123  // If there's no replacement use a value instead
124  // of a pattern for a little more efficiency
125  $paramArrKey = 'value';
126  }
127  $params[$paramName] = [
128  $paramArrKey => $paramData
129  ];
130  }
131  }
132 
133  // Loop over our options and convert any single value $# restrictions
134  // into an array so we only have to do in_array tests.
135  foreach ( $options as $optionName => $optionData ) {
136  if ( preg_match( '/^\$\d+$/u', $optionName ) ) {
137  if ( !is_array( $optionData ) ) {
138  $options[$optionName] = [ $optionData ];
139  }
140  }
141  }
142 
143  $pattern = (object)[
144  'path' => $path,
145  'params' => $params,
146  'options' => $options,
147  'key' => $key,
148  ];
149  $pattern->weight = self::makeWeight( $pattern );
150  $this->patterns[] = $pattern;
151  }
152 
160  public function add( $path, $params = [], $options = [] ) {
161  if ( is_array( $path ) ) {
162  foreach ( $path as $key => $onePath ) {
163  $this->doAdd( $onePath, $params, $options, $key );
164  }
165  } else {
166  $this->doAdd( $path, $params, $options );
167  }
168  }
169 
177  public function addStrict( $path, $params = [], $options = [] ) {
178  $options['strict'] = true;
179  $this->add( $path, $params, $options );
180  }
181 
186  protected function sortByWeight() {
187  $weights = [];
188  foreach ( $this->patterns as $key => $pattern ) {
189  $weights[$key] = $pattern->weight;
190  }
191  array_multisort( $weights, SORT_DESC, SORT_NUMERIC, $this->patterns );
192  }
193 
198  protected static function makeWeight( $pattern ) {
199  # Start with a weight of 0
200  $weight = 0;
201 
202  // Explode the path to work with
203  $path = explode( '/', $pattern->path );
204 
205  # For each level of the path
206  foreach ( $path as $piece ) {
207  if ( preg_match( '/^\$(\d+|key)$/u', $piece ) ) {
208  # For a piece that is only a $1 variable add 1 points of weight
209  $weight += 1;
210  } elseif ( preg_match( '/\$(\d+|key)/u', $piece ) ) {
211  # For a piece that simply contains a $1 variable add 2 points of weight
212  $weight += 2;
213  } else {
214  # For a solid piece add a full 3 points of weight
215  $weight += 3;
216  }
217  }
218 
219  foreach ( $pattern->options as $key => $option ) {
220  if ( preg_match( '/^\$\d+$/u', $key ) ) {
221  # Add 0.5 for restrictions to values
222  # This way given two separate "/$2/$1" patterns the
223  # one with a limited set of $2 values will dominate
224  # the one that'll match more loosely
225  $weight += 0.5;
226  }
227  }
228 
229  return $weight;
230  }
231 
238  public function parse( $path ) {
239  // Make sure our patterns are sorted by weight so the most specific
240  // matches are tested first
241  $this->sortByWeight();
242 
243  $matches = $this->internalParse( $path );
244  if ( is_null( $matches ) ) {
245  // Try with the normalized path (T100782)
247  $path = preg_replace( '#/+#', '/', $path );
248  $matches = $this->internalParse( $path );
249  }
250 
251  // We know the difference between null (no matches) and
252  // array() (a match with no data) but our WebRequest caller
253  // expects array() even when we have no matches so return
254  // a array() when we have null
255  return is_null( $matches ) ? [] : $matches;
256  }
257 
264  protected function internalParse( $path ) {
265  $matches = null;
266 
267  foreach ( $this->patterns as $pattern ) {
268  $matches = self::extractTitle( $path, $pattern );
269  if ( !is_null( $matches ) ) {
270  break;
271  }
272  }
273  return $matches;
274  }
275 
281  protected static function extractTitle( $path, $pattern ) {
282  // Convert the path pattern into a regexp we can match with
283  $regexp = preg_quote( $pattern->path, '#' );
284  // .* for the $1
285  $regexp = preg_replace( '#\\\\\$1#u', '(?P<par1>.*)', $regexp );
286  // .+ for the rest of the parameter numbers
287  $regexp = preg_replace( '#\\\\\$(\d+)#u', '(?P<par$1>.+?)', $regexp );
288  $regexp = "#^{$regexp}$#";
289 
290  $matches = [];
291  $data = [];
292 
293  // Try to match the path we were asked to parse with our regexp
294  if ( preg_match( $regexp, $path, $m ) ) {
295  // Ensure that any $# restriction we have set in our {$option}s
296  // matches properly here.
297  foreach ( $pattern->options as $key => $option ) {
298  if ( preg_match( '/^\$\d+$/u', $key ) ) {
299  $n = intval( substr( $key, 1 ) );
300  $value = rawurldecode( $m["par{$n}"] );
301  if ( !in_array( $value, $option ) ) {
302  // If any restriction does not match return null
303  // to signify that this rule did not match.
304  return null;
305  }
306  }
307  }
308 
309  // Give our $data array a copy of every $# that was matched
310  foreach ( $m as $matchKey => $matchValue ) {
311  if ( preg_match( '/^par\d+$/u', $matchKey ) ) {
312  $n = intval( substr( $matchKey, 3 ) );
313  $data['$' . $n] = rawurldecode( $matchValue );
314  }
315  }
316  // If present give our $data array a $key as well
317  if ( isset( $pattern->key ) ) {
318  $data['$key'] = $pattern->key;
319  }
320 
321  // Go through our parameters for this match and add data to our matches and data arrays
322  foreach ( $pattern->params as $paramName => $paramData ) {
323  $value = null;
324  // Differentiate data: from normal parameters and keep the correct
325  // array key around (ie: foo for data:foo)
326  if ( preg_match( '/^data:/u', $paramName ) ) {
327  $isData = true;
328  $key = substr( $paramName, 5 );
329  } else {
330  $isData = false;
331  $key = $paramName;
332  }
333 
334  if ( isset( $paramData['value'] ) ) {
335  // For basic values just set the raw data as the value
336  $value = $paramData['value'];
337  } elseif ( isset( $paramData['pattern'] ) ) {
338  // For patterns we have to make value replacements on the string
339  $value = self::expandParamValue( $m, $pattern->key ?? null,
340  $paramData['pattern'] );
341  if ( $value === false ) {
342  // Pattern required data that wasn't available, abort
343  return null;
344  }
345  }
346 
347  // Send things that start with data: to $data, the rest to $matches
348  if ( $isData ) {
349  $data[$key] = $value;
350  } else {
351  $matches[$key] = $value;
352  }
353  }
354 
355  // If this match includes a callback, execute it
356  if ( isset( $pattern->options['callback'] ) ) {
357  call_user_func_array( $pattern->options['callback'], [ &$matches, $data ] );
358  }
359  } else {
360  // Our regexp didn't match, return null to signify no match.
361  return null;
362  }
363  // Fall through, everything went ok, return our matches array
364  return $matches;
365  }
366 
375  protected static function expandParamValue( $pathMatches, $key, $value ) {
376  $error = false;
377 
378  $replacer = function ( $m ) use ( $pathMatches, $key, &$error ) {
379  if ( $m[1] == "key" ) {
380  if ( is_null( $key ) ) {
381  $error = true;
382 
383  return '';
384  }
385 
386  return $key;
387  } else {
388  $d = $m[1];
389  if ( !isset( $pathMatches["par$d"] ) ) {
390  $error = true;
391 
392  return '';
393  }
394 
395  return rawurldecode( $pathMatches["par$d"] );
396  }
397  };
398 
399  $value = preg_replace_callback( '/\$(\d+|key)/u', $replacer, $value );
400  if ( $error ) {
401  return false;
402  }
403 
404  return $value;
405  }
406 }
PathRouter\add
add( $path, $params=[], $options=[])
Add a new path pattern to the path router.
Definition: PathRouter.php:160
PathRouter\internalParse
internalParse( $path)
Match a path against each defined pattern.
Definition: PathRouter.php:264
PathRouter\doAdd
doAdd( $path, $params, $options, $key=null)
Protected helper to do the actual bulk work of adding a single pattern.
Definition: PathRouter.php:90
PathRouter\addStrict
addStrict( $path, $params=[], $options=[])
Add a new path pattern to the path router with the strict option on.
Definition: PathRouter.php:177
wfRemoveDotSegments
wfRemoveDotSegments( $urlPath)
Remove all dot-segments in the provided URL path.
Definition: GlobalFunctions.php:662
PathRouter\parse
parse( $path)
Parse a path and return the query matches for the path.
Definition: PathRouter.php:238
PathRouter\makeWeight
static makeWeight( $pattern)
Definition: PathRouter.php:198
$params
$params
Definition: styleTest.css.php:44
php
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:35
$matches
$matches
Definition: NoLocalSettings.php:24
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
array
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))
$value
$value
Definition: styleTest.css.php:49
PathRouter\$patterns
array $patterns
Definition: PathRouter.php:78
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:2036
$path
$path
Definition: NoLocalSettings.php:25
as
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
Definition: distributors.txt:9
PathRouter\sortByWeight
sortByWeight()
Protected helper to re-sort our patterns so that the most specific (most heavily weighted) patterns a...
Definition: PathRouter.php:186
object
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
Definition: globals.txt:25
PathRouter
PathRouter class.
Definition: PathRouter.php:73
PathRouter\expandParamValue
static expandParamValue( $pathMatches, $key, $value)
Replace $key etc.
Definition: PathRouter.php:375
PathRouter\extractTitle
static extractTitle( $path, $pattern)
Definition: PathRouter.php:281