RouteCollection.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Routing;
  11. use Symfony\Component\Config\Resource\ResourceInterface;
  12. use Symfony\Component\Routing\Exception\InvalidArgumentException;
  13. use Symfony\Component\Routing\Exception\RouteCircularReferenceException;
  14. /**
  15. * A RouteCollection represents a set of Route instances.
  16. *
  17. * When adding a route at the end of the collection, an existing route
  18. * with the same name is removed first. So there can only be one route
  19. * with a given name.
  20. *
  21. * @author Fabien Potencier <fabien@symfony.com>
  22. * @author Tobias Schultze <http://tobion.de>
  23. *
  24. * @implements \IteratorAggregate<string, Route>
  25. */
  26. class RouteCollection implements \IteratorAggregate, \Countable
  27. {
  28. /**
  29. * @var array<string, Route>
  30. */
  31. private $routes = [];
  32. /**
  33. * @var array<string, Alias>
  34. */
  35. private $aliases = [];
  36. /**
  37. * @var array<string, ResourceInterface>
  38. */
  39. private $resources = [];
  40. /**
  41. * @var array<string, int>
  42. */
  43. private $priorities = [];
  44. public function __clone()
  45. {
  46. foreach ($this->routes as $name => $route) {
  47. $this->routes[$name] = clone $route;
  48. }
  49. foreach ($this->aliases as $name => $alias) {
  50. $this->aliases[$name] = clone $alias;
  51. }
  52. }
  53. /**
  54. * Gets the current RouteCollection as an Iterator that includes all routes.
  55. *
  56. * It implements \IteratorAggregate.
  57. *
  58. * @see all()
  59. *
  60. * @return \ArrayIterator<string, Route>
  61. */
  62. #[\ReturnTypeWillChange]
  63. public function getIterator()
  64. {
  65. return new \ArrayIterator($this->all());
  66. }
  67. /**
  68. * Gets the number of Routes in this collection.
  69. *
  70. * @return int
  71. */
  72. #[\ReturnTypeWillChange]
  73. public function count()
  74. {
  75. return \count($this->routes);
  76. }
  77. /**
  78. * @param int $priority
  79. */
  80. public function add(string $name, Route $route/* , int $priority = 0 */)
  81. {
  82. if (\func_num_args() < 3 && __CLASS__ !== static::class && __CLASS__ !== (new \ReflectionMethod($this, __FUNCTION__))->getDeclaringClass()->getName() && !$this instanceof \PHPUnit\Framework\MockObject\MockObject && !$this instanceof \Prophecy\Prophecy\ProphecySubjectInterface && !$this instanceof \Mockery\MockInterface) {
  83. trigger_deprecation('symfony/routing', '5.1', 'The "%s()" method will have a new "int $priority = 0" argument in version 6.0, not defining it is deprecated.', __METHOD__);
  84. }
  85. unset($this->routes[$name], $this->priorities[$name], $this->aliases[$name]);
  86. $this->routes[$name] = $route;
  87. if ($priority = 3 <= \func_num_args() ? func_get_arg(2) : 0) {
  88. $this->priorities[$name] = $priority;
  89. }
  90. }
  91. /**
  92. * Returns all routes in this collection.
  93. *
  94. * @return array<string, Route>
  95. */
  96. public function all()
  97. {
  98. if ($this->priorities) {
  99. $priorities = $this->priorities;
  100. $keysOrder = array_flip(array_keys($this->routes));
  101. uksort($this->routes, static function ($n1, $n2) use ($priorities, $keysOrder) {
  102. return (($priorities[$n2] ?? 0) <=> ($priorities[$n1] ?? 0)) ?: ($keysOrder[$n1] <=> $keysOrder[$n2]);
  103. });
  104. }
  105. return $this->routes;
  106. }
  107. /**
  108. * Gets a route by name.
  109. *
  110. * @return Route|null
  111. */
  112. public function get(string $name)
  113. {
  114. $visited = [];
  115. while (null !== $alias = $this->aliases[$name] ?? null) {
  116. if (false !== $searchKey = array_search($name, $visited)) {
  117. $visited[] = $name;
  118. throw new RouteCircularReferenceException($name, \array_slice($visited, $searchKey));
  119. }
  120. if ($alias->isDeprecated()) {
  121. $deprecation = $alias->getDeprecation($name);
  122. trigger_deprecation($deprecation['package'], $deprecation['version'], $deprecation['message']);
  123. }
  124. $visited[] = $name;
  125. $name = $alias->getId();
  126. }
  127. return $this->routes[$name] ?? null;
  128. }
  129. /**
  130. * Removes a route or an array of routes by name from the collection.
  131. *
  132. * @param string|string[] $name The route name or an array of route names
  133. */
  134. public function remove($name)
  135. {
  136. $routes = [];
  137. foreach ((array) $name as $n) {
  138. if (isset($this->routes[$n])) {
  139. $routes[] = $n;
  140. }
  141. unset($this->routes[$n], $this->priorities[$n], $this->aliases[$n]);
  142. }
  143. if (!$routes) {
  144. return;
  145. }
  146. foreach ($this->aliases as $k => $alias) {
  147. if (\in_array($alias->getId(), $routes, true)) {
  148. unset($this->aliases[$k]);
  149. }
  150. }
  151. }
  152. /**
  153. * Adds a route collection at the end of the current set by appending all
  154. * routes of the added collection.
  155. */
  156. public function addCollection(self $collection)
  157. {
  158. // we need to remove all routes with the same names first because just replacing them
  159. // would not place the new route at the end of the merged array
  160. foreach ($collection->all() as $name => $route) {
  161. unset($this->routes[$name], $this->priorities[$name], $this->aliases[$name]);
  162. $this->routes[$name] = $route;
  163. if (isset($collection->priorities[$name])) {
  164. $this->priorities[$name] = $collection->priorities[$name];
  165. }
  166. }
  167. foreach ($collection->getAliases() as $name => $alias) {
  168. unset($this->routes[$name], $this->priorities[$name], $this->aliases[$name]);
  169. $this->aliases[$name] = $alias;
  170. }
  171. foreach ($collection->getResources() as $resource) {
  172. $this->addResource($resource);
  173. }
  174. }
  175. /**
  176. * Adds a prefix to the path of all child routes.
  177. */
  178. public function addPrefix(string $prefix, array $defaults = [], array $requirements = [])
  179. {
  180. $prefix = trim(trim($prefix), '/');
  181. if ('' === $prefix) {
  182. return;
  183. }
  184. foreach ($this->routes as $route) {
  185. $route->setPath('/'.$prefix.$route->getPath());
  186. $route->addDefaults($defaults);
  187. $route->addRequirements($requirements);
  188. }
  189. }
  190. /**
  191. * Adds a prefix to the name of all the routes within in the collection.
  192. */
  193. public function addNamePrefix(string $prefix)
  194. {
  195. $prefixedRoutes = [];
  196. $prefixedPriorities = [];
  197. $prefixedAliases = [];
  198. foreach ($this->routes as $name => $route) {
  199. $prefixedRoutes[$prefix.$name] = $route;
  200. if (null !== $canonicalName = $route->getDefault('_canonical_route')) {
  201. $route->setDefault('_canonical_route', $prefix.$canonicalName);
  202. }
  203. if (isset($this->priorities[$name])) {
  204. $prefixedPriorities[$prefix.$name] = $this->priorities[$name];
  205. }
  206. }
  207. foreach ($this->aliases as $name => $alias) {
  208. $prefixedAliases[$prefix.$name] = $alias->withId($prefix.$alias->getId());
  209. }
  210. $this->routes = $prefixedRoutes;
  211. $this->priorities = $prefixedPriorities;
  212. $this->aliases = $prefixedAliases;
  213. }
  214. /**
  215. * Sets the host pattern on all routes.
  216. */
  217. public function setHost(?string $pattern, array $defaults = [], array $requirements = [])
  218. {
  219. foreach ($this->routes as $route) {
  220. $route->setHost($pattern);
  221. $route->addDefaults($defaults);
  222. $route->addRequirements($requirements);
  223. }
  224. }
  225. /**
  226. * Sets a condition on all routes.
  227. *
  228. * Existing conditions will be overridden.
  229. */
  230. public function setCondition(?string $condition)
  231. {
  232. foreach ($this->routes as $route) {
  233. $route->setCondition($condition);
  234. }
  235. }
  236. /**
  237. * Adds defaults to all routes.
  238. *
  239. * An existing default value under the same name in a route will be overridden.
  240. */
  241. public function addDefaults(array $defaults)
  242. {
  243. if ($defaults) {
  244. foreach ($this->routes as $route) {
  245. $route->addDefaults($defaults);
  246. }
  247. }
  248. }
  249. /**
  250. * Adds requirements to all routes.
  251. *
  252. * An existing requirement under the same name in a route will be overridden.
  253. */
  254. public function addRequirements(array $requirements)
  255. {
  256. if ($requirements) {
  257. foreach ($this->routes as $route) {
  258. $route->addRequirements($requirements);
  259. }
  260. }
  261. }
  262. /**
  263. * Adds options to all routes.
  264. *
  265. * An existing option value under the same name in a route will be overridden.
  266. */
  267. public function addOptions(array $options)
  268. {
  269. if ($options) {
  270. foreach ($this->routes as $route) {
  271. $route->addOptions($options);
  272. }
  273. }
  274. }
  275. /**
  276. * Sets the schemes (e.g. 'https') all child routes are restricted to.
  277. *
  278. * @param string|string[] $schemes The scheme or an array of schemes
  279. */
  280. public function setSchemes($schemes)
  281. {
  282. foreach ($this->routes as $route) {
  283. $route->setSchemes($schemes);
  284. }
  285. }
  286. /**
  287. * Sets the HTTP methods (e.g. 'POST') all child routes are restricted to.
  288. *
  289. * @param string|string[] $methods The method or an array of methods
  290. */
  291. public function setMethods($methods)
  292. {
  293. foreach ($this->routes as $route) {
  294. $route->setMethods($methods);
  295. }
  296. }
  297. /**
  298. * Returns an array of resources loaded to build this collection.
  299. *
  300. * @return ResourceInterface[]
  301. */
  302. public function getResources()
  303. {
  304. return array_values($this->resources);
  305. }
  306. /**
  307. * Adds a resource for this collection. If the resource already exists
  308. * it is not added.
  309. */
  310. public function addResource(ResourceInterface $resource)
  311. {
  312. $key = (string) $resource;
  313. if (!isset($this->resources[$key])) {
  314. $this->resources[$key] = $resource;
  315. }
  316. }
  317. /**
  318. * Sets an alias for an existing route.
  319. *
  320. * @param string $name The alias to create
  321. * @param string $alias The route to alias
  322. *
  323. * @throws InvalidArgumentException if the alias is for itself
  324. */
  325. public function addAlias(string $name, string $alias): Alias
  326. {
  327. if ($name === $alias) {
  328. throw new InvalidArgumentException(sprintf('Route alias "%s" can not reference itself.', $name));
  329. }
  330. unset($this->routes[$name], $this->priorities[$name]);
  331. return $this->aliases[$name] = new Alias($alias);
  332. }
  333. /**
  334. * @return array<string, Alias>
  335. */
  336. public function getAliases(): array
  337. {
  338. return $this->aliases;
  339. }
  340. public function getAlias(string $name): ?Alias
  341. {
  342. return $this->aliases[$name] ?? null;
  343. }
  344. public function getPriority(string $name): ?int
  345. {
  346. return $this->priorities[$name] ?? null;
  347. }
  348. }