mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-10 17:23:12 +08:00
Created a config prost-processor which adds the base path on every applicable configuration
This commit is contained in:
39
module/Core/src/Config/BasePathPrefixer.php
Normal file
39
module/Core/src/Config/BasePathPrefixer.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Shlinkio\Shlink\Core\Config;
|
||||
|
||||
use function Functional\map;
|
||||
|
||||
class BasePathPrefixer
|
||||
{
|
||||
public function __invoke(array $config): array
|
||||
{
|
||||
$basePath = $config['router']['base_path'] ?? '';
|
||||
$config['routes'] = $this->prefixRoutesWithBasePath($config, $basePath);
|
||||
$config['middleware_pipeline'] = $this->prefixMiddlewarePathsWithBasePath($config, $basePath);
|
||||
$config['url_shortener']['domain']['hostname'] .= $basePath;
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
private function prefixRoutesWithBasePath(array $config, string $basePath): array
|
||||
{
|
||||
return map($config['routes'] ?? [], function (array $route) use ($basePath) {
|
||||
$route['path'] = $basePath . $route['path'];
|
||||
return $route;
|
||||
});
|
||||
}
|
||||
|
||||
private function prefixMiddlewarePathsWithBasePath(array $config, string $basePath): array
|
||||
{
|
||||
return map($config['middleware_pipeline'] ?? [], function (array $middleware) use ($basePath) {
|
||||
if (! isset($middleware['path'])) {
|
||||
return $middleware;
|
||||
}
|
||||
|
||||
$middleware['path'] = $basePath . $middleware['path'];
|
||||
return $middleware;
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Shlinkio\Shlink\Core;
|
||||
namespace Shlinkio\Shlink\Core\Config;
|
||||
|
||||
use Shlinkio\Shlink\Installer\Util\PathCollection;
|
||||
use Zend\Stdlib\ArrayUtils;
|
||||
@@ -22,6 +22,7 @@ class SimplifiedConfigParser
|
||||
'db_config' => ['entity_manager', 'connection'],
|
||||
'delete_short_url_threshold' => ['delete_short_urls', 'visits_threshold'],
|
||||
'redis_servers' => ['redis', 'servers'],
|
||||
'base_path' => ['router', 'base_path'],
|
||||
];
|
||||
private const SIMPLIFIED_CONFIG_SIDE_EFFECTS = [
|
||||
'not_found_redirect_to' => [
|
||||
Reference in New Issue
Block a user