[ticket/12620] Fix rebase

PHPBB3-12620
This commit is contained in:
Tristan Darricau 2014-11-20 22:40:37 +01:00
parent 93f61a4a7d
commit 677b5b2cd4
11 changed files with 188 additions and 168 deletions

View file

@ -157,6 +157,7 @@ services:
- @ext.manager - @ext.manager
- %core.root_path% - %core.root_path%
- %core.php_ext% - %core.php_ext%
- %core.environment%
router.listener: router.listener:
class: Symfony\Component\HttpKernel\EventListener\RouterListener class: Symfony\Component\HttpKernel\EventListener\RouterListener

View file

@ -41,8 +41,9 @@ class helper
protected $config; protected $config;
/** /**
* @var \phpbb\routing\router phpBB router * phpBB router
*/ * @var \phpbb\routing\router
*/
protected $router; protected $router;
/* @var \phpbb\symfony_request */ /* @var \phpbb\symfony_request */

View file

@ -19,7 +19,7 @@ use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Dumper\PhpDumper; use Symfony\Component\DependencyInjection\Dumper\PhpDumper;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag; use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
use Symfony\Component\HttpKernel\DependencyInjection\RegisterListenersPass; use Symfony\Component\EventDispatcher\DependencyInjection\RegisterListenersPass;
use Symfony\Component\HttpKernel\DependencyInjection\MergeExtensionConfigurationPass; use Symfony\Component\HttpKernel\DependencyInjection\MergeExtensionConfigurationPass;
class container_builder class container_builder

View file

@ -25,29 +25,29 @@ use Symfony\Component\HttpKernel\DependencyInjection\Extension;
class core extends Extension class core extends Extension
{ {
/** /**
* Config path * Config path
* @var string * @var string
*/ */
protected $config_path; protected $config_path;
/** /**
* Constructor * Constructor
* *
* @param string $config_path Config path * @param string $config_path Config path
*/ */
public function __construct($config_path) public function __construct($config_path)
{ {
$this->config_path = $config_path; $this->config_path = $config_path;
} }
/** /**
* Loads a specific configuration. * Loads a specific configuration.
* *
* @param array $configs An array of configuration values * @param array $configs An array of configuration values
* @param ContainerBuilder $container A ContainerBuilder instance * @param ContainerBuilder $container A ContainerBuilder instance
* *
* @throws \InvalidArgumentException When provided tag is not defined in this extension * @throws \InvalidArgumentException When provided tag is not defined in this extension
*/ */
public function load(array $configs, ContainerBuilder $container) public function load(array $configs, ContainerBuilder $container)
{ {
$loader = new YamlFileLoader($container, new FileLocator(phpbb_realpath($this->config_path))); $loader = new YamlFileLoader($container, new FileLocator(phpbb_realpath($this->config_path)));
@ -81,12 +81,12 @@ class core extends Extension
} }
/** /**
* Returns the recommended alias to use in XML. * Returns the recommended alias to use in XML.
* *
* This alias is also the mandatory prefix to use when using YAML. * This alias is also the mandatory prefix to use when using YAML.
* *
* @return string The alias * @return string The alias
*/ */
public function getAlias() public function getAlias()
{ {
return 'core'; return 'core';

View file

@ -20,8 +20,8 @@ use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\HttpKernel\DependencyInjection\Extension;
/** /**
* Container core extension * Container core extension
*/ */
class extension_base extends Extension class extension_base extends Extension
{ {
/** /**

View file

@ -25,95 +25,119 @@ use Symfony\Component\Config\FileLocator;
use phpbb\extension\manager; use phpbb\extension\manager;
/** /**
* Integration of all pieces of the routing system for easier use. * Integration of all pieces of the routing system for easier use.
*/ */
class router implements RouterInterface class router implements RouterInterface
{ {
/** /**
* @var manager Extension manager * Extension manager
*/ *
* @var manager
*/
protected $extension_manager; protected $extension_manager;
/** /**
* @var string phpBB root path * phpBB root path
*/ *
* @var string
*/
protected $phpbb_root_path; protected $phpbb_root_path;
/** /**
* @var string PHP file extensions * PHP file extensions
*/ *
* @var string
*/
protected $php_ext; protected $php_ext;
/** /**
* @var array YAML file(s) containing route information * Name of the current environment
*/ *
* @var string
*/
protected $environment;
/**
* YAML file(s) containing route information
*
* @var array
*/
protected $routing_files; protected $routing_files;
/** /**
* @var \Symfony\Component\Routing\Matcher\UrlMatcherInterface|null * @var \Symfony\Component\Routing\Matcher\UrlMatcherInterface|null
*/ */
protected $matcher; protected $matcher;
/** /**
* @var \Symfony\Component\Routing\Generator\UrlGeneratorInterface|null * @var \Symfony\Component\Routing\Generator\UrlGeneratorInterface|null
*/ */
protected $generator; protected $generator;
/** /**
* @var RequestContext * @var RequestContext
*/ */
protected $context; protected $context;
/** /**
* @var RouteCollection|null * @var RouteCollection|null
*/ */
protected $route_collection; protected $route_collection;
/** /**
* Construct method * Construct method
* *
* @param manager $extension_manager The extension manager * @param manager $extension_manager Extension manager
* @param string $phpbb_root_path phpBB root path * @param string $phpbb_root_path phpBB root path
* @param string $php_ext PHP file extension * @param string $php_ext PHP file extension
* @param array $routing_files Array of strings containing paths to YAML files holding route information * @param string $environment Name of the current environment
*/ * @param array $routing_files Array of strings containing paths to YAML files holding route information
public function __construct(manager $extension_manager, $phpbb_root_path, $php_ext, $routing_files = array()) */
public function __construct(manager $extension_manager, $phpbb_root_path, $php_ext, $environment, $routing_files = array())
{ {
$this->extension_manager = $extension_manager; $this->extension_manager = $extension_manager;
$this->routing_files = $routing_files; $this->routing_files = $routing_files;
$this->phpbb_root_path = $phpbb_root_path; $this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext; $this->php_ext = $php_ext;
$this->environment = $environment;
$this->context = new RequestContext(); $this->context = new RequestContext();
} }
/** /**
* Find the list of routing files * Find the list of routing files
* *
* @param \phpbb\finder $finder * @param array $paths Array of paths where to look for routing files.
* @return router * @return null
*/ */
public function find_routing_files(\phpbb\finder $finder) public function find_routing_files(array $paths)
{ {
if ($this->routing_files === null || empty($this->routing_files)) $this->routing_files = array($this->phpbb_root_path . 'config/' . $this->environment . '/routing/environment.yml');
foreach ($paths as $path)
{ {
// We hardcode the path to the core config directory if (file_exists($path . 'config/' . $this->environment . '/routing/environment.yml'))
// because the finder cannot find it {
$this->routing_files = array_merge($this->routing_files, array('config/routing.yml'), array_keys($finder $this->routing_files[] = $path . 'config/' . $this->environment . '/routing/environment.yml';
->directory('/config') }
->suffix('routing.yml') else if (!is_dir($path . 'config/' . $this->environment))
->find() {
)); if (file_exists($path . 'config/default/routing/environment.yml'))
{
$this->routing_files[] = $path . 'config/default/routing/environment.yml';
}
else if (!is_dir($path . 'config/default/routing') && file_exists($path . 'config/routing.yml'))
{
$this->routing_files[] = $path . 'config/routing.yml';
}
}
} }
return $this;
} }
/** /**
* Find a list of controllers * Find a list of controllers
* *
* @param string $base_path Base path to prepend to file paths * @param string $base_path Base path to prepend to file paths
* @return router * @return router
*/ */
public function find($base_path = '') public function find($base_path = '')
{ {
if ($this->route_collection === null || $this->route_collection->count() === 0) if ($this->route_collection === null || $this->route_collection->count() === 0)
@ -130,15 +154,15 @@ class router implements RouterInterface
} }
/** /**
* Get the list of routes * Get the list of routes
* *
* @return RouteCollection Get the route collection * @return RouteCollection Get the route collection
*/ */
public function get_routes() public function get_routes()
{ {
if ($this->route_collection == null || empty($this->routing_files)) if ($this->route_collection == null || empty($this->routing_files))
{ {
$this->find_routing_files($this->extension_manager->get_finder()) $this->find_routing_files($this->extension_manager->all_enabled())
->find($this->phpbb_root_path); ->find($this->phpbb_root_path);
} }
@ -146,16 +170,16 @@ class router implements RouterInterface
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function getRouteCollection() public function getRouteCollection()
{ {
return $this->get_routes(); return $this->get_routes();
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function setContext(RequestContext $context) public function setContext(RequestContext $context)
{ {
$this->context = $context; $this->context = $context;
@ -171,34 +195,34 @@ class router implements RouterInterface
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function getContext() public function getContext()
{ {
return $this->context; return $this->context;
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH) public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH)
{ {
return $this->get_generator()->generate($name, $parameters, $referenceType); return $this->get_generator()->generate($name, $parameters, $referenceType);
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function match($pathinfo) public function match($pathinfo)
{ {
return $this->get_matcher()->match($pathinfo); return $this->get_matcher()->match($pathinfo);
} }
/** /**
* Gets the UrlMatcher instance associated with this Router. * Gets the UrlMatcher instance associated with this Router.
* *
* @return \Symfony\Component\Routing\Matcher\UrlMatcherInterface A UrlMatcherInterface instance * @return \Symfony\Component\Routing\Matcher\UrlMatcherInterface A UrlMatcherInterface instance
*/ */
public function get_matcher() public function get_matcher()
{ {
if ($this->matcher !== null) if ($this->matcher !== null)
@ -218,8 +242,8 @@ class router implements RouterInterface
return $this->matcher; return $this->matcher;
} }
/** /**
* Creates a new dumped URL Matcher (dump it if necessary) * Creates a new dumped URL Matcher (dump it if necessary)
*/ */
protected function create_dumped_url_matcher() protected function create_dumped_url_matcher()
{ {
if (!file_exists($this->phpbb_root_path . 'cache/url_matcher.' . $this->php_ext)) if (!file_exists($this->phpbb_root_path . 'cache/url_matcher.' . $this->php_ext))
@ -240,18 +264,18 @@ class router implements RouterInterface
} }
/** /**
* Creates a new URL Matcher * Creates a new URL Matcher
*/ */
protected function create_new_url_matcher() protected function create_new_url_matcher()
{ {
$this->matcher = new UrlMatcher($this->get_routes(), $this->context); $this->matcher = new UrlMatcher($this->get_routes(), $this->context);
} }
/** /**
* Gets the UrlGenerator instance associated with this Router. * Gets the UrlGenerator instance associated with this Router.
* *
* @return \Symfony\Component\Routing\Generator\UrlGeneratorInterface A UrlGeneratorInterface instance * @return \Symfony\Component\Routing\Generator\UrlGeneratorInterface A UrlGeneratorInterface instance
*/ */
public function get_generator() public function get_generator()
{ {
if ($this->generator !== null) if ($this->generator !== null)
@ -272,8 +296,8 @@ class router implements RouterInterface
} }
/** /**
* Creates a new dumped URL Generator (dump it if necessary) * Creates a new dumped URL Generator (dump it if necessary)
*/ */
protected function create_dumped_url_generator() protected function create_dumped_url_generator()
{ {
if (!file_exists($this->phpbb_root_path . 'cache/url_generator.' . $this->php_ext)) if (!file_exists($this->phpbb_root_path . 'cache/url_generator.' . $this->php_ext))
@ -294,8 +318,8 @@ class router implements RouterInterface
} }
/** /**
* Creates a new URL Generator * Creates a new URL Generator
*/ */
protected function create_new_url_generator() protected function create_new_url_generator()
{ {
$this->generator = new UrlGenerator($this->get_routes(), $this->context); $this->generator = new UrlGenerator($this->get_routes(), $this->context);

View file

@ -1,26 +1,26 @@
<?php <?php
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
class barfoo extends \phpbb\avatar\driver\driver class barfoo extends \phpbb\avatar\driver\driver
{ {
public function get_data($row) public function get_data($row)
{ {
return array(); return array();
} }
public function prepare_form($request, $template, $user, $row, &$error) public function prepare_form($request, $template, $user, $row, &$error)
{ {
return false; return false;
} }
public function process_form($request, $template, $user, $row, &$error) public function process_form($request, $template, $user, $row, &$error)
{ {
return false; return false;
} }
public function get_template_name() public function get_template_name()
{ {
return 'barfoo.html'; return 'barfoo.html';
} }
} }

View file

@ -1,26 +1,26 @@
<?php <?php
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
class foobar extends \phpbb\avatar\driver\driver class foobar extends \phpbb\avatar\driver\driver
{ {
public function get_data($row) public function get_data($row)
{ {
return array(); return array();
} }
public function prepare_form($request, $template, $user, $row, &$error) public function prepare_form($request, $template, $user, $row, &$error)
{ {
return false; return false;
} }
public function process_form($request, $template, $user, $row, &$error) public function process_form($request, $template, $user, $row, &$error)
{ {
return false; return false;
} }
public function get_template_name() public function get_template_name()
{ {
return 'foobar.html'; return 'foobar.html';
} }
} }

View file

@ -113,8 +113,8 @@ abstract class phpbb_controller_common_helper_route extends phpbb_test_case
) )
); );
$this->router = new phpbb_mock_router($this->extension_manager, dirname(__FILE__) . '/', 'php'); $this->router = new phpbb_mock_router($this->extension_manager, dirname(__FILE__) . '/', 'php', PHPBB_ENVIRONMENT);
$this->router->find_routing_files($finder); $this->router->find_routing_files($this->extension_manager->all_enabled());
$this->router->find(dirname(__FILE__) . '/'); $this->router->find(dirname(__FILE__) . '/');
// Set correct current phpBB root path // Set correct current phpBB root path
$this->root_path = $this->get_phpbb_root_path(); $this->root_path = $this->get_phpbb_root_path();
@ -319,7 +319,7 @@ abstract class phpbb_controller_common_helper_route extends phpbb_test_case
$this->helper = new phpbb_mock_controller_helper($this->template, $this->user, $this->config, $this->router, $this->symfony_request, $this->request, $this->filesystem, $this->root_path, 'php', dirname(__FILE__) . '/'); $this->helper = new phpbb_mock_controller_helper($this->template, $this->user, $this->config, $this->router, $this->symfony_request, $this->request, $this->filesystem, $this->root_path, 'php', dirname(__FILE__) . '/');
$this->assertEquals($expected, $this->helper->route($route, $params, $is_amp, $session_id, UrlGeneratorInterface::NETWORK_PATH), $description); $this->assertEquals($expected, $this->helper->route($route, $params, $is_amp, $session_id, UrlGeneratorInterface::NETWORK_PATH), $description);
} }
//TODO
public function helper_url_data_absolute_with_rewrite() public function helper_url_data_absolute_with_rewrite()
{ {
return array( return array(

View file

@ -40,8 +40,8 @@ class phpbb_controller_controller_test extends phpbb_test_case
public function test_router_find_files() public function test_router_find_files()
{ {
$router = new \phpbb\routing\router($this->extension_manager, dirname(__FILE__) . '/', 'php'); $router = new \phpbb\routing\router($this->extension_manager, dirname(__FILE__) . '/', 'php', PHPBB_ENVIRONMENT);
$router->find_routing_files($this->extension_manager->get_finder()); $router->find_routing_files($this->extension_manager->all_enabled());
$routes = $router->find(__DIR__)->get_routes(); $routes = $router->find(__DIR__)->get_routes();
// This will need to be updated if any new routes are defined // This will need to be updated if any new routes are defined

View file

@ -36,16 +36,10 @@ class phpbb_pagination_pagination_test extends phpbb_template_template_test_case
$filesystem = new \phpbb\filesystem(); $filesystem = new \phpbb\filesystem();
$manager = new phpbb_mock_extension_manager(dirname(__FILE__) . '/', array()); $manager = new phpbb_mock_extension_manager(dirname(__FILE__) . '/', array());
$finder = new \phpbb\finder(
$filesystem,
dirname(__FILE__) . '/',
new phpbb_mock_cache()
);
$finder->set_extensions(array_keys($manager->all_enabled()));
$this->config = new \phpbb\config\config(array('enable_mod_rewrite' => '1')); $this->config = new \phpbb\config\config(array('enable_mod_rewrite' => '1'));
$router = new phpbb_mock_router($manager, dirname(__FILE__) . '/', 'php'); $router = new phpbb_mock_router($manager, dirname(__FILE__) . '/', 'php', PHPBB_ENVIRONMENT);
$router->find_routing_files($finder); $router->find_routing_files($manager->all_enabled());
$router->find(dirname(__FILE__) . '/'); $router->find(dirname(__FILE__) . '/');
$request = new phpbb_mock_request(); $request = new phpbb_mock_request();