123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <?php
- namespace Symfony\Component\Routing;
- use Symfony\Component\Config\Exception\LoaderLoadException;
- use Symfony\Component\Config\Loader\LoaderInterface;
- use Symfony\Component\Config\Resource\ResourceInterface;
- class RouteCollectionBuilder
- {
-
- private $routes = [];
- private $loader;
- private $defaults = [];
- private $prefix;
- private $host;
- private $condition;
- private $requirements = [];
- private $options = [];
- private $schemes;
- private $methods;
- private $resources = [];
- public function __construct(LoaderInterface $loader = null)
- {
- $this->loader = $loader;
- }
-
- public function import($resource, $prefix = '/', $type = null)
- {
-
- $collections = $this->load($resource, $type);
-
- $builder = $this->createBuilder();
- foreach ($collections as $collection) {
- if (null === $collection) {
- continue;
- }
- foreach ($collection->all() as $name => $route) {
- $builder->addRoute($route, $name);
- }
- foreach ($collection->getResources() as $resource) {
- $builder->addResource($resource);
- }
- }
-
- $this->mount($prefix, $builder);
- return $builder;
- }
-
- public function add($path, $controller, $name = null)
- {
- $route = new Route($path);
- $route->setDefault('_controller', $controller);
- $this->addRoute($route, $name);
- return $route;
- }
-
- public function createBuilder()
- {
- return new self($this->loader);
- }
-
- public function mount($prefix, self $builder)
- {
- $builder->prefix = trim(trim($prefix), '/');
- $this->routes[] = $builder;
- }
-
- public function addRoute(Route $route, $name = null)
- {
- if (null === $name) {
-
- $name = '_unnamed_route_'.spl_object_hash($route);
- }
- $this->routes[$name] = $route;
- return $this;
- }
-
- public function setHost($pattern)
- {
- $this->host = $pattern;
- return $this;
- }
-
- public function setCondition($condition)
- {
- $this->condition = $condition;
- return $this;
- }
-
- public function setDefault($key, $value)
- {
- $this->defaults[$key] = $value;
- return $this;
- }
-
- public function setRequirement($key, $regex)
- {
- $this->requirements[$key] = $regex;
- return $this;
- }
-
- public function setOption($key, $value)
- {
- $this->options[$key] = $value;
- return $this;
- }
-
- public function setSchemes($schemes)
- {
- $this->schemes = $schemes;
- return $this;
- }
-
- public function setMethods($methods)
- {
- $this->methods = $methods;
- return $this;
- }
-
- private function addResource(ResourceInterface $resource): self
- {
- $this->resources[] = $resource;
- return $this;
- }
-
- public function build()
- {
- $routeCollection = new RouteCollection();
- foreach ($this->routes as $name => $route) {
- if ($route instanceof Route) {
- $route->setDefaults(array_merge($this->defaults, $route->getDefaults()));
- $route->setOptions(array_merge($this->options, $route->getOptions()));
- foreach ($this->requirements as $key => $val) {
- if (!$route->hasRequirement($key)) {
- $route->setRequirement($key, $val);
- }
- }
- if (null !== $this->prefix) {
- $route->setPath('/'.$this->prefix.$route->getPath());
- }
- if (!$route->getHost()) {
- $route->setHost($this->host);
- }
- if (!$route->getCondition()) {
- $route->setCondition($this->condition);
- }
- if (!$route->getSchemes()) {
- $route->setSchemes($this->schemes);
- }
- if (!$route->getMethods()) {
- $route->setMethods($this->methods);
- }
-
- if ('_unnamed_route_' === substr($name, 0, 15)) {
- $name = $this->generateRouteName($route);
- }
- $routeCollection->add($name, $route);
- } else {
-
- $subCollection = $route->build();
- $subCollection->addPrefix($this->prefix);
- $routeCollection->addCollection($subCollection);
- }
- }
- foreach ($this->resources as $resource) {
- $routeCollection->addResource($resource);
- }
- return $routeCollection;
- }
-
- private function generateRouteName(Route $route): string
- {
- $methods = implode('_', $route->getMethods()).'_';
- $routeName = $methods.$route->getPath();
- $routeName = str_replace(['/', ':', '|', '-'], '_', $routeName);
- $routeName = preg_replace('/[^a-z0-9A-Z_.]+/', '', $routeName);
-
- $routeName = preg_replace('/_+/', '_', $routeName);
- return $routeName;
- }
-
- private function load($resource, string $type = null): array
- {
- if (null === $this->loader) {
- throw new \BadMethodCallException('Cannot import other routing resources: you must pass a LoaderInterface when constructing RouteCollectionBuilder.');
- }
- if ($this->loader->supports($resource, $type)) {
- $collections = $this->loader->load($resource, $type);
- return \is_array($collections) ? $collections : [$collections];
- }
- if (null === $resolver = $this->loader->getResolver()) {
- throw new LoaderLoadException($resource, null, null, null, $type);
- }
- if (false === $loader = $resolver->resolve($resource, $type)) {
- throw new LoaderLoadException($resource, null, null, null, $type);
- }
- $collections = $loader->load($resource, $type);
- return \is_array($collections) ? $collections : [$collections];
- }
- }
|