mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
41 lines
1 KiB
PHP
41 lines
1 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands\Concerns;
|
|
|
|
/**
|
|
* @method void error($message, $verbosity = null)
|
|
* @method mixed secret($message, $fallback = true)
|
|
*/
|
|
trait AskForPassword
|
|
{
|
|
private function askForPassword(): string
|
|
{
|
|
do {
|
|
$password = $this->secret('Your desired password');
|
|
|
|
if (!$password) {
|
|
$this->error('Passwords cannot be empty. You know that.');
|
|
continue;
|
|
}
|
|
|
|
$confirmedPassword = $this->secret('Again, just to be sure');
|
|
} while (!$this->comparePasswords($password, $confirmedPassword ?? null));
|
|
|
|
return $password;
|
|
}
|
|
|
|
private function comparePasswords(?string $password, ?string $confirmedPassword): bool
|
|
{
|
|
if (!$password || !$confirmedPassword) {
|
|
return false;
|
|
}
|
|
|
|
if (strcmp($password, $confirmedPassword) !== 0) {
|
|
$this->error('The passwords do not match. Try again maybe?');
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|