mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
58 lines
1.6 KiB
PHP
58 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Fig\Http\Message\RequestMethodInterface as RequestMethod;
|
|
use RKA\Middleware\IpAddress;
|
|
use Shlinkio\Shlink\Core\Action;
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => Action\RobotsAction::class,
|
|
'path' => '/robots.txt',
|
|
'middleware' => [
|
|
Action\RobotsAction::class,
|
|
],
|
|
'allowed_methods' => [RequestMethod::METHOD_GET],
|
|
],
|
|
[
|
|
'name' => Action\RedirectAction::class,
|
|
'path' => '/{shortCode}',
|
|
'middleware' => [
|
|
IpAddress::class,
|
|
Action\RedirectAction::class,
|
|
],
|
|
'allowed_methods' => [RequestMethod::METHOD_GET],
|
|
],
|
|
[
|
|
'name' => Action\PixelAction::class,
|
|
'path' => '/{shortCode}/track',
|
|
'middleware' => [
|
|
IpAddress::class,
|
|
Action\PixelAction::class,
|
|
],
|
|
'allowed_methods' => [RequestMethod::METHOD_GET],
|
|
],
|
|
[
|
|
'name' => Action\QrCodeAction::class,
|
|
'path' => '/{shortCode}/qr-code',
|
|
'middleware' => [
|
|
Action\QrCodeAction::class,
|
|
],
|
|
'allowed_methods' => [RequestMethod::METHOD_GET],
|
|
],
|
|
|
|
// Deprecated
|
|
[
|
|
'name' => 'old_' . Action\QrCodeAction::class,
|
|
'path' => '/{shortCode}/qr-code/{size:[0-9]+}',
|
|
'middleware' => [
|
|
Action\QrCodeAction::class,
|
|
],
|
|
'allowed_methods' => [RequestMethod::METHOD_GET],
|
|
],
|
|
],
|
|
|
|
];
|