AzuraCast/src/Installer/EnvFiles/AzuraCastEnvFile.php

274 lines
12 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Installer\EnvFiles;
use App\Enums\ApplicationEnvironment;
use App\Enums\SupportedLocales;
use App\Environment;
use Psr\Log\LogLevel;
use function __;
final class AzuraCastEnvFile extends AbstractEnvFile
{
/** @inheritDoc */
public static function getConfiguration(Environment $environment): array
{
static $config = null;
if (null === $config) {
$emptyEnv = Environment::getDefaultsForEnvironment($environment);
$defaults = $emptyEnv->toArray();
$langOptions = [];
foreach (SupportedLocales::cases() as $supportedLocale) {
$langOptions[] = $supportedLocale->getLocaleWithoutEncoding();
}
$dbSettings = $emptyEnv->getDatabaseSettings();
$redisSettings = $emptyEnv->getRedisSettings();
$config = [
Environment::LANG => [
'name' => __('The locale to use for CLI commands.'),
'options' => $langOptions,
'default' => SupportedLocales::default()->getLocaleWithoutEncoding(),
'required' => true,
],
Environment::APP_ENV => [
'name' => __('The application environment.'),
'options' => ApplicationEnvironment::toSelect(),
'required' => true,
],
Environment::LOG_LEVEL => [
'name' => __('Manually modify the logging level.'),
'description' => __(
'This allows you to log debug-level errors temporarily (for problem-solving) or reduce the volume of logs that are produced by your installation, without needing to modify whether your installation is a production or development instance.'
),
'options' => [
LogLevel::DEBUG,
LogLevel::INFO,
LogLevel::NOTICE,
LogLevel::WARNING,
LogLevel::ERROR,
LogLevel::CRITICAL,
LogLevel::ALERT,
LogLevel::EMERGENCY,
],
],
'COMPOSER_PLUGIN_MODE' => [
'name' => __('Enable Custom Code Plugins'),
'description' => __(
'Enable the composer "merge" functionality to combine the main application\'s composer.json file with any plugin composer files. This can have performance implications, so you should only use it if you use one or more plugins with their own Composer dependencies.',
),
'options' => [true, false],
'default' => false,
],
Environment::AUTO_ASSIGN_PORT_MIN => [
'name' => __('Minimum Port for Station Port Assignment'),
'description' => __(
'Modify this if your stations are listening on nonstandard ports.',
),
],
Environment::AUTO_ASSIGN_PORT_MAX => [
'name' => __('Maximum Port for Station Port Assignment'),
'description' => __(
'Modify this if your stations are listening on nonstandard ports.',
),
],
Environment::SHOW_DETAILED_ERRORS => [
'name' => __('Show Detailed Slim Application Errors'),
'description' => __(
'This allows you to debug Slim Application Errors you may encounter. Please report any Slim Application Error logs to the development team on GitHub.'
),
'options' => [true, false],
'default' => false,
],
Environment::DB_HOST => [
'name' => __('MariaDB Host'),
'description' => __(
'Do not modify this after installation.',
),
'default' => $dbSettings['host'],
'required' => true,
],
Environment::DB_PORT => [
'name' => __('MariaDB Port'),
'description' => __(
'Do not modify this after installation.',
),
'default' => $dbSettings['port'],
'required' => true,
],
Environment::DB_USER => [
'name' => __('MariaDB Username'),
'description' => __(
'Do not modify this after installation.',
),
'default' => $dbSettings['user'],
'required' => true,
],
Environment::DB_PASSWORD => [
'name' => __('MariaDB Password'),
'description' => __(
'Do not modify this after installation.',
),
'default' => $dbSettings['password'],
'required' => true,
],
Environment::DB_NAME => [
'name' => __('MariaDB Database Name'),
'description' => __(
'Do not modify this after installation.',
),
'default' => $dbSettings['dbname'],
'required' => true,
],
'MYSQL_RANDOM_ROOT_PASSWORD' => [
'name' => __('Auto-generate Random MariaDB Root Password'),
'description' => __(
'Do not modify this after installation.',
),
],
'MYSQL_ROOT_PASSWORD' => [
'name' => __('MariaDB Root Password'),
'description' => __(
'Do not modify this after installation.',
),
],
'MYSQL_SLOW_QUERY_LOG' => [
'name' => __('Enable MariaDB Slow Query Log'),
'description' => __(
'Log slower queries to diagnose possible database issues. Only turn this on if needed.',
),
'default' => 0,
],
'MYSQL_MAX_CONNECTIONS' => [
'name' => __('MariaDB Maximum Connections'),
'description' => __(
'Set the amount of allowed connections to the database. This value should be increased if you are seeing the "Too many connections" error in the logs.',
),
'default' => 100,
],
'MYSQL_INNODB_BUFFER_POOL_SIZE' => [
'name' => __('MariaDB InnoDB Buffer Pool Size'),
'description' => __(
'The InnoDB buffer pool size controls how much data & indexes are kept in memory. Making sure that this value is as large as possible reduces the amount of disk IO.',
),
'default' => '128M',
],
'MYSQL_INNODB_LOG_FILE_SIZE' => [
'name' => __('MariaDB InnoDB Log File Size'),
'description' => __(
'The InnoDB log file is used to achieve data durability in case of crashes or unexpected shutoffs and to allow the DB to better optimize IO for write operations.',
),
'default' => '16M',
],
Environment::ENABLE_REDIS => [
'name' => __('Enable Redis'),
'description' => __(
'Disable to use a flatfile cache instead of Redis.',
),
],
Environment::REDIS_HOST => [
'name' => __('Redis Host'),
'default' => $redisSettings['host'],
'required' => true,
],
Environment::REDIS_PORT => [
'name' => __('Redis Port'),
'default' => $redisSettings['port'],
'required' => true,
],
'PHP_MAX_FILE_SIZE' => [
'name' => __('PHP Maximum POST File Size'),
'default' => '25M',
],
'PHP_MEMORY_LIMIT' => [
'name' => __('PHP Memory Limit'),
'default' => '128M',
],
'PHP_MAX_EXECUTION_TIME' => [
'name' => __('PHP Script Maximum Execution Time (Seconds)'),
'default' => 30,
],
Environment::SYNC_SHORT_EXECUTION_TIME => [
'name' => __('Short Sync Task Execution Time (Seconds)'),
'description' => __(
'The maximum execution time (and lock timeout) for the 15-second, 1-minute and 5-minute synchronization tasks.'
),
],
Environment::SYNC_LONG_EXECUTION_TIME => [
'name' => __('Long Sync Task Execution Time (Seconds)'),
'description' => __(
'The maximum execution time (and lock timeout) for the 1-hour synchronization task.',
),
],
Environment::NOW_PLAYING_DELAY_TIME => [
'name' => __('Now Playing Delay Time (Seconds)'),
'description' => __(
'The delay between Now Playing checks for every station. Decrease for more frequent checks at the expense of performance; increase for less frequent checks but better performance (for large installations).'
),
],
Environment::NOW_PLAYING_MAX_CONCURRENT_PROCESSES => [
'name' => __('Now Playing Max Concurrent Processes'),
'description' => __(
'The maximum number of concurrent processes for now playing updates. Increasing this can help reduce the latency between updates now playing updates on large installations.'
),
],
'PHP_FPM_MAX_CHILDREN' => [
'name' => __('Maximum PHP-FPM Worker Processes'),
'default' => 5,
],
Environment::PROFILING_EXTENSION_ENABLED => [
'name' => __('Enable Performance Profiling Extension'),
'description' => sprintf(
__('Profiling data can be viewed by visiting %s.'),
'http://your-azuracast-site/?SPX_KEY=dev&SPX_UI_URI=/',
),
],
Environment::PROFILING_EXTENSION_ALWAYS_ON => [
'name' => __('Profile Performance on All Requests'),
'description' => __(
'This will have a significant performance impact on your installation.',
),
],
Environment::PROFILING_EXTENSION_HTTP_KEY => [
'name' => __('Profiling Extension HTTP Key'),
'description' => __(
'The value for the "SPX_KEY" parameter for viewing profiling pages.',
),
],
'PROFILING_EXTENSION_HTTP_IP_WHITELIST' => [
'name' => __('Profiling Extension IP Allow List'),
'options' => ['127.0.0.1', '*'],
'default' => '*',
],
Environment::ENABLE_WEB_UPDATER => [
'name' => __('Enable web-based Docker image updates'),
'default' => true,
],
'INSTALL_PACKAGES_ON_STARTUP' => [
'name' => __('Extra Ubuntu packages to install upon startup'),
'default' => __(
'Separate package names with a space. Packages will be installed during container startup.'
),
],
];
foreach ($config as $key => &$keyInfo) {
$keyInfo['default'] ??= $defaults[$key] ?? null;
}
}
return $config;
}
public static function buildPathFromBase(string $baseDir): string
{
return $baseDir . DIRECTORY_SEPARATOR . 'azuracast.env';
}
}