mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 01:44:45 +02:00

* Remove unused option * Add redis user * Adapt lang * Change default redis username * Cleanup * Update app/Traits/Commands/RequestRedisSettingsTrait.php Co-authored-by: Boy132 <Boy132@users.noreply.github.com> --------- Co-authored-by: Boy132 <Boy132@users.noreply.github.com>
53 lines
1.9 KiB
PHP
53 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Traits\Commands;
|
|
|
|
trait RequestRedisSettingsTrait
|
|
{
|
|
protected function requestRedisSettings(): void
|
|
{
|
|
$this->output->note(__('commands.appsettings.redis.note'));
|
|
$this->variables['REDIS_HOST'] = $this->option('redis-host') ?? $this->ask(
|
|
'Redis Host',
|
|
config('database.redis.default.host')
|
|
);
|
|
|
|
$askForRedisUser = true;
|
|
$askForRedisPassword = true;
|
|
|
|
if (!empty(config('database.redis.default.user'))) {
|
|
$this->variables['REDIS_USERNAME'] = config('database.redis.default.user');
|
|
$askForRedisUser = $this->confirm(__('commands.appsettings.redis.confirm', ['field' => 'user']));
|
|
}
|
|
if (!empty(config('database.redis.default.password'))) {
|
|
$this->variables['REDIS_PASSWORD'] = config('database.redis.default.password');
|
|
$askForRedisPassword = $this->confirm(__('commands.appsettings.redis.confirm', ['field' => 'password']));
|
|
}
|
|
|
|
if ($askForRedisUser) {
|
|
$this->output->comment(__('commands.appsettings.redis.comment'));
|
|
$this->variables['REDIS_USERNAME'] = $this->option('redis-user') ?? $this->output->askHidden(
|
|
'Redis User'
|
|
);
|
|
}
|
|
if ($askForRedisPassword) {
|
|
$this->output->comment(__('commands.appsettings.redis.comment'));
|
|
$this->variables['REDIS_PASSWORD'] = $this->option('redis-pass') ?? $this->output->askHidden(
|
|
'Redis Password'
|
|
);
|
|
}
|
|
|
|
if (empty($this->variables['REDIS_USERNAME'])) {
|
|
$this->variables['REDIS_USERNAME'] = 'null';
|
|
}
|
|
if (empty($this->variables['REDIS_PASSWORD'])) {
|
|
$this->variables['REDIS_PASSWORD'] = 'null';
|
|
}
|
|
|
|
$this->variables['REDIS_PORT'] = $this->option('redis-port') ?? $this->ask(
|
|
'Redis Port',
|
|
config('database.redis.default.port')
|
|
);
|
|
}
|
|
}
|