123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <?php
- /*
- * This file is part of the Symfony CMF package.
- *
- * (c) 2011-2015 Symfony CMF
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Cmf\Component\Routing;
- use Symfony\Component\Config\Resource\ResourceInterface;
- use Symfony\Component\Routing\Route;
- use Symfony\Component\Routing\RouteCollection;
- class ChainRouteCollection extends RouteCollection
- {
- /**
- * @var RouteCollection[]
- */
- private $routeCollections = array();
- /**
- * @var RouteCollection
- */
- private $routeCollection;
- public function __clone()
- {
- foreach ($this->routeCollections as $routeCollection) {
- $this->routeCollections[] = clone $routeCollection;
- }
- }
- /**
- * Gets the current RouteCollection as an Iterator that includes all routes.
- *
- * It implements \IteratorAggregate.
- *
- * @see all()
- *
- * @return \ArrayIterator An \ArrayIterator object for iterating over routes
- */
- public function getIterator()
- {
- return new \ArrayIterator($this->all());
- }
- /**
- * Gets the number of Routes in this collection.
- *
- * @return int The number of routes
- */
- public function count()
- {
- $count = 0;
- foreach ($this->routeCollections as $routeCollection) {
- $count += $routeCollection->count();
- }
- return $count;
- }
- /**
- * Adds a route.
- *
- * @param string $name The route name
- * @param Route $route A Route instance
- */
- public function add($name, Route $route)
- {
- $this->createInternalCollection();
- $this->routeCollection->add($name, $route);
- }
- /**
- * Returns all routes in this collection.
- *
- * @return Route[] An array of routes
- */
- public function all()
- {
- $routeCollectionAll = new RouteCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollectionAll->addCollection($routeCollection);
- }
- return $routeCollectionAll->all();
- }
- /**
- * Gets a route by name.
- *
- * @param string $name The route name
- *
- * @return Route|null A Route instance or null when not found
- */
- public function get($name)
- {
- foreach ($this->routeCollections as $routeCollection) {
- $route = $routeCollection->get($name);
- if (null !== $route) {
- return $route;
- }
- }
- return;
- }
- /**
- * Removes a route or an array of routes by name from the collection.
- *
- * @param string|array $name The route name or an array of route names
- */
- public function remove($name)
- {
- foreach ($this->routeCollections as $routeCollection) {
- $route = $routeCollection->get($name);
- if (null !== $route) {
- $routeCollection->remove($name);
- }
- }
- }
- /**
- * Adds a route collection at the end of the current set by appending all
- * routes of the added collection.
- *
- * @param RouteCollection $collection A RouteCollection instance
- */
- public function addCollection(RouteCollection $collection)
- {
- $this->routeCollections[] = $collection;
- }
- /**
- * Adds a prefix to the path of all child routes.
- *
- * @param string $prefix An optional prefix to add before each pattern of the route collection
- * @param array $defaults An array of default values
- * @param array $requirements An array of requirements
- */
- public function addPrefix($prefix, array $defaults = array(), array $requirements = array())
- {
- $this->createInternalCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollection->addPrefix($prefix, $defaults, $requirements);
- }
- }
- /**
- * Sets the host pattern on all routes.
- *
- * @param string $pattern The pattern
- * @param array $defaults An array of default values
- * @param array $requirements An array of requirements
- */
- public function setHost($pattern, array $defaults = array(), array $requirements = array())
- {
- $this->createInternalCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollection->setHost($pattern, $defaults, $requirements);
- }
- }
- /**
- * Adds defaults to all routes.
- *
- * An existing default value under the same name in a route will be overridden.
- *
- * @param array $defaults An array of default values
- */
- public function addDefaults(array $defaults)
- {
- $this->createInternalCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollection->addDefaults($defaults);
- }
- }
- /**
- * Adds requirements to all routes.
- *
- * An existing requirement under the same name in a route will be overridden.
- *
- * @param array $requirements An array of requirements
- */
- public function addRequirements(array $requirements)
- {
- $this->createInternalCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollection->addRequirements($requirements);
- }
- }
- /**
- * Adds options to all routes.
- *
- * An existing option value under the same name in a route will be overridden.
- *
- * @param array $options An array of options
- */
- public function addOptions(array $options)
- {
- $this->createInternalCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollection->addOptions($options);
- }
- }
- /**
- * Sets the schemes (e.g. 'https') all child routes are restricted to.
- *
- * @param string|array $schemes The scheme or an array of schemes
- */
- public function setSchemes($schemes)
- {
- $this->createInternalCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollection->setSchemes($schemes);
- }
- }
- /**
- * Sets the HTTP methods (e.g. 'POST') all child routes are restricted to.
- *
- * @param string|array $methods The method or an array of methods
- */
- public function setMethods($methods)
- {
- $this->createInternalCollection();
- foreach ($this->routeCollections as $routeCollection) {
- $routeCollection->setMethods($methods);
- }
- }
- /**
- * Returns an array of resources loaded to build this collection.
- *
- * @return ResourceInterface[] An array of resources
- */
- public function getResources()
- {
- $resources = array();
- foreach ($this->routeCollections as $routeCollection) {
- $resources = array_merge($resources, $routeCollection->getResources());
- }
- return array_unique($resources);
- }
- /**
- * Adds a resource for this collection.
- *
- * @param ResourceInterface $resource A resource instance
- */
- public function addResource(ResourceInterface $resource)
- {
- $this->createInternalCollection();
- $this->routeCollection->addResource($resource);
- }
- private function createInternalCollection()
- {
- if (!$this->routeCollection instanceof RouteCollection) {
- $this->routeCollection = new RouteCollection();
- $this->routeCollections[] = $this->routeCollection;
- }
- }
- }
|