2016-07-19 18:07:59 +03:00
|
|
|
<?php
|
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 Zend\Config\Factory;
|
|
|
|
use Zend\Stdlib\Glob;
|
|
|
|
|
|
|
|
class ConfigProvider
|
|
|
|
{
|
2018-01-07 22:45:05 +03:00
|
|
|
const ROUTES_PREFIX = '/rest/v{version:1}';
|
|
|
|
|
2016-07-19 18:07:59 +03:00
|
|
|
public function __invoke()
|
|
|
|
{
|
2018-01-07 22:46:28 +03:00
|
|
|
/** @var array $config */
|
|
|
|
$config = Factory::fromFiles(Glob::glob(__DIR__ . '/../config/{,*.}config.php', Glob::GLOB_BRACE));
|
|
|
|
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) {
|
|
|
|
$routes[$key]['path'] = self::ROUTES_PREFIX . $route['path'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|
2016-07-19 18:07:59 +03:00
|
|
|
}
|
|
|
|
}
|