pull/721/merge
fadrian06 3 days ago committed by GitHub
commit 2975ccb86e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -56,8 +56,7 @@ use Psr\Container\ContainerInterface;
* @method void lastModified(int $time) * @method void lastModified(int $time)
* @method void download(string $filePath) * @method void download(string $filePath)
* *
* @phpstan-template EngineTemplate of object * @phpstan-method void registerContainerHandler(ContainerInterface|callable(class-string<object> $id, array<int|string, mixed> $params): ?object $containerHandler)
* @phpstan-method void registerContainerHandler(ContainerInterface|callable(class-string<EngineTemplate> $id, array<int|string, mixed> $params): ?EngineTemplate $containerHandler)
* @phpstan-method Route route(string $pattern, callable|string|array{0: class-string, 1: string} $callback, bool $pass_route = false, string $alias = '') * @phpstan-method Route route(string $pattern, callable|string|array{0: class-string, 1: string} $callback, bool $pass_route = false, string $alias = '')
* @phpstan-method void group(string $pattern, callable $callback, (class-string|callable|array{0: class-string, 1: string})[] $group_middlewares = []) * @phpstan-method void group(string $pattern, callable $callback, (class-string|callable|array{0: class-string, 1: string})[] $group_middlewares = [])
* @phpstan-method Route post(string $pattern, callable|string|array{0: class-string, 1: string} $callback, bool $pass_route = false, string $alias = '') * @phpstan-method Route post(string $pattern, callable|string|array{0: class-string, 1: string} $callback, bool $pass_route = false, string $alias = '')
@ -114,7 +113,7 @@ class Engine
/** Class loader. */ /** Class loader. */
protected Loader $loader; protected Loader $loader;
/** @var Dispatcher<EngineTemplate> Method and class dispatcher. */ /** Method and class dispatcher. */
protected Dispatcher $dispatcher; protected Dispatcher $dispatcher;
/** Event dispatcher. */ /** Event dispatcher. */

@ -4,114 +4,112 @@ declare(strict_types=1);
namespace flight\core; namespace flight\core;
use Exception;
use flight\Engine; use flight\Engine;
use InvalidArgumentException; use InvalidArgumentException;
use Psr\Container\ContainerInterface; use OutOfBoundsException;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\ContainerInterface as Container;
use ReflectionFunction; use ReflectionFunction;
use Throwable; use Throwable;
use TypeError;
/** /**
* The Dispatcher class is responsible for dispatching events. Events * Responsible for dispatching named callables.
* are simply aliases for class methods or functions. The Dispatcher
* allows you to hook other functions to an event that can modify the
* input parameters and/or the output.
* *
* @copyright 2011 Mike Cao https://mikecao.com * The Dispatcher allows you to add filters to a named callable that can modify
* @license https://docs.flightphp.com/license MIT * the named callable `input` and/or `output`.
* @phpstan-template EngineTemplate of object *
* - The `input` is the arguments passed to the named callable.
* - The `output` is the return value of the named callable.
*
* @license MIT, http://flightphp.com/license
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com>
*/ */
class Dispatcher class Dispatcher
{ {
public const FILTER_BEFORE = 'before'; public const FILTER_BEFORE = 'before';
public const FILTER_AFTER = 'after'; public const FILTER_AFTER = 'after';
private const CALLABLE_STRING_OPERATORS = ['->', '::'];
/** Exception message if thrown by setting the container as a callable method. */
protected ?Throwable $containerException = null; protected ?Throwable $containerException = null;
/** @var ?Engine<EngineTemplate> $engine Engine instance. */
protected ?Engine $engine = null; protected ?Engine $engine = null;
/** @var array<string, callable(): (void|mixed)> Mapped events. */ /**
* @deprecated Don't use this property directly, use `set()`, `get()` and `has()` instead.
* @var array<string, callable>
*/
protected array $events = []; protected array $events = [];
/** @var array<string, FilteredCallable> */
private array $namedCallables = [];
/** /**
* Method filters. * @deprecated Don't use this property, use `hook()` instead.
* * @var array<string, array{
* @var array<string, array<'before'|'after', array<int, callable(array<int, mixed> &$params, mixed &$output): (void|false)>>> * before?: (callable(mixed[] &$params): (void|never|false))[],
* after?: (callable(mixed &$output): (void|never|false))[],
* }>
*/ */
protected array $filters = []; protected array $filters = [];
/** /** @var null|Container|(callable(class-string<object> $classString, mixed[] $params): ?object) */
* This is a container for the dependency injection.
*
* @var null|ContainerInterface|(callable(string $classString, array<int, mixed> $params): (null|object))
*/
protected $containerHandler = null; protected $containerHandler = null;
/** /**
* Sets the dependency injection container handler. * @param Container|(callable(class-string<object> $classString, mixed[] $params): ?object) $containerHandler
*
* @param ContainerInterface|(callable(class-string<T> $classString, array<int, mixed> $params): ?T) $containerHandler
* Dependency injection container.
*
* @template T of object
*
* @throws InvalidArgumentException * @throws InvalidArgumentException
* If $containerHandler is not a `callable` or instance of `Psr\Container\ContainerInterface`. * If $containerHandler is not a `callable` or instance of `\Psr\Container\ContainerInterface`.
*/ */
public function setContainerHandler($containerHandler): void public function setContainerHandler($containerHandler): void
{ {
$containerInterfaceNS = '\Psr\Container\ContainerInterface'; if (!$containerHandler instanceof Container && !is_callable($containerHandler)) {
$message = "\$containerHandler must be of type callable or instance \\" . Container::class;
if (is_a($containerHandler, $containerInterfaceNS) || is_callable($containerHandler)) {
$this->containerHandler = $containerHandler;
return; throw new InvalidArgumentException($message);
} }
throw new InvalidArgumentException( $this->containerHandler = $containerHandler;
"\$containerHandler must be of type callable or instance $containerInterfaceNS"
);
} }
/**
* Sets the engine instance
*
* @param Engine<EngineTemplate> $engine Flight instance
*
* @return void
*/
public function setEngine(Engine $engine): void public function setEngine(Engine $engine): void
{ {
$this->engine = $engine; $this->engine = $engine;
} }
/** /**
* Dispatches an event. * Runs a named callable and its filters.
*
* @param string $name Event name.
* @param array<int, mixed> $params Callback parameters.
*
* @throws Exception If event name isn't found or if event throws an `Exception`.
* *
* @return mixed Output of callback * @param string $name Callable name.
* @param mixed[] $params Callable input.
* @return void|never|mixed Callable output.
* @throws Throwable If the callable or its filters throw an `Throwable`.
* @throws OutOfBoundsException If callable name is not found.
*/ */
public function run(string $name, array $params = []) public function run(string $name, array $params = [])
{ {
if (get_called_class() !== self::class) {
/* If dispatcher was extended, use the possibly overridden methods
for pre/post filters and event execution. */
$this->runPreFilters($name, $params); $this->runPreFilters($name, $params);
$output = $this->runEvent($name, $params); $output = $this->runEvent($name, $params);
return $this->runPostFilters($name, $output); return $this->runPostFilters($name, $output);
} }
// Executes the FilteredCallable, responsible of running its filters.
$filteredCallable = $this->get($name);
if (!$filteredCallable) {
throw new OutOfBoundsException("Event '$name' isn't found.");
}
return $filteredCallable(...$params);
}
/** /**
* @param array<int, mixed> &$params * @deprecated Don't override this method.
* * @param string $eventName Callable name.
* @throws Exception * @param mixed[] &$params Callable input.
* * @throws Throwable If any of the callable filters throw an `Throwable`.
* @return $this
*/ */
protected function runPreFilters(string $eventName, array &$params): self protected function runPreFilters(string $eventName, array &$params): self
{ {
@ -125,27 +123,30 @@ class Dispatcher
} }
/** /**
* @param array<int, mixed> &$params * @deprecated Don't override this method.
* * @param string $eventName Callable name.
* @return void|mixed * @param mixed[] $params Callable input.
* @throws Exception * @return void|never|mixed
* @throws Throwable If the callable or its filters throw an `Throwable`.
* @throws OutOfBoundsException If callable name is not found.
*/ */
protected function runEvent(string $eventName, array &$params) protected function runEvent(string $eventName, array $params)
{ {
$requestedMethod = $this->get($eventName); $requestedMethod = $this->get($eventName);
if ($requestedMethod === null) { if ($requestedMethod === null) {
throw new Exception("Event '$eventName' isn't found."); throw new OutOfBoundsException("Event '$eventName' isn't found.");
} }
return $this->execute($requestedMethod, $params); return $this->execute($requestedMethod, $params);
} }
/** /**
* @param mixed &$output * @deprecated Don't override this method.
* * @template Output of mixed
* @return mixed * @param Output &$output Callable output.
* @throws Exception * @return Output Callable output.
* @throws Throwable If any of the callable filters throw an `Throwable`.
*/ */
protected function runPostFilters(string $eventName, &$output) protected function runPostFilters(string $eventName, &$output)
{ {
@ -161,54 +162,53 @@ class Dispatcher
} }
/** /**
* Assigns a callback to an event. * Assigns a name to a callable.
* *
* @param string $name Event name. * @param string $name Callable name.
* @param callable(): (void|mixed) $callback Callback function. * @param callable $callback Callable.
*
* @return $this
*/ */
public function set(string $name, callable $callback): self public function set(string $name, callable $callback): self
{ {
$this->events[$name] = $callback; $this->events[$name] = $callback;
$this->namedCallables[$name] = new FilteredCallable($callback);
return $this; return $this;
} }
/** /**
* Gets an assigned callback. * Returns a callable by its name.
*
* @param string $name Event name.
* *
* @return null|(callable(): (void|mixed)) $callback Callback function. * @param string $name Callable name.
* @return ?callable
*/ */
public function get(string $name): ?callable public function get(string $name): ?callable
{ {
return $this->events[$name] ?? null; return $this->namedCallables[$name] ?? $this->events[$name] ?? null;
} }
/** /**
* Checks if an event has been set. * Checks if a callable exists by its name.
* *
* @param string $name Event name. * @param string $name Callable name.
*
* @return bool If event exists or doesn't exists.
*/ */
public function has(string $name): bool public function has(string $name): bool
{ {
return isset($this->events[$name]); return $this->get($name) !== null;
} }
/** /**
* Clears an event. If no name is given, all events will be removed. * Clears a callable and its filters by its name.
*
* If no name is provided, clears all callables names and theirs filters.
* *
* @param ?string $name Event name. * @param ?string $name Callable name.
*/ */
public function clear(?string $name = null): void public function clear(?string $name = null): void
{ {
if ($name !== null) { if ($name !== null) {
unset($this->events[$name]); unset($this->events[$name]);
unset($this->filters[$name]); unset($this->filters[$name]);
unset($this->namedCallables[$name]);
return; return;
} }
@ -217,13 +217,11 @@ class Dispatcher
} }
/** /**
* Hooks a callback to an event. * Adds a filter to a callable.
* *
* @param string $name Event name * @param string $name Callable name.
* @param 'before'|'after' $type Filter type. * @param 'before'|'after' $type Filter type.
* @param callable(array<int, mixed> &$params, mixed &$output): (void|false)|callable(mixed &$output): (void|false) $callback * @param callable(mixed[] &$params): (void|never|false)|callable(mixed &$output): (void|never|false) $callback
*
* @return $this
*/ */
public function hook(string $name, string $type, callable $callback): self public function hook(string $name, string $type, callable $callback): self
{ {
@ -247,27 +245,39 @@ class Dispatcher
$this->filters[$name][$type][] = $callback; $this->filters[$name][$type][] = $callback;
$filteredCallable = $this->get($name);
if ($filteredCallable instanceof FilteredCallable) {
if ($type === self::FILTER_BEFORE) {
$filteredCallable->pushBeforeFilter($callback);
}
if ($type === self::FILTER_AFTER) {
$filteredCallable->pushAfterFilter($callback);
}
}
return $this; return $this;
} }
/** /**
* Executes a chain of method filters. * Executes a list of callable filters.
* *
* @param array<int, callable(array<int, mixed> &$params, mixed &$output): (void|false)> $filters * @deprecated This method will be removed.
* Chain of filters. * @param (callable(mixed[] &$params, mixed &$output): (void|never|false))[] $filters Callable filters.
* @param array<int, mixed> $params Method parameters. * @param mixed[] &$params Callable input.
* @param mixed $output Method output. * @param mixed &$output Callable output.
* * @throws Throwable If any of the callable filters throw an `Throwable`.
* @throws Exception If an event throws an `Exception` or if `$filters` contains an invalid filter. * @throws InvalidArgumentException If any of the callable filters is not a `callable`.
*/ */
public function filter(array $filters, array &$params, &$output): void public function filter(array $filters, array &$params, &$output): void
{ {
foreach ($filters as $key => $callback) { foreach ($filters as $key => $filter) {
if (!is_callable($callback)) { if (!is_callable($filter)) {
throw new InvalidArgumentException("Invalid callable \$filters[$key]."); throw new InvalidArgumentException("Invalid callable \$filters[$key].");
} }
$continue = $callback($params, $output); $continue = $filter($params, $output);
if ($continue === false) { if ($continue === false) {
break; break;
@ -276,159 +286,202 @@ class Dispatcher
} }
/** /**
* Executes a callback function. * Executes a callable.
*
* @param callable-string|(callable(): mixed)|array{class-string|object, string} $callback
* Callback function.
* @param array<int, mixed> $params Function parameters.
* *
* @return mixed Function results. * @template T of object
* @throws Exception If `$callback` also throws an `Exception`. * @param callable|array{class-string<T>|T, string}|string $callback Callable.
* @param mixed[] $params Callable input.
* @return mixed Callable output.
* @throws Throwable If the callable throws an `Throwable`.
*/ */
public function execute($callback, array &$params = []) public function execute($callback, array $params = [])
{ {
if (is_string($callback) === true && (strpos($callback, '->') !== false || strpos($callback, '::') !== false)) { $this->verifyValidFunction($callback);
if (is_string($callback)) {
$callback = $this->parseStringClassAndMethod($callback); $callback = $this->parseStringClassAndMethod($callback);
} }
return $this->invokeCallable($callback, $params); if (is_callable($callback) && !is_array($callback)) {
return $callback(...$params);
}
[$class, $method] = $callback;
$object = null;
if (is_object($class)) {
return $class->$method(...$params);
}
if ($this->mustUseContainer($class)) {
$object = $this->resolveContainerClass($class, $params);
if (is_object($object)) {
$class = $object;
}
}
$this->verifyValidClassCallable($class, $method, $object);
if (is_string($class)) {
$class = new $class($this->engine);
}
return $class->$method(...$params);
} }
/** /**
* Parses a string into a class and method. * Parses a string with an unloaded class and method into an array.
*
* @param string $classAndMethod Class and method
* *
* @return array{0: class-string|object, 1: string} Class and method * @deprecated Use `execute()` instead.
* @param string $classAndMethod An string with an unloaded class and method,
* like `ClassName::method` or `ClassName->method`.
* @return array{class-string<object>, string}
* @throws InvalidArgumentException If the string is not in a valid format.
*/ */
public function parseStringClassAndMethod(string $classAndMethod): array public function parseStringClassAndMethod(string $classAndMethod): array
{ {
$classParts = explode('->', $classAndMethod); foreach (self::CALLABLE_STRING_OPERATORS as $operator) {
$classAndMethod = explode($operator, $classAndMethod);
if (count($classParts) === 1) { if (count($classAndMethod) === 2) {
$classParts = explode('::', $classParts[0]); return [$classAndMethod[0], $classAndMethod[1]];
} }
return $classParts; [$classAndMethod] = $classAndMethod;
}
$message = "Invalid string format '$classAndMethod', use 'ClassName::method' or 'ClassName->method'.";
throw new InvalidArgumentException($message);
} }
/** /**
* Calls a function. * Executes a callable.
*
* @param callable $func Name of function to call.
* @param array<int, mixed> &$params Function parameters.
* *
* @return mixed Function results. * @deprecated Use execute instead.
* @deprecated 3.7.0 Use invokeCallable instead * @param callable $func Callable.
* @param mixed[] $params Callable input.
* @return mixed Callable output.
* @throws Throwable If the callable throws an `Throwable`.
*/ */
public function callFunction(callable $func, array &$params = []) public function callFunction(callable $func, array $params = [])
{ {
return $this->invokeCallable($func, $params); return $this->execute($func, $params);
} }
/** /**
* Invokes a method. * Executes a callable.
* *
* @param array{0: class-string|object, 1: string} $func Class method. * @deprecated Use execute instead.
* @param array<int, mixed> &$params Class method parameters. * @template T of object
* * @param array{class-string<T>|T, string} $func Callable.
* @return mixed Function results. * @param mixed[] $params Callable input.
* @throws TypeError For nonexistent class name. * @return mixed Callable output.
* @deprecated 3.7.0 Use invokeCallable instead. * @throws Throwable If the callable throws an `Throwable`.
*/ */
public function invokeMethod(array $func, array &$params = []) public function invokeMethod(array $func, array $params = [])
{ {
return $this->invokeCallable($func, $params); return $this->execute($func, $params);
} }
/** /**
* Invokes a callable (anonymous function or Class->method). * Executes a callable.
* *
* @param array{0: class-string|object, 1: string}|callable $func Class method. * @deprecated Use execute instead.
* @param array<int, mixed> &$params Class method parameters. * @template T of object
* * @param callable|array{class-string<T>|T, string}|string $func Callable.
* @return mixed Function results. * @param mixed[] $params Callable input.
* @throws TypeError For nonexistent class name. * @return mixed Callable output.
* @throws InvalidArgumentException If the constructor requires parameters. * @throws Throwable If the callable throws an `Throwable`.
* @version 3.7.0
*/ */
public function invokeCallable($func, array &$params = []) public function invokeCallable($func, array $params = [])
{ {
// If this is a directly callable function, call it return $this->execute($func, $params);
if (is_array($func) === false) {
$this->verifyValidFunction($func);
return call_user_func_array($func, $params);
} }
[$class, $method] = $func; /**
* Verifies if the provided function is valid callable.
$mustUseTheContainer = $this->mustUseContainer($class); *
* @deprecated This method will be removed.
if ($mustUseTheContainer === true) { * @template T of object
$resolvedClass = $this->resolveContainerClass($class, $params); * @param callable|array{class-string<T>|T, string}|string $callback Callable.
* @throws InvalidArgumentException If the function is not valid callable.
if ($resolvedClass) { */
$class = $resolvedClass; protected function verifyValidFunction($callback): void
{
/*
✔️ function () {}
✔️ Closure
✔️ Object that implements __invoke
✔️ 'existingFunction'
✔️ 'ExistingClass::existingAccessibleStaticMethod'
✔️ ['ExistingClass', 'existingAccessibleStaticMethod']
✔️ [$object, 'existingAccessibleMethod']
✔️ [$object, 'existingAccessibleStaticMethod']
*/
if (is_callable($callback)) {
return;
} }
/*
✔️ ['UnloadedClass', 'method']
✔️ ['UnloadedClass', 'staticMethod']
*/
if (
is_array($callback)
&& count($callback) === 2
&& is_string($callback[0])
&& is_string($callback[1])
) {
return;
} }
$this->verifyValidClassCallable($class, $method, $resolvedClass ?? null); /*
✔️ 'UnloadedClass::method'
✔️ 'UnloadedClass->method'
*/
if (is_string($callback)) {
foreach (self::CALLABLE_STRING_OPERATORS as $operator) {
$callback = explode($operator, $callback);
// Class is a string, and method exists, create the object by hand and inject only the Engine if (count($callback) === 2) {
if (is_string($class)) { return;
$class = new $class($this->engine);
} }
return call_user_func_array([$class, $method], $params); [$callback] = $callback;
}
} }
/**
* Handles invalid callback types.
*
* @param callable-string|(callable(): mixed)|array{0: class-string|object, 1: string} $callback
* Callback function.
*
* @throws InvalidArgumentException If `$callback` is an invalid type.
*/
protected function verifyValidFunction($callback): void
{
if (is_string($callback) && !function_exists($callback)) {
throw new InvalidArgumentException('Invalid callback specified.'); throw new InvalidArgumentException('Invalid callback specified.');
} }
}
/** /**
* Verifies if the provided class and method are valid callable. * @deprecated This method will be removed.
* * @template T of object
* @param class-string|object $class The class name. * @param class-string<T>|T $class The class name or object.
* @param string $method The method name. * @param ?T $resolvedClass A class instance.
* @param object|null $resolvedClass The resolved class. * @return void|never
* * @throws InvalidArgumentException If the class or method is not found.
* @throws Exception If the class or method is not found. * @throws Throwable If the container throws an exception.
*/ */
protected function verifyValidClassCallable($class, $method, $resolvedClass): void protected function verifyValidClassCallable($class, string $method, ?object $resolvedClass): void
{ {
$exception = null; $exception = null;
// Final check to make sure it's actually a class and a method, or throw an error // Final check to make sure it's actually a class and a method, or throw an error
if (is_object($class) === false && class_exists($class) === false) { if (!is_object($class) && !class_exists($class)) {
$exception = new Exception( $message = "Class '$class' not found. Is it being correctly autoloaded with Flight::path()?";
"Class '$class' not found. Is it being correctly autoloaded with Flight::path()?" $exception = new InvalidArgumentException($message);
); } elseif ($this->containerException) {
// If this tried to resolve a class in a container and failed somehow, throw the exception
} elseif (!$resolvedClass && $this->containerException !== null) {
$exception = $this->containerException; $exception = $this->containerException;
} elseif (is_object($class) && !method_exists($class, $method)) {
// Class is there, but no method $fqcn = get_class($class);
} elseif (is_object($class) === true && method_exists($class, $method) === false) { $exception = new InvalidArgumentException("Class found, but method '$fqcn::$method' not found.");
$classNamespace = get_class($class);
$exception = new Exception("Class found, but method '$classNamespace::$method' not found.");
} }
if ($exception !== null) { if ($exception) {
$this->fixOutputBuffering(); $this->fixOutputBuffering();
throw $exception; throw $exception;
@ -436,39 +489,38 @@ class Dispatcher
} }
/** /**
* Resolves the container class. * Resolves a class from the container.
*
* @param class-string $class Class name.
* @param array<int, mixed> &$params Class constructor parameters.
* *
* @return ?object Class object. * @deprecated This method will be removed.
* @template T of object
* @param class-string<T> $class The class name.
* @param mixed[] $params Class constructor arguments.
* @return ?T The resolved class instance, or null if not found.
*/ */
public function resolveContainerClass(string $class, array &$params) public function resolveContainerClass(string $class, array $params): ?object
{ {
// PSR-11 $container = $this->containerHandler;
if (is_a($this->containerHandler, '\Psr\Container\ContainerInterface')) {
if ($container instanceof Container) {
try { try {
return $this->containerHandler->get($class); return $container->get($class);
} catch (Throwable $exception) { } catch (ContainerExceptionInterface $exception) {
$this->containerException = $exception;
return null; return null;
} }
} }
// Just a callable where you configure the behavior (Dice, PHP-DI, etc.) if (is_callable($container)) {
if (is_callable($this->containerHandler)) {
/* This is to catch all the error that could be thrown by whatever
container you are using */
try { try {
return ($this->containerHandler)($class, $params); return $container($class, $params);
} catch (Throwable $throwable) {
// could not resolve a class for some reason
} catch (Exception $exception) {
// If the container throws an exception, we need to catch it // If the container throws an exception, we need to catch it
// and store it somewhere. If we just let it throw itself, it // and store it somewhere. If we just let it throw itself, it
// doesn't properly close the output buffers and can cause other // doesn't properly close the output buffers and can cause other
// issues. // issues.
// This is thrown in the verifyValidClassCallable method. // This is thrown in the verifyValidClassCallable method.
$this->containerException = $exception; $this->containerException = $throwable;
} }
} }
@ -476,21 +528,28 @@ class Dispatcher
} }
/** /**
* Checks to see if a container should be used or not. * Checks if the class must be resolved by the container.
*
* @param string|object $class the class to verify
* *
* @return boolean * @deprecated This method will be removed.
* @template T of object
* @param class-string<T>|T $class Class name or object.
*/ */
public function mustUseContainer($class): bool public function mustUseContainer($class): bool
{ {
return $this->containerHandler !== null && ( $container = $this->containerHandler;
(is_object($class) === true && strpos(get_class($class), 'flight\\') === false)
|| is_string($class) if (is_object($class)) {
); $class = get_class($class);
} }
/** Because this could throw an exception in the middle of an output buffer, */ if ($container instanceof Container && $container->has($class)) {
return true;
}
return is_callable($container);
}
/** Fixes output buffering issues when an exception is thrown. */
protected function fixOutputBuffering(): void protected function fixOutputBuffering(): void
{ {
// Cause PHPUnit has 1 level of output buffering by default // Cause PHPUnit has 1 level of output buffering by default
@ -499,15 +558,12 @@ class Dispatcher
} }
} }
/** /** Resets the dispatcher state by clearing all events, filters, and named filtered callables. */
* Resets the object to the initial state.
*
* @return $this
*/
public function reset(): self public function reset(): self
{ {
$this->events = []; $this->events = [];
$this->filters = []; $this->filters = [];
$this->namedCallables = [];
return $this; return $this;
} }

@ -0,0 +1,90 @@
<?php
declare(strict_types=1);
namespace flight\core;
use Closure;
use ReflectionFunction;
use Throwable;
/**
* @template CallableWithoutFilters of Closure = Closure
* @template Output = mixed
*/
final class FilteredCallable
{
/**
* @readonly
* @var CallableWithoutFilters
*/
private $closure;
/** @var (callable(mixed[] &$input): (void|never|false))[] */
private array $beforeFilters = [];
/** @var (callable(mixed &$output): (void|never|false))[] */
private array $afterFilters = [];
/** @param CallableWithoutFilters|callable(): Output $callable */
public function __construct(callable $callable)
{
$this->closure = Closure::fromCallable($callable);
}
/**
* @param mixed ...$input
* @return Output
* @throws Throwable
*/
public function __invoke(...$input)
{
foreach ($this->beforeFilters as $filter) {
$filterReturnValue = $filter($input);
if ($filterReturnValue === false) {
break;
}
}
$closure = $this->closure;
$output = $closure(...$input);
foreach ($this->afterFilters as $filter) {
$filterReturnValue = $filter($output);
if ($filterReturnValue === false) {
break;
}
}
return $output;
}
/** @param callable(mixed[] &$input): (void|never|false) $filter */
public function pushBeforeFilter(callable $filter): void
{
if (!in_array($filter, $this->beforeFilters)) {
$this->beforeFilters[] = $filter;
}
}
/** @param callable(Output &$output): (void|never|false) $filter */
public function pushAfterFilter(callable $filter): void
{
if (!in_array($filter, $this->afterFilters)) {
$filterReflectionFunction = new ReflectionFunction($filter);
if ($filterReflectionFunction->getNumberOfParameters() === 2) {
$filter = static function (&$output) use ($filter) {
static $input = [];
return $filter($input, $output);
};
}
$this->afterFilters[] = $filter;
}
}
}

@ -6,6 +6,10 @@
<file>flight</file> <file>flight</file>
<file>tests</file> <file>tests</file>
<rule ref="PSR1" /> <rule ref="PSR1" />
<rule ref="PSR2" />
<rule ref="PSR2">
<exclude name="PSR2.ControlStructures.ControlStructureSpacing.SpacingAfterOpenBrace" />
</rule>
<rule ref="PSR12" /> <rule ref="PSR12" />
</ruleset> </ruleset>

Loading…
Cancel
Save