mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-26 07:44:15 +00:00
175 lines
5.3 KiB
PHP
175 lines
5.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\HttpKernel\Controller;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/**
|
|
* This implementation uses the '_controller' request attribute to determine
|
|
* the controller to execute and uses the request attributes to determine
|
|
* the controller method arguments.
|
|
*
|
|
* @author Fabien Potencier <fabien@symfony.com>
|
|
*/
|
|
class ControllerResolver implements ControllerResolverInterface
|
|
{
|
|
private $logger;
|
|
|
|
public function __construct(LoggerInterface $logger = null)
|
|
{
|
|
$this->logger = $logger;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* This method looks for a '_controller' request attribute that represents
|
|
* the controller name (a string like ClassName::MethodName).
|
|
*/
|
|
public function getController(Request $request)
|
|
{
|
|
if (!$controller = $request->attributes->get('_controller')) {
|
|
if (null !== $this->logger) {
|
|
$this->logger->warning('Unable to look for the controller as the "_controller" parameter is missing.');
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
if (is_array($controller)) {
|
|
return $controller;
|
|
}
|
|
|
|
if (is_object($controller)) {
|
|
if (method_exists($controller, '__invoke')) {
|
|
return $controller;
|
|
}
|
|
|
|
throw new \InvalidArgumentException(sprintf('Controller "%s" for URI "%s" is not callable.', get_class($controller), $request->getPathInfo()));
|
|
}
|
|
|
|
if (false === strpos($controller, ':')) {
|
|
if (method_exists($controller, '__invoke')) {
|
|
return $this->instantiateController($controller);
|
|
} elseif (function_exists($controller)) {
|
|
return $controller;
|
|
}
|
|
}
|
|
|
|
$callable = $this->createController($controller);
|
|
|
|
if (!is_callable($callable)) {
|
|
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable. %s', $request->getPathInfo(), $this->getControllerError($callable)));
|
|
}
|
|
|
|
return $callable;
|
|
}
|
|
|
|
/**
|
|
* Returns a callable for the given controller.
|
|
*
|
|
* @param string $controller A Controller string
|
|
*
|
|
* @return callable A PHP callable
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
*/
|
|
protected function createController($controller)
|
|
{
|
|
if (false === strpos($controller, '::')) {
|
|
throw new \InvalidArgumentException(sprintf('Unable to find controller "%s".', $controller));
|
|
}
|
|
|
|
list($class, $method) = explode('::', $controller, 2);
|
|
|
|
if (!class_exists($class)) {
|
|
throw new \InvalidArgumentException(sprintf('Class "%s" does not exist.', $class));
|
|
}
|
|
|
|
return array($this->instantiateController($class), $method);
|
|
}
|
|
|
|
/**
|
|
* Returns an instantiated controller.
|
|
*
|
|
* @param string $class A class name
|
|
*
|
|
* @return object
|
|
*/
|
|
protected function instantiateController($class)
|
|
{
|
|
return new $class();
|
|
}
|
|
|
|
private function getControllerError($callable)
|
|
{
|
|
if (is_string($callable)) {
|
|
if (false !== strpos($callable, '::')) {
|
|
$callable = explode('::', $callable);
|
|
}
|
|
|
|
if (class_exists($callable) && !method_exists($callable, '__invoke')) {
|
|
return sprintf('Class "%s" does not have a method "__invoke".', $callable);
|
|
}
|
|
|
|
if (!function_exists($callable)) {
|
|
return sprintf('Function "%s" does not exist.', $callable);
|
|
}
|
|
}
|
|
|
|
if (!is_array($callable)) {
|
|
return sprintf('Invalid type for controller given, expected string or array, got "%s".', gettype($callable));
|
|
}
|
|
|
|
if (2 !== count($callable)) {
|
|
return 'Invalid format for controller, expected array(controller, method) or controller::method.';
|
|
}
|
|
|
|
list($controller, $method) = $callable;
|
|
|
|
if (is_string($controller) && !class_exists($controller)) {
|
|
return sprintf('Class "%s" does not exist.', $controller);
|
|
}
|
|
|
|
$className = is_object($controller) ? get_class($controller) : $controller;
|
|
|
|
if (method_exists($controller, $method)) {
|
|
return sprintf('Method "%s" on class "%s" should be public and non-abstract.', $method, $className);
|
|
}
|
|
|
|
$collection = get_class_methods($controller);
|
|
|
|
$alternatives = array();
|
|
|
|
foreach ($collection as $item) {
|
|
$lev = levenshtein($method, $item);
|
|
|
|
if ($lev <= strlen($method) / 3 || false !== strpos($item, $method)) {
|
|
$alternatives[] = $item;
|
|
}
|
|
}
|
|
|
|
asort($alternatives);
|
|
|
|
$message = sprintf('Expected method "%s" on class "%s"', $method, $className);
|
|
|
|
if (count($alternatives) > 0) {
|
|
$message .= sprintf(', did you mean "%s"?', implode('", "', $alternatives));
|
|
} else {
|
|
$message .= sprintf('. Available methods: "%s".', implode('", "', $collection));
|
|
}
|
|
|
|
return $message;
|
|
}
|
|
}
|