-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathsfPatternRouting.class.php
586 lines (513 loc) · 14.6 KB
/
sfPatternRouting.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfPatternRouting class controls the generation and parsing of URLs.
*
* It parses and generates URLs by delegating the work to an array of sfRoute objects.
*
* @package symfony
* @subpackage routing
* @author Fabien Potencier <[email protected]>
* @version SVN: $Id$
*/
class sfPatternRouting extends sfRouting
{
/** @var null|string */
protected $currentRouteName = null;
protected $currentInternalUri = array();
/** @var sfRoute[] */
protected $routes = array();
protected $cacheData = array();
protected $cacheChanged = false;
/**
* Initializes this Routing.
*
* Available options:
*
* * suffix: The default suffix
* * variable_prefixes: An array of characters that starts a variable name (: by default)
* * segment_separators: An array of allowed characters for segment separators (/ and . by default)
* * variable_regex: A regex that match a valid variable name ([\w\d_]+ by default)
* * generate_shortest_url: Whether to generate the shortest URL possible (true by default)
* * extra_parameters_as_query_string: Whether to generate extra parameters as a query string
* * lookup_cache_dedicated_keys: Whether to use dedicated keys for parse/generate cache (false by default)
* WARNING: When this option is activated, do not use sfFileCache; use a fast access
* cache backend (like sfAPCCache).
*
* @see sfRouting
* @inheritdoc
*/
public function initialize(sfEventDispatcher $dispatcher, sfCache $cache = null, $options = array())
{
$options = array_merge(array(
'variable_prefixes' => array(':'),
'segment_separators' => array('/', '.'),
'variable_regex' => '[\w\d_]+',
'load_configuration' => false,
'suffix' => '',
'generate_shortest_url' => true,
'extra_parameters_as_query_string' => true,
'lookup_cache_dedicated_keys' => false,
), $options);
// for BC
if ('.' == $options['suffix'])
{
$options['suffix'] = '';
}
parent::initialize($dispatcher, $cache, $options);
if (null !== $this->cache && !$options['lookup_cache_dedicated_keys'] && $cacheData = $this->cache->get('symfony.routing.data'))
{
$this->cacheData = unserialize($cacheData);
}
}
/**
* @see sfRouting
* @inheritdoc
*/
public function loadConfiguration()
{
if ($this->options['load_configuration'] && $config = $this->getConfigFileName())
{
include($config);
}
parent::loadConfiguration();
}
/**
* @see sfRouting
* @inheritdoc
*/
public function setDefaultParameter($key, $value)
{
parent::setDefaultParameter($key, $value);
foreach ($this->routes as $route)
{
if (is_object($route))
{
$route->setDefaultParameters($this->defaultParameters);
}
}
}
/**
* @see sfRouting
* @inheritdoc
*/
public function setDefaultParameters($parameters)
{
parent::setDefaultParameters($parameters);
foreach ($this->routes as $route)
{
if (is_object($route))
{
$route->setDefaultParameters($this->defaultParameters);
}
}
}
protected function getConfigFileName()
{
return sfContext::getInstance()->getConfigCache()->checkConfig('config/routing.yml', true);
}
/**
* @see sfRouting
* @inheritdoc
*/
public function getCurrentInternalUri($withRouteName = false)
{
return null === $this->currentRouteName ? null : $this->currentInternalUri[$withRouteName ? 0 : 1];
}
/**
* Gets the current route name.
*
* @return string The route name
*/
public function getCurrentRouteName()
{
return $this->currentRouteName;
}
/**
* @see sfRouting
* @inheritdoc
*/
public function getRoutes()
{
foreach ($this->routes as $name => $route) {
if (is_string($route)) {
$route = unserialize($route);
$route->setDefaultParameters($this->defaultParameters);
$this->routes[$name] = $route;
}
}
return $this->routes;
}
/**
* @see sfRouting
* @inheritdoc
*/
public function getRoute($name)
{
if (!array_key_exists($name, $this->routes))
{
throw new sfException(sprintf('Route "%s" is not defined.', $name));
}
$route = $this->routes[$name];
if (is_string($route))
{
$this->routes[$name] = $route = unserialize($route);
$route->setDefaultParameters($this->defaultParameters);
}
return $route;
}
/**
* @see sfRouting
* @inheritdoc
*/
public function setRoutes($routes)
{
foreach ($routes as $name => $route)
{
$this->connect($name, $route);
}
}
/**
* @see sfRouting
* @inheritdoc
*/
public function hasRoutes()
{
return count($this->routes) ? true : false;
}
/**
* @see sfRouting
* @inheritdoc
*/
public function clearRoutes()
{
if ($this->options['logging'])
{
$this->dispatcher->notify(new sfEvent($this, 'application.log', array('Clear all current routes')));
}
$this->routes = array();
}
/**
* Returns true if the route name given is defined.
*
* @param string $name The route name
*
* @return boolean
*/
public function hasRouteName($name)
{
return array_key_exists($name, $this->routes);
}
/**
* Adds a new route at the beginning of the current list of routes.
*
* @see connect
*
* @param string $name
* @param sfRoute $route
*/
public function prependRoute($name, $route)
{
$routes = $this->routes;
$this->routes = array();
$this->connect($name, $route);
$this->routes = array_merge($this->routes, $routes);
}
/**
* Adds a new route.
*
* Alias for the connect method.
*
* @see connect
*
* @param string $name
* @param sfRoute $route
* @return array
*/
public function appendRoute($name, $route)
{
return $this->connect($name, $route);
}
/**
* Adds a new route before a given one in the current list of routes.
*
* @see connect
*
* @param string $pivot
* @param string $name
* @param sfRoute $route
*
* @throws sfConfigurationException
*/
public function insertRouteBefore($pivot, $name, $route)
{
if (!isset($this->routes[$pivot]))
{
throw new sfConfigurationException(sprintf('Unable to insert route "%s" before inexistent route "%s".', $name, $pivot));
}
$routes = $this->routes;
$this->routes = array();
$newroutes = array();
foreach ($routes as $key => $value)
{
if ($key == $pivot)
{
$this->connect($name, $route);
$newroutes = array_merge($newroutes, $this->routes);
}
$newroutes[$key] = $value;
}
$this->routes = $newroutes;
}
/**
* Adds a new route at the end of the current list of routes.
*
* A route string is a string with 2 special constructions:
* - :string: :string denotes a named parameter (available later as $request->getParameter('string'))
* - *: * match an indefinite number of parameters in a route
*
* Here is a very common rule in a symfony project:
*
* <code>
* $r->connect('default', new sfRoute('/:module/:action/*'));
* </code>
*
* @param string $name The route name
* @param sfRoute $route A sfRoute instance
*
* @return array current routes
*/
public function connect($name, $route)
{
$routes = $route instanceof sfRouteCollection ? $route : array($name => $route);
foreach (self::flattenRoutes($routes) as $name => $route)
{
$this->routes[$name] = $route;
$this->configureRoute($route);
if ($this->options['logging'])
{
$this->dispatcher->notify(new sfEvent($this, 'application.log', array(sprintf('Connect %s "%s" (%s)', get_class($route), $name, $route->getPattern()))));
}
}
}
public function configureRoute(sfRoute $route)
{
$route->setDefaultParameters($this->defaultParameters);
$route->setDefaultOptions($this->options);
}
/**
* @see sfRouting
* @inheritdoc
*/
public function generate($name, $params = array(), $absolute = false)
{
// fetch from cache
if (null !== $this->cache)
{
$cacheKey = $this->getGenerateCacheKey($name, (array) $params);
if ($this->options['lookup_cache_dedicated_keys'] && $url = $this->cache->get($cacheKey))
{
return $this->fixGeneratedUrl($url, $absolute);
}
elseif (isset($this->cacheData[$cacheKey]))
{
return $this->fixGeneratedUrl($this->cacheData[$cacheKey], $absolute);
}
}
if ($name)
{
$route = $this->getRoute($name);
}
else
{
// find a matching route
if (false === $route = $this->getRouteThatMatchesParameters($params))
{
throw new sfConfigurationException(sprintf('Unable to find a matching route to generate url for params "%s".', is_object($params) ? 'Object('.get_class($params).')' : str_replace("\n", '', var_export($params, true))));
}
}
$url = $route->generate($params, $this->options['context'], $absolute);
// store in cache
if (null !== $this->cache)
{
if ($this->options['lookup_cache_dedicated_keys'])
{
$this->cache->set($cacheKey, $url);
}
else
{
$this->cacheChanged = true;
$this->cacheData[$cacheKey] = $url;
}
}
return $this->fixGeneratedUrl($url, $absolute);
}
protected function getGenerateCacheKey($name, $params)
{
return 'generate_'.$name.'_'.md5(serialize(array_merge($this->defaultParameters, $params))).'_'.md5(serialize($this->options['context']));
}
/**
* @see sfRouting
* @inheritdoc
*/
public function parse($url)
{
if (false === $info = $this->findRoute($url))
{
$this->currentRouteName = null;
$this->currentInternalUri = array();
return false;
}
if ($this->options['logging'])
{
$this->dispatcher->notify(new sfEvent($this, 'application.log', array(sprintf('Match route "%s" (%s) for %s with parameters %s', $info['name'], $info['pattern'], $url, str_replace("\n", '', var_export($info['parameters'], true))))));
}
// store the current internal URI
$this->updateCurrentInternalUri($info['name'], $info['parameters']);
$route = $this->getRoute($info['name']);
$route->bind($this->options['context'], $info['parameters']);
$info['parameters']['_sf_route'] = $route;
return $info['parameters'];
}
protected function updateCurrentInternalUri($name, array $parameters)
{
// store the route name
$this->currentRouteName = $name;
$internalUri = array('@'.$this->currentRouteName, $parameters['module'].'/'.$parameters['action']);
unset($parameters['module'], $parameters['action']);
$params = array();
foreach ($parameters as $key => $value)
{
$params[] = $key.'='.$value;
}
// sort to guaranty unicity
sort($params);
$params = $params ? '?'.implode('&', $params) : '';
$this->currentInternalUri = array($internalUri[0].$params, $internalUri[1].$params);
}
/**
* Finds a matching route for given URL.
*
* Returns false if no route matches.
*
* Returned array contains:
*
* - name: name or alias of the route that matched
* - pattern: the compiled pattern of the route that matched
* - parameters: array containing key value pairs of the request parameters including defaults
*
* @param string $url URL to be parsed
*
* @return array|false An array with routing information or false if no route matched
*/
public function findRoute($url)
{
$url = $this->normalizeUrl($url);
// fetch from cache
if (null !== $this->cache)
{
$cacheKey = $this->getParseCacheKey($url);
if ($this->options['lookup_cache_dedicated_keys'] && $info = $this->cache->get($cacheKey))
{
return unserialize($info);
}
elseif (isset($this->cacheData[$cacheKey]))
{
return $this->cacheData[$cacheKey];
}
}
$info = $this->getRouteThatMatchesUrl($url);
// store in cache
if (null !== $this->cache)
{
if ($this->options['lookup_cache_dedicated_keys'])
{
$this->cache->set($cacheKey, serialize($info));
}
else
{
$this->cacheChanged = true;
$this->cacheData[$cacheKey] = $info;
}
}
return $info;
}
protected function getParseCacheKey($url)
{
return 'parse_'.$url.'_'.md5(serialize($this->options['context']));
}
static public function flattenRoutes($routes)
{
$flattenRoutes = array();
foreach ($routes as $name => $route)
{
if ($route instanceof sfRouteCollection)
{
$flattenRoutes = array_merge($flattenRoutes, self::flattenRoutes($route));
}
else
{
$flattenRoutes[$name] = $route;
}
}
return $flattenRoutes;
}
protected function getRouteThatMatchesUrl($url)
{
foreach ($this->routes as $name => $route)
{
$route = $this->getRoute($name);
if (false === $parameters = $route->matchesUrl($url, $this->options['context']))
{
continue;
}
return array('name' => $name, 'pattern' => $route->getPattern(), 'parameters' => $parameters);
}
return false;
}
protected function getRouteThatMatchesParameters($parameters)
{
foreach ($this->routes as $name => $route)
{
$route = $this->getRoute($name);
if ($route->matchesParameters($parameters, $this->options['context']))
{
return $route;
}
}
return false;
}
protected function normalizeUrl($url)
{
// an URL should start with a '/', mod_rewrite doesn't respect that, but no-mod_rewrite version does.
if ('/' != substr($url, 0, 1))
{
$url = '/'.$url;
}
// we remove the query string
if (false !== $pos = strpos($url, '?'))
{
$url = substr($url, 0, $pos);
}
// remove multiple /
$url = preg_replace('#/+#', '/', $url);
return $url;
}
/**
* @see sfRouting
*/
public function shutdown()
{
if (null !== $this->cache && $this->cacheChanged)
{
$this->cacheChanged = false;
$this->cache->set('symfony.routing.data', serialize($this->cacheData));
}
}
}