This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Components/Routing/Loader/YamlFileLoader.php

110 lines
3.5 KiB
PHP
Raw Normal View History

2010-02-17 13:53:31 +00:00
<?php
namespace Symfony\Components\Routing\Loader;
use Symfony\Components\Routing\RouteCollection;
use Symfony\Components\Routing\Route;
2010-06-28 08:15:15 +01:00
use Symfony\Components\Routing\Resource\FileResource;
2010-02-17 13:53:31 +00:00
use Symfony\Components\Yaml\Yaml;
/*
* This file is part of the Symfony framework.
2010-02-17 13:53:31 +00:00
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* YamlFileLoader loads Yaml routing files.
*
* @package Symfony
* @subpackage Components_Routing
2010-02-17 13:53:31 +00:00
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class YamlFileLoader extends FileLoader
{
/**
* Loads a Yaml file.
*
* @param string $file A Yaml file path
*
* @return RouteCollection A RouteCollection instance
*
* @throws \InvalidArgumentException When route can't be parsed
*/
public function load($file)
2010-02-17 13:53:31 +00:00
{
$path = $this->findFile($file);
$config = $this->loadFile($path);
$collection = new RouteCollection();
$collection->addResource(new FileResource($path));
foreach ($config as $name => $config) {
if (isset($config['resource'])) {
$this->parseImport($collection, $name, $config, $path);
} elseif (isset($config['pattern'])) {
$this->parseRoute($collection, $name, $config, $path);
} else {
throw new \InvalidArgumentException(sprintf('Unable to parse the "%s" route.', $name));
}
}
return $collection;
2010-02-17 13:53:31 +00:00
}
/**
* @throws \InvalidArgumentException When config pattern is not defined for the given route
*/
protected function parseRoute(RouteCollection $collection, $name, $config, $file)
2010-02-17 13:53:31 +00:00
{
$defaults = isset($config['defaults']) ? $config['defaults'] : array();
$requirements = isset($config['requirements']) ? $config['requirements'] : array();
$options = isset($config['options']) ? $config['options'] : array();
2010-02-17 13:53:31 +00:00
if (!isset($config['pattern'])) {
throw new \InvalidArgumentException(sprintf('You must define a "pattern" for the "%s" route.', $name));
}
2010-02-17 13:53:31 +00:00
$route = new Route($config['pattern'], $defaults, $requirements, $options);
2010-02-17 13:53:31 +00:00
$collection->addRoute($name, $route);
2010-02-17 13:53:31 +00:00
}
/**
* @throws \InvalidArgumentException When import resource is not defined
*/
protected function parseImport(RouteCollection $collection, $name, $import, $file)
2010-02-17 13:53:31 +00:00
{
if (!isset($import['resource'])) {
throw new \InvalidArgumentException(sprintf('You must define a "resource" when importing (%s).', $name));
}
$class = null;
if (isset($import['class']) && $import['class'] !== get_class($this)) {
$class = $import['class'];
} else {
// try to detect loader with the extension
switch (pathinfo($import['resource'], PATHINFO_EXTENSION)) {
case 'xml':
$class = 'Symfony\\Components\\Routing\\Loader\\XmlFileLoader';
break;
}
}
$loader = null === $class ? $this : new $class($this->paths);
$importedFile = $this->getAbsolutePath($import['resource'], dirname($file));
$collection->addCollection($loader->load($importedFile), isset($import['prefix']) ? $import['prefix'] : null);
2010-02-17 13:53:31 +00:00
}
protected function loadFile($file)
2010-02-17 13:53:31 +00:00
{
return Yaml::load($file);
2010-02-17 13:53:31 +00:00
}
}