Files
kiri-router/src/Router.php
T

305 lines
6.9 KiB
PHP
Raw Normal View History

2023-04-15 23:29:27 +08:00
<?php
2023-04-16 01:24:30 +08:00
declare(strict_types=1);
2023-04-15 23:29:27 +08:00
namespace Kiri\Router;
2023-04-15 23:31:16 +08:00
use Closure;
2026-04-17 16:30:52 +08:00
use Kiri\Di\HotReloadState;
2024-11-18 16:11:16 +08:00
use Kiri\Server\Events\OnWorkerStart;
2023-04-15 23:31:16 +08:00
use Kiri;
2024-11-15 14:16:37 +08:00
use Kiri\Abstracts\CoordinatorManager;
use Kiri\Coordinator;
2026-04-17 16:30:52 +08:00
use Kiri\Router\RouteArtifactState;
2024-08-29 17:14:37 +08:00
use Kiri\Router\Validator\ValidatorMiddleware;
2023-06-27 16:29:09 +08:00
use Kiri\Router\Base\Middleware as MiddlewareManager;
2023-04-16 01:24:30 +08:00
use Kiri\Router\Constrict\RequestMethod;
2023-11-22 09:26:18 +08:00
use Psr\Container\ContainerInterface;
2024-12-16 16:36:35 +08:00
use Psr\Http\Message\ResponseInterface;
2023-04-15 23:31:16 +08:00
/**
*
*
* $component->set([
* 'request' => [
* 'middlewares' => []
* ]
* ])
*/
2023-04-15 23:29:27 +08:00
class Router
{
2023-10-17 20:27:26 +08:00
2024-12-16 16:36:35 +08:00
const array METHODS = [RequestMethod::REQUEST_POST, RequestMethod::REQUEST_GET, RequestMethod::REQUEST_OPTIONS, RequestMethod::REQUEST_DELETE, RequestMethod::REQUEST_PUT, RequestMethod::REQUEST_HEAD];
/**
* @var string
*/
private static string $type = ROUTER_TYPE_HTTP;
2026-04-17 16:30:52 +08:00
private static ?string $currentSourceFile = null;
2024-12-16 16:36:35 +08:00
/**
2025-12-30 20:21:44 +08:00
* @param string $name
2024-12-16 16:36:35 +08:00
* @param Closure $closure
*/
public static function addServer(string $name, Closure $closure): void
{
static::$type = $name;
$closure();
static::$type = ROUTER_TYPE_HTTP;
}
/**
* @param Closure $handler
*/
public static function jsonp(Closure $handler): void
{
static::$type = 'json-rpc';
$handler();
static::$type = ROUTER_TYPE_HTTP;
}
/**
* @param string $route
* @param string $handler
*
* @throws
*/
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);
}
/**
* @param string $route
* @param string $handler
*
* @throws
*/
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);
}
/**
* @param string $route
* @param string $handler
*
* @throws
*/
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);
}
/**
* @param string $route
* @param string $handler
*
* @throws
*/
public static function any(string $route, string $handler): void
{
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
$router->addRoute(self::METHODS, $route, $handler);
}
/**
* @param string $route
* @param string $handler
*
* @throws
*/
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);
}
/**
* @param string $route
* @param string $handler
*
* @throws
*/
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);
}
/**
* @param string $route
* @param string $handler
*
* @throws
*/
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);
}
/**
* @param array|RequestMethod $methods
2025-12-30 20:21:44 +08:00
* @param string $route
* @param string|array $handler
2024-12-16 16:36:35 +08:00
*/
public static function addRoute(array|RequestMethod $methods, string $route, string|array $handler): void
{
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
if ($methods instanceof RequestMethod) {
$methods = [$methods];
}
$router->addRoute($methods, $route, $handler);
}
/**
2025-12-30 20:21:44 +08:00
* @param array $config
2024-12-16 16:36:35 +08:00
* @param Closure $closure
*
* @throws
*/
public static function group(array $config, Closure $closure): void
{
$router = Kiri::getDi()->get(DataGrip::class)->get(static::$type);
$router->groupTack[] = $config;
call_user_func($closure);
array_pop($router->groupTack);
}
/**
* @throws
*/
public function scan_build_route(): void
{
$coordinator = CoordinatorManager::utility(Coordinator::WORKER_START);
$container = Kiri::getDi();
2026-04-17 16:30:52 +08:00
$container->get(DataGrip::class)->reset(static::$type);
2024-12-16 16:36:35 +08:00
$scanner = $container->get(Kiri\Di\Scanner::class);
2026-04-17 16:30:52 +08:00
$artifactState = $container->get(RouteArtifactState::class);
$scanConfig = array_merge(
config('servers.reload.scan', []),
config('site.scanner', [])
);
$scanner->setConfig($scanConfig);
$changedFiles = $container->get(HotReloadState::class)->consume();
$normalizedAppPath = str_replace('\\', '/', APP_PATH . 'app');
$normalizedRoutePath = str_replace('\\', '/', APP_PATH . 'routes');
$routeChanged = false;
$appChangedFiles = [];
foreach ($changedFiles as $changedFile) {
if (str_starts_with($changedFile, $normalizedRoutePath . '/')) {
$routeChanged = true;
continue;
}
if (str_starts_with($changedFile, $normalizedAppPath . '/')) {
$appChangedFiles[] = $changedFile;
}
}
$usedArtifact = false;
if (($scanConfig['cache_enabled'] ?? false) && !$routeChanged && $artifactState->has(static::$type)) {
$artifact = $artifactState->load(static::$type);
$router = $container->get(DataGrip::class)->get(static::$type);
$usedArtifact = $router->importArtifact($artifact, $appChangedFiles);
}
if (!$usedArtifact) {
$this->read_dir_file(APP_PATH . 'routes');
}
if (!$routeChanged && !empty($appChangedFiles) && ($scanConfig['cache_enabled'] ?? false)) {
$scanner->scanFiles($appChangedFiles, APP_PATH . 'app/', null, !$usedArtifact);
} elseif (!$usedArtifact) {
$scanner->scan(APP_PATH . 'app/');
} else {
$scanner->scanFiles([], APP_PATH . 'app/', null, false);
}
2024-12-16 16:36:35 +08:00
$this->reset($container);
2026-04-17 16:30:52 +08:00
$artifactState->store(static::$type, $container->get(DataGrip::class)->get(static::$type)->exportArtifact());
2024-12-16 16:36:35 +08:00
$coordinator->done();
}
/**
* @param ContainerInterface $container
*
* @return void
* @throws
*/
public function reset(ContainerInterface $container): void
{
$router = $container->get(DataGrip::class)->get(static::$type);
2026-04-17 16:30:52 +08:00
if ((bool)config('servers.reload.scan.prebuild_http_handlers', false)) {
$router->warmHttpHandlers();
2024-12-16 16:36:35 +08:00
}
}
/**
* @param $path
*
* @return void
* @throws
*/
private function read_dir_file($path): void
{
$files = glob($path . '/*');
for ($i = 0; $i < count($files); $i++) {
$file = $files[$i];
if (is_dir($file)) {
$this->read_dir_file($file);
} else {
$this->resolve_file($file);
}
}
}
/**
* @param $files
*
* @throws
*/
private function resolve_file($files): void
{
try {
2026-04-17 16:30:52 +08:00
static::$currentSourceFile = str_replace('\\', '/', realpath($files) ?: $files);
2024-12-16 16:36:35 +08:00
include "$files";
} catch (\Throwable $throwable) {
2025-12-31 00:19:29 +08:00
\Kiri::getLogger()->json_log($throwable);
2026-04-17 16:30:52 +08:00
} finally {
static::$currentSourceFile = null;
2024-12-16 16:36:35 +08:00
}
}
2023-04-15 23:29:27 +08:00
2026-04-17 16:30:52 +08:00
public static function getCurrentSourceFile(): ?string
{
return static::$currentSourceFile;
}
2023-04-15 23:29:27 +08:00
}