mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
169 lines
4.4 KiB
PHP
169 lines
4.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink;
|
|
|
|
use Monolog\Handler\StreamHandler;
|
|
use Monolog\Logger;
|
|
|
|
use function explode;
|
|
use function file_exists;
|
|
use function file_get_contents;
|
|
use function file_put_contents;
|
|
use function Functional\contains;
|
|
use function implode;
|
|
use function Shlinkio\Shlink\Common\env;
|
|
use function sprintf;
|
|
use function str_shuffle;
|
|
use function substr;
|
|
use function sys_get_temp_dir;
|
|
|
|
$helper = new class {
|
|
private const BASE62 = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
|
private const DB_DRIVERS_MAP = [
|
|
'mysql' => 'pdo_mysql',
|
|
'maria' => 'pdo_mysql',
|
|
'postgres' => 'pdo_pgsql',
|
|
];
|
|
private const DB_PORTS_MAP = [
|
|
'mysql' => '3306',
|
|
'maria' => '3306',
|
|
'postgres' => '5432',
|
|
];
|
|
|
|
/** @var string */
|
|
private $secretKey;
|
|
|
|
public function __construct()
|
|
{
|
|
[, $this->secretKey] = $this->initShlinkSecretKey();
|
|
}
|
|
|
|
private function initShlinkSecretKey(): array
|
|
{
|
|
$keysFile = sprintf('%s/shlink.keys', sys_get_temp_dir());
|
|
if (file_exists($keysFile)) {
|
|
return explode(',', file_get_contents($keysFile));
|
|
}
|
|
|
|
$keys = [
|
|
'', // This was the SHORTCODE_CHARS. Kept as empty string for BC
|
|
env('SECRET_KEY', $this->generateSecretKey()), // Deprecated
|
|
];
|
|
|
|
file_put_contents($keysFile, implode(',', $keys));
|
|
return $keys;
|
|
}
|
|
|
|
private function generateSecretKey(): string
|
|
{
|
|
return substr(str_shuffle(self::BASE62), 0, 32);
|
|
}
|
|
|
|
public function getSecretKey(): string
|
|
{
|
|
return $this->secretKey;
|
|
}
|
|
|
|
public function getDbConfig(): array
|
|
{
|
|
$driver = env('DB_DRIVER');
|
|
if ($driver === null || $driver === 'sqlite') {
|
|
return [
|
|
'driver' => 'pdo_sqlite',
|
|
'path' => 'data/database.sqlite',
|
|
];
|
|
}
|
|
|
|
$driverOptions = ! contains(['maria', 'mysql'], $driver) ? [] : [
|
|
// 1002 -> PDO::MYSQL_ATTR_INIT_COMMAND
|
|
1002 => 'SET NAMES utf8',
|
|
];
|
|
return [
|
|
'driver' => self::DB_DRIVERS_MAP[$driver],
|
|
'dbname' => env('DB_NAME', 'shlink'),
|
|
'user' => env('DB_USER'),
|
|
'password' => env('DB_PASSWORD'),
|
|
'host' => env('DB_HOST'),
|
|
'port' => env('DB_PORT', self::DB_PORTS_MAP[$driver]),
|
|
'driverOptions' => $driverOptions,
|
|
];
|
|
}
|
|
|
|
public function getNotFoundRedirectsConfig(): array
|
|
{
|
|
return [
|
|
'invalid_short_url' => env('INVALID_SHORT_URL_REDIRECT_TO', env('NOT_FOUND_REDIRECT_TO')),
|
|
'regular_404' => env('REGULAR_404_REDIRECT_TO'),
|
|
'base_url' => env('BASE_URL_REDIRECT_TO'),
|
|
];
|
|
}
|
|
};
|
|
|
|
return [
|
|
|
|
'config_cache_enabled' => false,
|
|
|
|
'app_options' => [
|
|
'secret_key' => $helper->getSecretKey(),
|
|
'disable_track_param' => env('DISABLE_TRACK_PARAM'),
|
|
],
|
|
|
|
'delete_short_urls' => [
|
|
'check_visits_threshold' => true,
|
|
'visits_threshold' => (int) env('DELETE_SHORT_URL_THRESHOLD', 15),
|
|
],
|
|
|
|
'entity_manager' => [
|
|
'connection' => $helper->getDbConfig(),
|
|
],
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => env('SHORT_DOMAIN_SCHEMA', 'http'),
|
|
'hostname' => env('SHORT_DOMAIN_HOST', ''),
|
|
],
|
|
'validate_url' => (bool) env('VALIDATE_URLS', true),
|
|
],
|
|
|
|
'not_found_redirects' => $helper->getNotFoundRedirectsConfig(),
|
|
|
|
'logger' => [
|
|
'Shlink' => [
|
|
'handlers' => [
|
|
'shlink_handler' => [
|
|
'name' => StreamHandler::class,
|
|
'params' => [
|
|
'level' => Logger::INFO,
|
|
'stream' => 'php://stdout',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
|
|
'dependencies' => [
|
|
'aliases' => env('REDIS_SERVERS') === null ? [] : [
|
|
'lock_store' => 'redis_lock_store',
|
|
],
|
|
],
|
|
|
|
'redis' => [
|
|
'servers' => env('REDIS_SERVERS'),
|
|
],
|
|
|
|
'router' => [
|
|
'base_path' => env('BASE_PATH', ''),
|
|
],
|
|
|
|
'zend-expressive-swoole' => [
|
|
'swoole-http-server' => [
|
|
'options' => [
|
|
'worker_num' => (int) env('WEB_WORKER_NUM', 16),
|
|
'task_worker_num' => (int) env('TASK_WORKER_NUM', 16),
|
|
],
|
|
],
|
|
],
|
|
|
|
];
|