aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/controller/resolver.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-09-05 13:56:57 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-09-05 13:56:57 -0500
commite8ab8fe0bc7d087fe3c9b5d2a3e545f228bb3096 (patch)
tree6a053afa0a156204112b480707608cac60770ac5 /phpBB/includes/controller/resolver.php
parentabaa53b0b295358efcf591587485c01a027cd5cb (diff)
parentdd86e8d0ae0179cf50076cdb1a8020266b6432a5 (diff)
downloadforums-e8ab8fe0bc7d087fe3c9b5d2a3e545f228bb3096.tar
forums-e8ab8fe0bc7d087fe3c9b5d2a3e545f228bb3096.tar.gz
forums-e8ab8fe0bc7d087fe3c9b5d2a3e545f228bb3096.tar.bz2
forums-e8ab8fe0bc7d087fe3c9b5d2a3e545f228bb3096.tar.xz
forums-e8ab8fe0bc7d087fe3c9b5d2a3e545f228bb3096.zip
Merge branch 'develop' of github.com:phpbb/phpbb3 into ticket/8323
# By Joas Schilling (613) and others # Via Andreas Fischer (214) and others * 'develop' of github.com:phpbb/phpbb3: (2494 commits) [ticket/11825] Move schema_data.php into includes/ instead of phpbb/ [ticket/11215] Remove unnecessary comment [ticket/11755] MySQL upgrader out of date [prep-release-3.0.12] Update Changelog for 3.0.12-RC3 release. [prep-release-3.0.12] Bumping version number for 3.0.12-RC3. [ticket/11823] Set up nginx server to match PHP files with characters after .php [ticket/11812] Fix empty define [ticket/11818] Update Symfony dependencies to 2.3.* [ticket/11791] Load adm/ events from styles/adm/event/ [ticket/11215] Fix helper_url_test.php tests [ticket/11215] Add newline back to .htaccess, fix wording [ticket/11215] Update comment in .htaccess [ticket/11215] Uncomment rewrite rules in .htaccess [ticket/11215] Make controller helper url() method use correct format [ticket/11215] Add commented-out URL rewrite capability to .htaccess [ticket/11821] Fix comma usage next to "You are receiving this notification". [ticket/11769] Allow using 0 as poster name [ticket/11769] Allow '0' as username [ticket/11215] Use new URL structure for controllers [ticket/11215] Everything appears to be working... ... Conflicts: phpBB/includes/functions_privmsgs.php
Diffstat (limited to 'phpBB/includes/controller/resolver.php')
-rw-r--r--phpBB/includes/controller/resolver.php128
1 files changed, 0 insertions, 128 deletions
diff --git a/phpBB/includes/controller/resolver.php b/phpBB/includes/controller/resolver.php
deleted file mode 100644
index ee469aa9c8..0000000000
--- a/phpBB/includes/controller/resolver.php
+++ /dev/null
@@ -1,128 +0,0 @@
-<?php
-/**
-*
-* @package controller
-* @copyright (c) 2012 phpBB Group
-* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
-*
-*/
-
-/**
-* @ignore
-*/
-if (!defined('IN_PHPBB'))
-{
- exit;
-}
-
-use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface;
-use Symfony\Component\DependencyInjection\ContainerInterface;
-use Symfony\Component\HttpFoundation\Request;
-
-/**
-* Controller manager class
-* @package phpBB3
-*/
-class phpbb_controller_resolver implements ControllerResolverInterface
-{
- /**
- * User object
- * @var phpbb_user
- */
- protected $user;
-
- /**
- * ContainerInterface object
- * @var ContainerInterface
- */
- protected $container;
-
- /**
- * Construct method
- *
- * @param phpbb_user $user User Object
- * @param ContainerInterface $container ContainerInterface object
- */
- public function __construct(phpbb_user $user, ContainerInterface $container)
- {
- $this->user = $user;
- $this->container = $container;
- }
-
- /**
- * Load a controller callable
- *
- * @param Symfony\Component\HttpFoundation\Request $request Symfony Request object
- * @return bool|Callable Callable or false
- * @throws phpbb_controller_exception
- */
- public function getController(Request $request)
- {
- $controller = $request->attributes->get('_controller');
-
- if (!$controller)
- {
- throw new phpbb_controller_exception($this->user->lang['CONTROLLER_NOT_SPECIFIED']);
- }
-
- // Require a method name along with the service name
- if (stripos($controller, ':') === false)
- {
- throw new phpbb_controller_exception($this->user->lang['CONTROLLER_METHOD_NOT_SPECIFIED']);
- }
-
- list($service, $method) = explode(':', $controller);
-
- if (!$this->container->has($service))
- {
- throw new phpbb_controller_exception($this->user->lang('CONTROLLER_SERVICE_UNDEFINED', $service));
- }
-
- $controller_object = $this->container->get($service);
-
- return array($controller_object, $method);
- }
-
- /**
- * Dependencies should be specified in the service definition and can be
- * then accessed in __construct(). Arguments are sent through the URL path
- * and should match the parameters of the method you are using as your
- * controller.
- *
- * @param Symfony\Component\HttpFoundation\Request $request Symfony Request object
- * @param mixed $controller A callable (controller class, method)
- * @return bool False
- * @throws phpbb_controller_exception
- */
- public function getArguments(Request $request, $controller)
- {
- // At this point, $controller contains the object and method name
- list($object, $method) = $controller;
- $mirror = new ReflectionMethod($object, $method);
-
- $arguments = array();
- $parameters = $mirror->getParameters();
- $attributes = $request->attributes->all();
- foreach ($parameters as $param)
- {
- if (array_key_exists($param->name, $attributes))
- {
- $arguments[] = $attributes[$param->name];
- }
- else if ($param->getClass() && $param->getClass()->isInstance($request))
- {
- $arguments[] = $request;
- }
- else if ($param->isDefaultValueAvailable())
- {
- $arguments[] = $param->getDefaultValue();
- }
- else
- {
- throw new phpbb_controller_exception($this->user->lang('CONTROLLER_ARGUMENT_VALUE_MISSING', $param->getPosition() + 1, get_class($object) . ':' . $method, $param->name));
- }
- }
-
- return $arguments;
- }
-}