HummingBirdAnimeClient/src/AnimeClient/Dispatcher.php

410 lines
9.0 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
2015-11-16 11:40:01 -05:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2015-11-16 11:40:01 -05:00
*
* PHP version 7.4
2016-08-30 10:01:18 -04:00
*
2015-11-16 11:40:01 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
2016-08-30 10:01:18 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 5
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
2016-10-20 22:09:36 -04:00
2015-09-15 13:19:29 -04:00
namespace Aviat\AnimeClient;
2015-05-22 12:36:26 -04:00
2017-03-30 16:57:58 -04:00
use function Aviat\Ion\_dir;
2017-02-22 14:46:35 -05:00
2019-12-09 14:34:23 -05:00
use Aura\Router\{Matcher, Route, Rule};
2018-01-16 14:58:07 -05:00
2017-04-05 13:01:51 -04:00
use Aviat\AnimeClient\API\FailedResponseException;
2015-09-17 23:11:18 -04:00
use Aviat\Ion\Di\ContainerInterface;
2016-03-03 16:53:17 -05:00
use Aviat\Ion\Friend;
use Aviat\Ion\StringWrapper;
2015-09-17 23:11:18 -04:00
2019-12-09 14:34:23 -05:00
use LogicException;
use ReflectionException;
/**
* Basic routing/ dispatch
*/
final class Dispatcher extends RoutingBase {
2015-05-22 12:36:26 -04:00
use StringWrapper;
/**
* The route-matching object
* @var object $router
*/
protected $router;
/**
* The route matcher
2018-01-16 14:58:07 -05:00
* @var Matcher $matcher
*/
protected $matcher;
/**
2019-01-07 09:08:00 -05:00
* Routing array
* @var array
*/
2019-01-07 09:08:00 -05:00
protected $routes;
/**
* Routes added to router
2017-02-16 14:30:06 -05:00
* @var array $outputRoutes
*/
2017-02-16 14:30:06 -05:00
protected $outputRoutes;
/**
* Constructor
2015-06-29 09:46:49 -04:00
*
* @param ContainerInterface $container
*/
2015-09-17 23:11:18 -04:00
public function __construct(ContainerInterface $container)
2015-05-22 12:36:26 -04:00
{
2015-09-14 15:49:20 -04:00
parent::__construct($container);
2018-11-09 10:38:35 -05:00
$router = $this->container->get('aura-router');
$this->router = $router->getMap();
$this->matcher = $router->getMatcher();
2019-01-07 09:08:00 -05:00
$this->routes = $this->config->get('routes');
2017-02-16 14:30:06 -05:00
$this->outputRoutes = $this->setupRoutes();
2015-05-22 12:36:26 -04:00
}
/**
* Get the current route object, if one matches
*
2019-12-09 14:34:23 -05:00
* @return Route|false
2015-05-22 12:36:26 -04:00
*/
2016-12-20 12:58:37 -05:00
public function getRoute()
2015-05-22 12:36:26 -04:00
{
$logger = $this->container->getLogger();
2017-02-16 14:30:06 -05:00
$rawRoute = $this->request->getUri()->getPath();
2018-01-16 14:58:07 -05:00
$routePath = '/' . trim($rawRoute, '/');
if ($logger !== NULL)
{
$logger->info('Dispatcher - Routing data from get_route method');
$logger->info(print_r([
'route_path' => $routePath
], TRUE));
}
return $this->matcher->match($this->request);
2015-05-22 12:36:26 -04:00
}
/**
* Get list of routes applied
*
* @return array
*/
2018-11-09 10:38:35 -05:00
public function getOutputRoutes(): array
{
2017-02-16 14:30:06 -05:00
return $this->outputRoutes;
}
2015-05-22 12:36:26 -04:00
/**
* Handle the current route
*
2015-10-12 14:27:20 -04:00
* @param object|null $route
2015-05-22 12:36:26 -04:00
* @return void
2019-12-09 14:34:23 -05:00
* @throws ReflectionException
2015-05-22 12:36:26 -04:00
*/
public function __invoke($route = NULL): void
2015-05-22 12:36:26 -04:00
{
$logger = $this->container->getLogger();
2015-05-27 09:03:42 -04:00
if ($route === NULL)
2015-05-22 12:36:26 -04:00
{
2016-12-20 12:58:37 -05:00
$route = $this->getRoute();
if ($logger !== NULL)
{
$logger->info('Dispatcher - Route invoke arguments');
$logger->info(print_r($route, TRUE));
}
2015-05-22 12:36:26 -04:00
}
2020-03-16 15:06:55 -04:00
if ( ! $route)
2015-05-22 12:36:26 -04:00
{
2016-01-08 15:54:21 -05:00
// If not route was matched, return an appropriate http
// error message
2017-02-16 14:30:06 -05:00
$errorRoute = $this->getErrorParams();
$controllerName = DEFAULT_CONTROLLER;
2017-02-16 14:30:06 -05:00
$actionMethod = $errorRoute['action_method'];
$params = $errorRoute['params'];
2020-03-16 15:06:55 -04:00
$this->call($controllerName, $actionMethod, $params);
return;
2016-01-08 16:39:18 -05:00
}
2020-03-16 15:06:55 -04:00
$parsed = $this->processRoute(new Friend($route));
$controllerName = $parsed['controller_name'];
$actionMethod = $parsed['action_method'];
$params = $parsed['params'];
$this->call($controllerName, $actionMethod, $params);
2016-01-08 16:39:18 -05:00
}
/**
* Parse out the arguments for the appropriate controller for
* the current route
*
2019-12-09 14:34:23 -05:00
* @param Route $route
* @throws LogicException
2016-01-08 16:39:18 -05:00
* @return array
*/
protected function processRoute($route): array
2016-01-08 16:39:18 -05:00
{
2020-03-16 15:06:55 -04:00
if ( ! array_key_exists('controller', $route->attributes))
2016-01-08 16:39:18 -05:00
{
2020-03-16 15:06:55 -04:00
throw new LogicException('Missing controller');
2015-05-22 12:36:26 -04:00
}
2020-03-16 15:06:55 -04:00
if (array_key_exists('controller', $route->attributes))
2015-05-22 12:36:26 -04:00
{
2020-03-16 15:06:55 -04:00
$controllerName = $route->attributes['controller'];
2016-01-08 16:39:18 -05:00
}
2015-11-13 11:33:27 -05:00
2016-01-08 16:39:18 -05:00
// Get the full namespace for a controller if a short name is given
2017-02-16 14:30:06 -05:00
if (strpos($controllerName, '\\') === FALSE)
2016-01-08 16:39:18 -05:00
{
2016-12-20 12:58:37 -05:00
$map = $this->getControllerList();
2017-02-16 14:30:06 -05:00
$controllerName = $map[$controllerName];
2016-01-08 16:39:18 -05:00
}
2015-10-01 16:30:46 -04:00
2018-11-09 10:38:35 -05:00
$actionMethod = array_key_exists('action', $route->attributes)
? $route->attributes['action']
: NOT_FOUND_METHOD;
2015-10-01 16:30:46 -04:00
2016-03-03 16:53:17 -05:00
$params = [];
if ( ! empty($route->__get('tokens')))
2016-01-08 16:39:18 -05:00
{
2016-03-03 16:53:17 -05:00
$tokens = array_keys($route->__get('tokens'));
foreach ($tokens as $param)
{
2016-03-03 16:53:17 -05:00
if (array_key_exists($param, $route->attributes))
{
2016-03-03 16:53:17 -05:00
$params[$param] = $route->attributes[$param];
}
}
2015-05-22 12:36:26 -04:00
}
$logger = $this->container->getLogger();
if ($logger !== NULL)
{
$logger->info(json_encode($params));
}
2015-05-22 12:36:26 -04:00
2016-01-08 16:39:18 -05:00
return [
2017-02-16 14:30:06 -05:00
'controller_name' => $controllerName,
'action_method' => $actionMethod,
2016-01-08 16:39:18 -05:00
'params' => $params
];
2015-05-22 12:36:26 -04:00
}
/**
* Get the type of route, to select the current controller
*
* @return string
*/
2018-11-09 10:38:35 -05:00
public function getController(): string
{
2018-11-09 10:38:35 -05:00
$routeType = $this->config->get('default_list');
2017-02-16 14:30:06 -05:00
$requestUri = $this->request->getUri()->getPath();
$path = trim($requestUri, '/');
$segments = explode('/', $path);
2015-09-14 15:49:20 -04:00
$controller = reset($segments);
$logger = $this->container->getLogger();
if ($logger !== NULL)
{
$logger->info('Controller: ' . $controller);
}
if (empty($controller))
{
2017-02-16 14:30:06 -05:00
$controller = $routeType;
}
2018-11-09 10:38:35 -05:00
return $controller ?? '';
}
/**
* Get the list of controllers in the default namespace
*
* @return array
*/
2018-11-09 10:38:35 -05:00
public function getControllerList(): array
{
2017-02-16 14:30:06 -05:00
$defaultNamespace = DEFAULT_CONTROLLER_NAMESPACE;
2018-11-09 10:38:35 -05:00
$find = ['\\', 'Aviat/AnimeClient/'];
$replace = ['/', ''];
$path = str_replace($find, $replace, $defaultNamespace);
$path = trim($path, '/');
2017-02-16 14:30:06 -05:00
$actualPath = realpath(_dir(SRC_DIR, $path));
$classFiles = glob("{$actualPath}/*.php");
$controllers = [];
2017-02-16 14:30:06 -05:00
foreach ($classFiles as $file)
{
$rawClassName = basename(str_replace('.php', '', $file));
2019-12-09 14:34:23 -05:00
$path = (string)$this->string($rawClassName)->dasherize();
2017-02-16 14:30:06 -05:00
$className = trim($defaultNamespace . '\\' . $rawClassName, '\\');
2017-02-16 14:30:06 -05:00
$controllers[$path] = $className;
}
return $controllers;
}
2016-01-08 15:54:21 -05:00
/**
* Create the controller object and call the appropriate
* method
*
2016-12-20 12:58:37 -05:00
* @param string $controllerName - The full namespace of the controller class
2016-01-08 15:54:21 -05:00
* @param string $method
* @param array $params
* @return void
*/
2018-11-09 10:38:35 -05:00
protected function call($controllerName, $method, array $params): void
2016-01-08 15:54:21 -05:00
{
$logger = $this->container->getLogger('default');
2016-01-08 15:54:21 -05:00
2017-04-05 13:01:51 -04:00
try
{
$controller = new $controllerName($this->container);
// Run the appropriate controller method
if ($logger !== NULL)
{
$logger->debug('Dispatcher - controller arguments', $params);
}
2016-01-08 15:54:21 -05:00
\call_user_func_array([$controller, $method], $params);
2017-04-05 13:01:51 -04:00
}
catch (FailedResponseException $e)
{
$controllerName = DEFAULT_CONTROLLER;
$controller = new $controllerName($this->container);
$controller->errorPage(500,
'API request timed out',
'Failed to retrieve data from API (╯°□°)╯︵ ┻━┻');
2017-04-05 13:01:51 -04:00
}
2016-01-08 15:54:21 -05:00
}
/**
* Get the appropriate params for the error page
2019-12-09 14:34:23 -05:00
* passed on the failed route
2016-01-08 15:54:21 -05:00
*
* @return array|false
*/
2016-12-20 12:58:37 -05:00
protected function getErrorParams()
2016-01-08 15:54:21 -05:00
{
$logger = $this->container->getLogger();
$failure = $this->matcher->getFailedRoute();
if ($logger !== NULL)
{
$logger->info('Dispatcher - failed route');
$logger->info(print_r($failure, TRUE));
}
2017-02-16 14:30:06 -05:00
$actionMethod = ERROR_MESSAGE_METHOD;
2016-01-08 15:54:21 -05:00
$params = [];
switch($failure->failedRule) {
2018-10-05 14:32:05 -04:00
case Rule\Allows::class:
$params = [
'http_code' => 405,
'title' => '405 Method Not Allowed',
'message' => 'Invalid HTTP Verb'
];
break;
2018-10-05 14:32:05 -04:00
case Rule\Accepts::class:
$params = [
'http_code' => 406,
'title' => '406 Not Acceptable',
'message' => 'Unacceptable content type'
];
break;
default:
// Fall back to a 404 message
2017-02-16 14:30:06 -05:00
$actionMethod = NOT_FOUND_METHOD;
break;
2016-01-08 15:54:21 -05:00
}
return [
'params' => $params,
2017-02-16 14:30:06 -05:00
'action_method' => $actionMethod
2016-01-08 15:54:21 -05:00
];
}
/**
* Select controller based on the current url, and apply its relevent routes
*
* @return array
*/
2018-11-09 10:38:35 -05:00
protected function setupRoutes(): array
2015-05-22 12:36:26 -04:00
{
2017-02-16 14:30:06 -05:00
$routeType = $this->getController();
// Add routes
2016-01-06 11:08:56 -05:00
$routes = [];
foreach ($this->routes as $name => &$route)
2015-05-22 12:36:26 -04:00
{
$path = $route['path'];
unset($route['path']);
2017-02-16 14:30:06 -05:00
$controllerMap = $this->getControllerList();
2018-11-09 10:38:35 -05:00
$controllerClass = array_key_exists($routeType, $controllerMap)
2017-02-16 14:30:06 -05:00
? $controllerMap[$routeType]
: DEFAULT_CONTROLLER;
2016-01-06 17:06:30 -05:00
// If there's an explicit controller, try to find
// the full namespaced class name
if (array_key_exists('controller', $route))
2015-11-13 11:33:27 -05:00
{
$controllerKey = $route['controller'];
if (array_key_exists($controllerKey, $controllerMap))
{
$controllerClass = $controllerMap[$controllerKey];
}
2015-11-13 11:33:27 -05:00
}
// Prepend the controller to the route parameters
2017-02-16 14:30:06 -05:00
$route['controller'] = $controllerClass;
2015-06-17 08:50:01 -04:00
// Select the appropriate router method based on the http verb
$add = array_key_exists('verb', $route)
? strtolower($route['verb'])
: 'get';
2015-06-17 08:50:01 -04:00
// Add the route to the router object
if ( ! array_key_exists('tokens', $route))
{
$routes[] = $this->router->$add($name, $path)->defaults($route);
2020-03-16 15:06:55 -04:00
continue;
}
2015-06-17 08:50:01 -04:00
2020-03-16 15:06:55 -04:00
$tokens = $route['tokens'];
unset($route['tokens']);
$routes[] = $this->router->$add($name, $path)
->defaults($route)
->tokens($tokens);
2015-06-17 08:50:01 -04:00
}
2015-11-11 14:53:09 -05:00
return $routes;
2015-05-22 12:36:26 -04:00
}
}
2015-10-09 14:34:55 -04:00
// End of Dispatcher.php