2026-04-01 20:27:42 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace MintyPHP\Http;
|
|
|
|
|
|
|
|
|
|
use MintyPHP\App\Module\ModuleRegistry;
|
|
|
|
|
use MintyPHP\Router;
|
|
|
|
|
use RuntimeException;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Registers core + module routes into the runtime router.
|
|
|
|
|
*/
|
|
|
|
|
final class RouteRegistrar
|
|
|
|
|
{
|
|
|
|
|
public function __construct(private readonly ModuleRegistry $moduleRegistry)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function register(RouteCatalog $catalog): void
|
|
|
|
|
{
|
|
|
|
|
$coreRoutePaths = [];
|
|
|
|
|
foreach ($catalog->coreRoutes() as $route) {
|
2026-04-05 16:32:34 +02:00
|
|
|
$path = trim($route['path']);
|
|
|
|
|
$target = trim($route['target']);
|
2026-04-01 20:27:42 +02:00
|
|
|
if ($path === '' || $target === '') {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$coreRoutePaths[$path] = $target;
|
|
|
|
|
Router::addRoute($path, $target);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$modulePaths = [];
|
|
|
|
|
foreach ($this->moduleRegistry->getRoutes() as $route) {
|
2026-04-05 16:32:34 +02:00
|
|
|
$path = trim($route['path']);
|
|
|
|
|
$target = trim($route['target']);
|
|
|
|
|
$moduleId = trim($route['module_id']);
|
2026-04-01 20:27:42 +02:00
|
|
|
if ($path === '' || $target === '') {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($coreRoutePaths[$path])) {
|
|
|
|
|
throw new RuntimeException(
|
|
|
|
|
"Module route path conflict: '{$path}' from module '{$moduleId}' collides with core route target '{$coreRoutePaths[$path]}'."
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (isset($modulePaths[$path])) {
|
|
|
|
|
throw new RuntimeException(
|
|
|
|
|
"Module route path conflict: '{$path}' from module '{$moduleId}' collides with module '{$modulePaths[$path]}'."
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$modulePaths[$path] = $moduleId;
|
|
|
|
|
Router::addRoute($path, $target);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|