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

* Not found property rule * Make these “better” * Day 1 * Day 2 * Day 3 * Dat 4 * Remove disabled check * Day 4 continued * Run pint * Final changes hopefully * Pint fixes * Fix again * Reset these * Update app/Filament/Admin/Pages/Health.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> * Update app/Traits/CheckMigrationsTrait.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> --------- Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com>
56 lines
2.0 KiB
PHP
56 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Traits\Commands;
|
|
|
|
trait RequestRedisSettingsTrait
|
|
{
|
|
/** @var array<string, mixed> */
|
|
protected array $variables;
|
|
|
|
protected function requestRedisSettings(): void
|
|
{
|
|
$this->output->note(trans('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(trans('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(trans('commands.appsettings.redis.confirm', ['field' => 'password']));
|
|
}
|
|
|
|
if ($askForRedisUser) {
|
|
$this->output->comment(trans('commands.appsettings.redis.comment'));
|
|
$this->variables['REDIS_USERNAME'] = $this->option('redis-user') ?? $this->output->askHidden(
|
|
'Redis User'
|
|
);
|
|
}
|
|
if ($askForRedisPassword) {
|
|
$this->output->comment(trans('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')
|
|
);
|
|
}
|
|
}
|