phpOMS/Dispatcher/Dispatcher.php
2018-09-22 12:41:14 +02:00

206 lines
4.9 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.2
*
* @package phpOMS\Dispatcher
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types=1);
namespace phpOMS\Dispatcher;
use phpOMS\ApplicationAbstract;
use phpOMS\Module\ModuleAbstract;
use phpOMS\System\File\PathException;
/**
* Dispatcher class.
*
* @package phpOMS\Dispatcher
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
final class Dispatcher
{
/**
* Application.
*
* @var ApplicationAbstract|null
* @since 1.0.0
*/
private $app = null;
/**
* Controller.
*
* Set in the module manager on module initialization.
*
* @var array
* @since 1.0.0
*/
private $controllers = [];
/**
* Constructor.
*
* @param ApplicationAbstract $app Appliaction
*
* @since 1.0.0
*/
public function __construct(ApplicationAbstract $app)
{
$this->app = $app;
}
/**
* Dispatch controller.
*
* @param string|array|\Closure $controller Controller string
* @param array|null|mixed ...$data Data
*
* @return array
*
* @since 1.0.0
*/
public function dispatch($controller, ...$data) : array
{
$views = [];
if (\is_array($controller) && isset($controller['dest'])) {
$controller = $controller['dest'];
}
if (\is_string($controller)) {
$views += $this->dispatchString($controller, $data);
} elseif (\is_array($controller)) {
$views += $this->dispatchArray($controller, $data);
} elseif ($controller instanceof \Closure) {
$views[] = $this->dispatchClosure($controller, $data);
} else {
throw new \UnexpectedValueException('Unexpected controller type.');
}
return $views;
}
/**
* Dispatch string.
*
* @param string $controller Controller string
* @param array|null $data Data
*
* @return array
*
* @since 1.0.0
*/
private function dispatchString(string $controller, array $data = null) : array
{
$views = [];
$dispatch = \explode(':', $controller);
if (!\file_exists($path = __DIR__ . '/../../' . \str_replace('\\', '/', $dispatch[0]) . '.php')) {
throw new PathException($path);
}
if (($c = \count($dispatch)) === 3) {
/* Handling static functions */
$function = $dispatch[0] . '::' . $dispatch[2];
if (!\is_callable($function)) {
throw new \Exception();
}
$views[$controller] = $function(...$data);
} elseif ($c === 2) {
$this->getController($dispatch[0]);
$views[$controller] = $this->controllers[$dispatch[0]]->{$dispatch[1]}(...$data);
} else {
throw new \UnexpectedValueException('Unexpected function.');
}
return $views;
}
/**
* Dispatch array.
*
* @param array $controller Controller string
* @param array|null $data Data
*
* @return array
*
* @since 1.0.0
*/
private function dispatchArray(array $controller, array $data = null) : array
{
$views = [];
foreach ($controller as $controllerSingle) {
if ($data === null) {
$views += $this->dispatch($controllerSingle);
} else {
$views += $this->dispatch($controllerSingle, ...$data);
}
}
return $views;
}
/**
* Dispatch closure.
*
* @param \Closure $controller Controller string
* @param array|null $data Data
*
* @return mixed
*
* @since 1.0.0
*/
private function dispatchClosure(\Closure $controller, array $data = null)
{
return $controller($this->app, ...$data);
}
/**
* Dispatch controller.
*
* @param string $controller Controller
*
* @return object
*
* @throws PathException This exception is thrown in case the controller couldn't be found.
*
* @since 1.0.0
*/
private function getController(string $controller) : object
{
if (!isset($this->controllers[$controller])) {
$this->controllers[$controller] = new $controller($this->app);
}
return $this->controllers[$controller];
}
/**
* Set controller by alias.
*
* @param ModuleAbstract $controller Controller
* @param string $name Controller string
*
* @return void
*
* @since 1.0.0
*/
public function set(ModuleAbstract $controller, string $name) : void
{
$this->controllers[$name] = $controller;
}
}