update route service

This commit is contained in:
2026-04-02 14:41:47 +08:00
parent d28a014209
commit 6d7f892237
4 changed files with 271 additions and 79 deletions
+3 -79
View File
@@ -4,12 +4,9 @@ declare(strict_types=1);
namespace App\Command;
use App\Model\Route;
use App\Service\RouteSyncService;
use Hyperf\Command\Annotation\Command;
use Hyperf\Command\Command as HyperfCommand;
use Hyperf\HttpServer\Router\DispatcherFactory;
use Hyperf\HttpServer\Router\Handler;
use Hyperf\HttpServer\Router\RouteCollector;
use Psr\Container\ContainerInterface;
#[Command]
@@ -28,80 +25,7 @@ class RouteSyncCommand extends HyperfCommand
public function handle(): void
{
$factory = $this->container->get(DispatcherFactory::class);
$router = $factory->getRouter('http');
$routes = $this->extractRoutes($router);
$synced = 0;
foreach ($routes as $route_info) {
Route::query()->updateOrCreate(
['method' => $route_info['method'], 'path' => $route_info['path']],
['name' => $route_info['name']]
);
$synced++;
}
$this->info("Synced {$synced} routes to database.");
}
/**
* 从路由收集器中提取所有 API 路由
*
* @return array<int, array{method: string, path: string, name: string|null}>
*/
protected function extractRoutes(RouteCollector $router): array
{
$routes = [];
[$staticRouters, $variableRouters] = $router->getData();
// 静态路由(无路径参数)
foreach ($staticRouters as $method => $items) {
foreach ($items as $handler) {
$this->collectRoute($routes, $method, $handler);
}
}
// 动态路由(含路径参数如 {id})
foreach ($variableRouters as $method => $items) {
foreach ($items as $item) {
if (is_array($item['routeMap'] ?? false)) {
foreach ($item['routeMap'] as $routeMap) {
$this->collectRoute($routes, $method, $routeMap[0]);
}
}
}
}
return $routes;
}
/**
* 收集单条路由信息,仅同步 /api/ 前缀的路由
*/
protected function collectRoute(array &$routes, string $method, Handler $handler): void
{
$path = $handler->route;
// 仅同步 API 路由
if (!str_starts_with($path, '/api/')) {
return;
}
// 解析 action 名称
$name = null;
if (is_array($handler->callback)) {
$name = $handler->callback[0] . '::' . $handler->callback[1];
} elseif (is_string($handler->callback)) {
$name = $handler->callback;
}
$key = $method . '|' . $path;
if (!isset($routes[$key])) {
$routes[$key] = [
'method' => $method,
'path' => $path,
'name' => $name,
];
}
$result = $this->container->get(RouteSyncService::class)->sync();
$this->info("Synced {$result['synced']} routes to database.");
}
}