Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f38942f4f3 | |||
| dc561cec9b | |||
| daa02a6408 | |||
| 34ab8f145c | |||
| ae20755bd7 | |||
| 011e95a3f2 | |||
| 5bda66b40d | |||
| e82fad2fcb | |||
| 16eb6b11c5 | |||
| 227b6fa512 | |||
| c06ab29054 | |||
| 3ccf08fdfb | |||
| 292ccc84de | |||
| edc7371d9b |
@@ -12,33 +12,40 @@ abstract class AbstractHandler
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
public int $offset = 0;
|
public int $offset = 0;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $middlewares
|
* @param array $middlewares
|
||||||
* @param Handler $handler
|
* @param Handler $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public function __construct(public array $middlewares, public Handler $handler)
|
*/
|
||||||
{
|
public function __construct(public array $middlewares, public Handler $handler)
|
||||||
}
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ServerRequestInterface $request
|
|
||||||
* @return ResponseInterface
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public function execute(ServerRequestInterface $request): ResponseInterface
|
|
||||||
{
|
|
||||||
if (!isset($this->middlewares[$this->offset])) {
|
|
||||||
return $this->handler->handle($request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$middleware = $this->middlewares[$this->offset];
|
|
||||||
$this->offset += 1;
|
|
||||||
|
|
||||||
return ($middleware instanceof MiddlewareInterface ? $middleware : di($middleware))->process($request, $this);
|
/**
|
||||||
}
|
* @param ServerRequestInterface $request
|
||||||
|
*
|
||||||
|
* @return ResponseInterface
|
||||||
|
* @throws
|
||||||
|
*/
|
||||||
|
public function execute(ServerRequestInterface $request): ResponseInterface
|
||||||
|
{
|
||||||
|
if (!isset($this->middlewares[$this->offset])) {
|
||||||
|
return $this->handler->handle($request);
|
||||||
|
}
|
||||||
|
|
||||||
|
$middleware = $this->middlewares[$this->offset];
|
||||||
|
$this->offset += 1;
|
||||||
|
|
||||||
|
if (!($middleware instanceof MiddlewareInterface)) {
|
||||||
|
$middleware = \Kiri::getDi()->get($middleware);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $middleware->process($request, $this);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+644
-643
File diff suppressed because it is too large
Load Diff
@@ -9,14 +9,24 @@ use Psr\Http\Message\ResponseInterface;
|
|||||||
class ArrayFormat implements IFormat
|
class ArrayFormat implements IFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $result
|
/**
|
||||||
* @return ResponseInterface
|
* @param ResponseInterface $response
|
||||||
*/
|
*/
|
||||||
public function call($result): ResponseInterface
|
public function __construct(public ResponseInterface $response)
|
||||||
{
|
{
|
||||||
return di(ResponseInterface::class)->withBody(new Stream(json_encode($result, JSON_UNESCAPED_UNICODE)));
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $result
|
||||||
|
*
|
||||||
|
* @return ResponseInterface
|
||||||
|
*/
|
||||||
|
public function call($result): ResponseInterface
|
||||||
|
{
|
||||||
|
return $this->response->withBody(new Stream(json_encode($result, JSON_UNESCAPED_UNICODE)));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,16 @@ use Psr\Http\Message\ResponseInterface;
|
|||||||
class MixedFormat implements IFormat
|
class MixedFormat implements IFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
|
/**
|
||||||
|
* @param ResponseInterface $response
|
||||||
|
*/
|
||||||
|
public function __construct(public ResponseInterface $response)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
* @param mixed $result
|
* @param mixed $result
|
||||||
* @return ResponseInterface
|
* @return ResponseInterface
|
||||||
*/
|
*/
|
||||||
@@ -18,14 +27,13 @@ class MixedFormat implements IFormat
|
|||||||
if ($result instanceof ResponseInterface) {
|
if ($result instanceof ResponseInterface) {
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
$response = Kiri::getDi()->get(ResponseInterface::class);
|
|
||||||
if (is_object($result)) {
|
if (is_object($result)) {
|
||||||
return $response->withBody(new Stream('[object]'));
|
return $this->response->withBody(new Stream('[object]'));
|
||||||
}
|
}
|
||||||
if (is_array($result)) {
|
if (is_array($result)) {
|
||||||
return $response->withBody(new Stream(json_encode($result, JSON_UNESCAPED_UNICODE)));
|
return $this->response->withBody(new Stream(json_encode($result, JSON_UNESCAPED_UNICODE)));
|
||||||
} else {
|
} else {
|
||||||
return $response->withBody(new Stream((string)$result));
|
return $this->response->withBody(new Stream((string)$result));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+32
-23
@@ -9,27 +9,36 @@ use Psr\Http\Message\ResponseInterface;
|
|||||||
class NoBody implements IFormat
|
class NoBody implements IFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $result
|
/**
|
||||||
* @return ResponseInterface
|
* @param ResponseInterface $response
|
||||||
*/
|
*/
|
||||||
public function call($result): ResponseInterface
|
public function __construct(public ResponseInterface $response)
|
||||||
{
|
{
|
||||||
// TODO: Implement call() method.
|
}
|
||||||
$response = Kiri::getDi()->get(ResponseInterface::class);
|
|
||||||
if (request()->getMethod() === 'HEAD') {
|
|
||||||
return $response->withBody(new Stream());
|
/**
|
||||||
}
|
* @param $result
|
||||||
if ($result instanceof ResponseInterface) {
|
*
|
||||||
return $result;
|
* @return ResponseInterface
|
||||||
}
|
*/
|
||||||
if (is_object($result)) {
|
public function call($result): ResponseInterface
|
||||||
return $response->withBody(new Stream('[object]'));
|
{
|
||||||
}
|
// TODO: Implement call() method.
|
||||||
if (is_array($result)) {
|
if (request()->getMethod() === 'HEAD') {
|
||||||
return $response->withBody(new Stream(json_encode($result, JSON_UNESCAPED_UNICODE)));
|
return $this->response->withBody(new Stream());
|
||||||
} else {
|
}
|
||||||
return $response->withBody(new Stream((string)$result));
|
if ($result instanceof ResponseInterface) {
|
||||||
}
|
return $result;
|
||||||
}
|
}
|
||||||
|
if (is_object($result)) {
|
||||||
|
return $this->response->withBody(new Stream('[object]'));
|
||||||
|
}
|
||||||
|
if (is_array($result)) {
|
||||||
|
return $this->response->withBody(new Stream(json_encode($result, JSON_UNESCAPED_UNICODE)));
|
||||||
|
} else {
|
||||||
|
return $this->response->withBody(new Stream((string)$result));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -9,13 +9,18 @@ use Psr\Http\Message\ResponseInterface;
|
|||||||
class OtherFormat implements IFormat
|
class OtherFormat implements IFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
|
public function __construct(public ResponseInterface $response)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
* @param mixed $result
|
* @param mixed $result
|
||||||
* @return ResponseInterface
|
* @return ResponseInterface
|
||||||
*/
|
*/
|
||||||
public function call(mixed $result): ResponseInterface
|
public function call(mixed $result): ResponseInterface
|
||||||
{
|
{
|
||||||
return di(ResponseInterface::class)->withBody(new Stream($result));
|
return $this->response->withBody(new Stream($result));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,14 +8,23 @@ use Psr\Http\Message\ResponseInterface;
|
|||||||
class VoidFormat implements IFormat
|
class VoidFormat implements IFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $result
|
/**
|
||||||
* @return ResponseInterface
|
* @param ResponseInterface $response
|
||||||
*/
|
*/
|
||||||
public function call($result): ResponseInterface
|
public function __construct(public ResponseInterface $response)
|
||||||
{
|
{
|
||||||
// TODO: Implement call() method.
|
}
|
||||||
return di(ResponseInterface::class);
|
|
||||||
}
|
/**
|
||||||
|
* @param $result
|
||||||
|
*
|
||||||
|
* @return ResponseInterface
|
||||||
|
*/
|
||||||
|
public function call($result): ResponseInterface
|
||||||
|
{
|
||||||
|
// TODO: Implement call() method.
|
||||||
|
return $this->response;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
+1
-1
@@ -49,7 +49,7 @@ class Handler implements RequestHandlerInterface
|
|||||||
*/
|
*/
|
||||||
public function setRequestMethod(string $method): void
|
public function setRequestMethod(string $method): void
|
||||||
{
|
{
|
||||||
if ($method == 'HEAD') {
|
if ($method == 'HEAD' || $method == 'OPTIONS') {
|
||||||
$this->format = Kiri::getDi()->get(NoBody::class);
|
$this->format = Kiri::getDi()->get(NoBody::class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ use Kiri\Router\Base\AbstractHandler;
|
|||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
use Psr\Http\Message\ServerRequestInterface;
|
use Psr\Http\Message\ServerRequestInterface;
|
||||||
use Psr\Http\Server\RequestHandlerInterface;
|
use Psr\Http\Server\RequestHandlerInterface;
|
||||||
use ReflectionException;
|
|
||||||
|
|
||||||
class HttpRequestHandler extends AbstractHandler implements RequestHandlerInterface
|
class HttpRequestHandler extends AbstractHandler implements RequestHandlerInterface
|
||||||
{
|
{
|
||||||
|
|||||||
+8
-18
@@ -4,6 +4,8 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Router;
|
namespace Kiri\Router;
|
||||||
|
|
||||||
|
use Kiri\Abstracts\CoordinatorManager;
|
||||||
|
use Kiri\Coordinator;
|
||||||
use Kiri\Di\Inject\Container;
|
use Kiri\Di\Inject\Container;
|
||||||
use Kiri\Di\Context;
|
use Kiri\Di\Context;
|
||||||
use Kiri\Di\Interface\ResponseEmitterInterface;
|
use Kiri\Di\Interface\ResponseEmitterInterface;
|
||||||
@@ -73,12 +75,14 @@ class OnRequest implements OnRequestInterface
|
|||||||
*/
|
*/
|
||||||
public function onRequest(Request $request, Response $response): void
|
public function onRequest(Request $request, Response $response): void
|
||||||
{
|
{
|
||||||
/** @var CQ $PsrRequest */
|
|
||||||
try {
|
try {
|
||||||
$PsrRequest = $this->initRequestAndResponse($request);
|
/** @var CQ $PsrRequest */
|
||||||
|
Context::set(ResponseInterface::class, new ConstrictResponse($this->response->contentType));
|
||||||
|
$PsrRequest = Context::set(RequestInterface::class, CQ::builder($request));
|
||||||
|
|
||||||
$PsrResponse = $this->router->query($request->server['path_info'], $request->getMethod())
|
CoordinatorManager::utility(Coordinator::WORKER_START)->yield();
|
||||||
->run($PsrRequest);
|
|
||||||
|
$PsrResponse = $this->router->query($request->server['path_info'], $request->getMethod())->run($PsrRequest);
|
||||||
} catch (Throwable $throwable) {
|
} catch (Throwable $throwable) {
|
||||||
$PsrResponse = $this->exception->emit($throwable, $this->constrictResponse);
|
$PsrResponse = $this->exception->emit($throwable, $this->constrictResponse);
|
||||||
} finally {
|
} finally {
|
||||||
@@ -86,18 +90,4 @@ class OnRequest implements OnRequestInterface
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Request $request
|
|
||||||
* @return ServerRequestInterface
|
|
||||||
*/
|
|
||||||
public function initRequestAndResponse(Request $request): ServerRequestInterface
|
|
||||||
{
|
|
||||||
$response = new ConstrictResponse($this->response->contentType);
|
|
||||||
|
|
||||||
Context::set(ResponseInterface::class, $response);
|
|
||||||
|
|
||||||
return Context::set(RequestInterface::class, CQ::builder($request));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+195
-176
@@ -4,11 +4,15 @@ declare(strict_types=1);
|
|||||||
namespace Kiri\Router;
|
namespace Kiri\Router;
|
||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
|
use Kiri\Server\Events\OnWorkerStart;
|
||||||
use Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Abstracts\CoordinatorManager;
|
||||||
|
use Kiri\Coordinator;
|
||||||
use Kiri\Router\Validator\ValidatorMiddleware;
|
use Kiri\Router\Validator\ValidatorMiddleware;
|
||||||
use Kiri\Router\Base\Middleware as MiddlewareManager;
|
use Kiri\Router\Base\Middleware as MiddlewareManager;
|
||||||
use Kiri\Router\Constrict\RequestMethod;
|
use Kiri\Router\Constrict\RequestMethod;
|
||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@@ -23,215 +27,230 @@ class Router
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
const array METHODS = [RequestMethod::REQUEST_POST, RequestMethod::REQUEST_GET, RequestMethod::REQUEST_OPTIONS, RequestMethod::REQUEST_DELETE, RequestMethod::REQUEST_PUT, RequestMethod::REQUEST_HEAD];
|
const array METHODS = [RequestMethod::REQUEST_POST, RequestMethod::REQUEST_GET, RequestMethod::REQUEST_OPTIONS, RequestMethod::REQUEST_DELETE, RequestMethod::REQUEST_PUT, RequestMethod::REQUEST_HEAD];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
private static string $type = ROUTER_TYPE_HTTP;
|
private static string $type = ROUTER_TYPE_HTTP;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param Closure $closure
|
* @param Closure $closure
|
||||||
*/
|
*/
|
||||||
public static function addServer(string $name, Closure $closure): void
|
public static function addServer(string $name, Closure $closure): void
|
||||||
{
|
{
|
||||||
static::$type = $name;
|
static::$type = $name;
|
||||||
$closure();
|
$closure();
|
||||||
static::$type = ROUTER_TYPE_HTTP;
|
static::$type = ROUTER_TYPE_HTTP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Closure $handler
|
* @param Closure $handler
|
||||||
*/
|
*/
|
||||||
public static function jsonp(Closure $handler): void
|
public static function jsonp(Closure $handler): void
|
||||||
{
|
{
|
||||||
static::$type = 'json-rpc';
|
static::$type = 'json-rpc';
|
||||||
$handler();
|
$handler();
|
||||||
static::$type = ROUTER_TYPE_HTTP;
|
static::$type = ROUTER_TYPE_HTTP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string $handler
|
* @param string $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function post(string $route, string $handler): void
|
*/
|
||||||
{
|
public static function post(string $route, string $handler): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
$router->addRoute([RequestMethod::REQUEST_POST], $route, $handler);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
}
|
$router->addRoute([RequestMethod::REQUEST_POST], $route, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string $handler
|
* @param string $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function get(string $route, string $handler): void
|
*/
|
||||||
{
|
public static function get(string $route, string $handler): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
$router->addRoute([RequestMethod::REQUEST_GET], $route, $handler);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
}
|
$router->addRoute([RequestMethod::REQUEST_GET], $route, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string $handler
|
* @param string $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function options(string $route, string $handler): void
|
*/
|
||||||
{
|
public static function options(string $route, string $handler): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
$router->addRoute([RequestMethod::REQUEST_OPTIONS], $route, $handler);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
}
|
$router->addRoute([RequestMethod::REQUEST_OPTIONS], $route, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string $handler
|
* @param string $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function any(string $route, string $handler): void
|
*/
|
||||||
{
|
public static function any(string $route, string $handler): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
$router->addRoute(self::METHODS, $route, $handler);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
}
|
$router->addRoute(self::METHODS, $route, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string $handler
|
* @param string $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function delete(string $route, string $handler): void
|
*/
|
||||||
{
|
public static function delete(string $route, string $handler): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
$router->addRoute([RequestMethod::REQUEST_DELETE], $route, $handler);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
}
|
$router->addRoute([RequestMethod::REQUEST_DELETE], $route, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string $handler
|
* @param string $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function head(string $route, string $handler): void
|
*/
|
||||||
{
|
public static function head(string $route, string $handler): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
$router->addRoute([RequestMethod::REQUEST_HEAD], $route, $handler);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
}
|
$router->addRoute([RequestMethod::REQUEST_HEAD], $route, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string $handler
|
* @param string $handler
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function put(string $route, string $handler): void
|
*/
|
||||||
{
|
public static function put(string $route, string $handler): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
$router->addRoute([RequestMethod::REQUEST_PUT], $route, $handler);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
}
|
$router->addRoute([RequestMethod::REQUEST_PUT], $route, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array|RequestMethod $methods
|
* @param array|RequestMethod $methods
|
||||||
* @param string $route
|
* @param string $route
|
||||||
* @param string|array $handler
|
* @param string|array $handler
|
||||||
*/
|
*/
|
||||||
public static function addRoute(array|RequestMethod $methods, string $route, string|array $handler): void
|
public static function addRoute(array|RequestMethod $methods, string $route, string|array $handler): void
|
||||||
{
|
{
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
if ($methods instanceof RequestMethod) {
|
if ($methods instanceof RequestMethod) {
|
||||||
$methods = [$methods];
|
$methods = [$methods];
|
||||||
}
|
}
|
||||||
$router->addRoute($methods, $route, $handler);
|
$router->addRoute($methods, $route, $handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $config
|
* @param array $config
|
||||||
* @param Closure $closure
|
* @param Closure $closure
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
public static function group(array $config, Closure $closure): void
|
*/
|
||||||
{
|
public static function group(array $config, Closure $closure): void
|
||||||
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
|
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
|
||||||
|
|
||||||
$router->groupTack[] = $config;
|
$router->groupTack[] = $config;
|
||||||
|
|
||||||
call_user_func($closure);
|
call_user_func($closure);
|
||||||
|
|
||||||
array_pop($router->groupTack);
|
array_pop($router->groupTack);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function scan_build_route(): void
|
public function scan_build_route(): void
|
||||||
{
|
{
|
||||||
$this->read_dir_file(APP_PATH . 'routes');
|
$coordinator = CoordinatorManager::utility(Coordinator::WORKER_START);
|
||||||
|
|
||||||
$container = Kiri::getDi();
|
$this->read_dir_file(APP_PATH . 'routes');
|
||||||
$scanner = di(Kiri\Di\Scanner::class);
|
|
||||||
$scanner->load_directory(APP_PATH . 'app/Controller');
|
$container = Kiri::getDi();
|
||||||
$this->reset($container);
|
$scanner = $container->get(Kiri\Di\Scanner::class);
|
||||||
}
|
$scanner->load_directory(APP_PATH . 'app/Controller');
|
||||||
|
$this->reset($container);
|
||||||
|
|
||||||
|
$coordinator->done();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ContainerInterface $container
|
* @param ContainerInterface $container
|
||||||
* @return void
|
*
|
||||||
* @throws
|
* @return void
|
||||||
*/
|
* @throws
|
||||||
public function reset(ContainerInterface $container): void
|
*/
|
||||||
{
|
public function reset(ContainerInterface $container): void
|
||||||
$router = $container->get(DataGrip::class)->get(static::$type);
|
{
|
||||||
foreach ($router->getMethods() as $name => $method) {
|
$router = $container->get(DataGrip::class)->get(static::$type);
|
||||||
$middlewares = MiddlewareManager::get($method->getClass(), $method->getMethod());
|
foreach ($router->getMethods() as $name => $method) {
|
||||||
$validator = MiddlewareManager::getValidator($method->getClass(), $method->getMethod());
|
$middlewares = MiddlewareManager::get($method->getClass(), $method->getMethod());
|
||||||
if (!is_null($validator)) {
|
$validator = MiddlewareManager::getValidator($method->getClass(), $method->getMethod());
|
||||||
array_unshift($middlewares, new ValidatorMiddleware($method->getClass(), $method->getMethod()));
|
if (!is_null($validator)) {
|
||||||
}
|
array_unshift($middlewares, new ValidatorMiddleware(di(ResponseInterface::class), $method->getClass(), $method->getMethod()));
|
||||||
$router->setHttpHandler($name, new HttpRequestHandler($middlewares, $method));
|
}
|
||||||
}
|
$router->setHttpHandler($name, new HttpRequestHandler($middlewares, $method));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $path
|
* @param $path
|
||||||
* @return void
|
*
|
||||||
* @throws
|
* @return void
|
||||||
*/
|
* @throws
|
||||||
private function read_dir_file($path): void
|
*/
|
||||||
{
|
private function read_dir_file($path): void
|
||||||
$files = glob($path . '/*');
|
{
|
||||||
for ($i = 0; $i < count($files); $i++) {
|
$files = glob($path . '/*');
|
||||||
$file = $files[$i];
|
for ($i = 0; $i < count($files); $i++) {
|
||||||
if (is_dir($file)) {
|
$file = $files[$i];
|
||||||
$this->read_dir_file($file);
|
if (is_dir($file)) {
|
||||||
} else {
|
$this->read_dir_file($file);
|
||||||
$this->resolve_file($file);
|
} else {
|
||||||
}
|
$this->resolve_file($file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $files
|
* @param $files
|
||||||
* @throws
|
*
|
||||||
*/
|
* @throws
|
||||||
private function resolve_file($files): void
|
*/
|
||||||
{
|
private function resolve_file($files): void
|
||||||
try {
|
{
|
||||||
include "$files";
|
try {
|
||||||
} catch (\Throwable $throwable) {
|
include "$files";
|
||||||
error($throwable);
|
} catch (\Throwable $throwable) {
|
||||||
}
|
error($throwable);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,11 +17,12 @@ class ValidatorMiddleware implements MiddlewareInterface
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $class
|
* @param ResponseInterface $response
|
||||||
* @param string $method
|
* @param string $class
|
||||||
*/
|
* @param string $method
|
||||||
public function __construct(public string $class, public string $method)
|
*/
|
||||||
|
public function __construct(public ResponseInterface $response ,public string $class, public string $method)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -38,7 +39,7 @@ class ValidatorMiddleware implements MiddlewareInterface
|
|||||||
if (!$validator->run($request)) {
|
if (!$validator->run($request)) {
|
||||||
Kiri::getLogger()->println($request->getUri()->getPath() . ' `' . $validator->error() . '`');
|
Kiri::getLogger()->println($request->getUri()->getPath() . ' `' . $validator->error() . '`');
|
||||||
|
|
||||||
return di(ResponseInterface::class)->html($validator->error(), 415);
|
return $this->response->html($validator->error(), 415);
|
||||||
} else {
|
} else {
|
||||||
return $handler->handle($request);
|
return $handler->handle($request);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user