This commit is contained in:
2020-12-16 15:20:51 +08:00
parent 991c3f9145
commit c2b3f02bfc
7 changed files with 158 additions and 34 deletions
+34 -2
View File
@@ -7,12 +7,15 @@
*/
declare(strict_types=1);
// declare(strict_types=1);
namespace HttpServer\Route;
use Annotation\Route\After;
use Annotation\Route\Interceptor;
use Annotation\Route\Middleware as RMiddleware;
use Exception;
use Annotation\Route\Limits;
use HttpServer\Route\Dispatch\Dispatch;
use Snowflake\Snowflake;
/**
* Class Middleware
@@ -51,12 +54,41 @@ class Middleware
*/
public function getGenerate(Node $node): mixed
{
if (is_array($node->handler) && is_object($node->handler[0])) {
$this->set_attributes($node);
}
return $node->callback = Reduce::reduce(function () use ($node) {
return Dispatch::create($node->handler, func_get_args())->dispatch();
}, $this->annotation($node));
}
/**
* @param $node
* @throws Exception
*/
private function set_attributes(Node $node)
{
[$controller, $action] = $node->handler;
$attributes = Snowflake::app()->getAttributes();
$annotation = $attributes->getByClass(get_class($controller), $action);
foreach ($annotation as $item) {
if ($item instanceof Interceptor) {
$node->addInterceptor($item->interceptor);
}
if ($item instanceof After) {
$node->addAfter($item->after);
}
if ($item instanceof RMiddleware) {
$node->addMiddleware($item->middleware);
}
if ($item instanceof Limits) {
$node->addLimits($item->limits);
}
}
}
/**
* @param Node $node
* @return array