loadFromEnv(false) ? '[/]' : ''; return [ // The order of the routes defined here matters. Changing it might cause path conflicts 'routes' => [ // Rest ...ConfigProvider::applyRoutesPrefix([ Action\HealthAction::getRouteDef(), // Visits and rules routes must go first, as they have a more specific path, otherwise, when // multi-segment slugs are enabled, routes with a less-specific path might match first // Visits. Action\Visit\ShortUrlVisitsAction::getRouteDef([$dropDomainMiddleware]), Action\ShortUrl\DeleteShortUrlVisitsAction::getRouteDef([$dropDomainMiddleware]), Action\Visit\TagVisitsAction::getRouteDef(), Action\Visit\DomainVisitsAction::getRouteDef(), Action\Visit\GlobalVisitsAction::getRouteDef(), Action\Visit\OrphanVisitsAction::getRouteDef(), Action\Visit\DeleteOrphanVisitsAction::getRouteDef(), Action\Visit\NonOrphanVisitsAction::getRouteDef(), //Redirect rules Action\RedirectRule\ListRedirectRulesAction::getRouteDef([$dropDomainMiddleware]), Action\RedirectRule\SetRedirectRulesAction::getRouteDef([$dropDomainMiddleware]), // Short URLs Action\ShortUrl\CreateShortUrlAction::getRouteDef([ $dropDomainMiddleware, $overrideDomainMiddleware, Middleware\ShortUrl\DefaultShortCodesLengthMiddleware::class, ]), Action\ShortUrl\SingleStepCreateShortUrlAction::getRouteDef([ Middleware\ShortUrl\CreateShortUrlContentNegotiationMiddleware::class, $overrideDomainMiddleware, ]), Action\ShortUrl\EditShortUrlAction::getRouteDef([$dropDomainMiddleware]), Action\ShortUrl\DeleteShortUrlAction::getRouteDef([$dropDomainMiddleware]), Action\ShortUrl\ResolveShortUrlAction::getRouteDef([$dropDomainMiddleware]), Action\ShortUrl\ListShortUrlsAction::getRouteDef(), // Tags Action\Tag\ListTagsAction::getRouteDef(), Action\Tag\TagsStatsAction::getRouteDef(), Action\Tag\DeleteTagsAction::getRouteDef(), Action\Tag\UpdateTagAction::getRouteDef(), // Domains Action\Domain\ListDomainsAction::getRouteDef(), Action\Domain\DomainRedirectsAction::getRouteDef(), Action\MercureInfoAction::getRouteDef([NotConfiguredMercureErrorHandler::class]), ]), // Non-rest [ 'name' => CoreAction\RobotsAction::class, 'path' => '/robots.txt', 'middleware' => [ CoreAction\RobotsAction::class, ], 'allowed_methods' => [RequestMethodInterface::METHOD_GET], ], [ 'name' => CoreAction\PixelAction::class, 'path' => '/{shortCode}/track', 'middleware' => [ IpAddress::class, CoreAction\PixelAction::class, ], 'allowed_methods' => [RequestMethodInterface::METHOD_GET], ], [ 'name' => CoreAction\QrCodeAction::class, 'path' => '/{shortCode}/qr-code', 'middleware' => [ CoreAction\QrCodeAction::class, ], 'allowed_methods' => [RequestMethodInterface::METHOD_GET], ], [ 'name' => CoreAction\RedirectAction::class, 'path' => sprintf('/{shortCode}%s', $shortUrlRouteSuffix), 'middleware' => [ IpAddress::class, TrimTrailingSlashMiddleware::class, CoreAction\RedirectAction::class, ], 'allowed_methods' => [RequestMethodInterface::METHOD_GET], ], ], ]; })();