shlink/module/Rest/src/ConfigProvider.php

47 lines
1.2 KiB
PHP
Raw Normal View History

2016-07-19 18:07:59 +03:00
<?php
2019-10-05 18:26:10 +03:00
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
2016-07-19 18:07:59 +03:00
namespace Shlinkio\Shlink\Rest;
use Closure;
use function Shlinkio\Shlink\Common\loadConfigFromGlob;
2018-12-23 12:18:38 +03:00
use function sprintf;
2016-07-19 18:07:59 +03:00
class ConfigProvider
{
private const ROUTES_PREFIX = '/rest/v{version:1|2}';
private const UNVERSIONED_ROUTES_PREFIX = '/rest';
2018-01-07 22:45:05 +03:00
private Closure $loadConfig;
public function __construct(?callable $loadConfig = null)
{
$this->loadConfig = Closure::fromCallable($loadConfig ?? fn (string $glob) => loadConfigFromGlob($glob));
}
2016-07-19 18:07:59 +03:00
public function __invoke()
{
$config = ($this->loadConfig)(__DIR__ . '/../config/{,*.}config.php');
2018-01-07 22:46:28 +03:00
return $this->applyRoutesPrefix($config);
2018-01-07 22:45:05 +03:00
}
private function applyRoutesPrefix(array $config): array
{
$routes =& $config['routes'] ?? [];
// Prepend the routes prefix to every path
foreach ($routes as $key => $route) {
2018-12-29 13:24:55 +03:00
['path' => $path] = $route;
$routes[$key]['path'] = sprintf(
'%s%s',
$path === '/health' ? self::UNVERSIONED_ROUTES_PREFIX : self::ROUTES_PREFIX,
$path,
);
2018-01-07 22:45:05 +03:00
}
return $config;
2016-07-19 18:07:59 +03:00
}
}