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/XmlFileLoader.php

171 lines
5.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
/*
* 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.
*/
/**
* XmlFileLoader loads XML routing files.
*
* @package Symfony
* @subpackage Components_Routing
2010-02-17 13:53:31 +00:00
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class XmlFileLoader extends FileLoader
{
/**
* Loads an XML file.
*
* @param string $file A XML file path
*
* @return RouteCollection A RouteCollection instance
*
* @throws \InvalidArgumentException When a tag can't be parsed
*/
public function load($file)
2010-02-17 13:53:31 +00:00
{
$path = $this->findFile($file);
$xml = $this->loadFile($path);
$collection = new RouteCollection();
$collection->addResource(new FileResource($path));
// process routes and imports
foreach ($xml->documentElement->childNodes as $node) {
if (!$node instanceof \DOMElement) {
continue;
}
switch ($node->tagName) {
case 'route':
$this->parseRoute($collection, $node, $path);
break;
case 'import':
$this->parseImport($collection, $node, $path);
break;
default:
throw new \InvalidArgumentException(sprintf('Unable to parse tag "%s"', $node->tagName));
}
}
return $collection;
2010-02-17 13:53:31 +00:00
}
protected function parseRoute(RouteCollection $collection, $definition, $file)
2010-02-17 13:53:31 +00:00
{
$defaults = array();
$requirements = array();
$options = array();
foreach ($definition->childNodes as $node) {
if (!$node instanceof \DOMElement) {
continue;
}
switch ($node->tagName) {
case 'default':
$defaults[(string) $node->getAttribute('key')] = trim((string) $node->nodeValue);
break;
case 'option':
$options[(string) $node->getAttribute('key')] = trim((string) $node->nodeValue);
break;
case 'requirement':
$requirements[(string) $node->getAttribute('key')] = trim((string) $node->nodeValue);
break;
default:
throw new \InvalidArgumentException(sprintf('Unable to parse tag "%s"', $node->tagName));
}
}
$route = new Route((string) $definition->getAttribute('pattern'), $defaults, $requirements, $options);
$collection->addRoute((string) $definition->getAttribute('id'), $route);
2010-02-17 13:53:31 +00:00
}
protected function parseImport(RouteCollection $collection, $node, $file)
2010-02-17 13:53:31 +00:00
{
$class = null;
if ($node->hasAttribute('class') && $import->getAttribute('class') !== get_class($this)) {
$class = (string) $node->getAttribute('class');
} else {
// try to detect loader with the extension
switch (pathinfo((string) $node->getAttribute('resource'), PATHINFO_EXTENSION)) {
case 'yml':
$class = 'Symfony\\Components\\Routing\\Loader\\YamlFileLoader';
break;
}
}
$loader = null === $class ? $this : new $class($this->paths);
$importedFile = $this->getAbsolutePath((string) $node->getAttribute('resource'), dirname($file));
$collection->addCollection($loader->load($importedFile), (string) $node->getAttribute('prefix'));
2010-02-17 13:53:31 +00:00
}
/**
* @throws \InvalidArgumentException When loading of XML file returns error
*/
protected function loadFile($path)
2010-02-17 13:53:31 +00:00
{
$dom = new \DOMDocument();
libxml_use_internal_errors(true);
if (!$dom->load($path, LIBXML_COMPACT)) {
throw new \InvalidArgumentException(implode("\n", $this->getXmlErrors()));
}
$dom->validateOnParse = true;
$dom->normalizeDocument();
libxml_use_internal_errors(false);
$this->validate($dom, $path);
return $dom;
2010-02-17 13:53:31 +00:00
}
/**
* @throws \InvalidArgumentException When xml doesn't validate its xsd schema
*/
protected function validate($dom, $file)
2010-02-17 13:53:31 +00:00
{
2010-05-21 15:18:29 +01:00
$parts = explode('/', str_replace('\\', '/', __DIR__.'/schema/routing/routing-1.0.xsd'));
$drive = '\\' === DIRECTORY_SEPARATOR ? array_shift($parts) : '';
$location = 'file:///'.$drive.implode('/', array_map('rawurlencode', $parts));
$current = libxml_use_internal_errors(true);
if (!$dom->schemaValidate($location)) {
throw new \InvalidArgumentException(implode("\n", $this->getXmlErrors()));
}
2010-05-21 15:18:29 +01:00
libxml_use_internal_errors($current);
2010-02-17 13:53:31 +00:00
}
protected function getXmlErrors()
2010-02-17 13:53:31 +00:00
{
$errors = array();
foreach (libxml_get_errors() as $error) {
$errors[] = sprintf('[%s %s] %s (in %s - line %d, column %d)',
LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR',
$error->code,
trim($error->message),
$error->file ? $error->file : 'n/a',
$error->line,
$error->column
);
}
libxml_clear_errors();
return $errors;
2010-02-17 13:53:31 +00:00
}
}