2019-10-23 10:45:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands\Admin;
|
|
|
|
|
2019-11-29 20:28:34 +00:00
|
|
|
use App\Console\Commands\Traits\AskForPassword;
|
2019-10-23 10:45:57 +00:00
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use Illuminate\Contracts\Hashing\Hasher as Hash;
|
|
|
|
|
|
|
|
class ChangePasswordCommand extends Command
|
|
|
|
{
|
2019-11-29 20:28:34 +00:00
|
|
|
use AskForPassword;
|
|
|
|
|
2020-06-13 19:57:00 +00:00
|
|
|
protected $signature = "koel:admin:change-password
|
|
|
|
{email? : The user's email. If empty, will get the default admin user.}";
|
|
|
|
protected $description = "Change a user's password";
|
2019-10-23 10:45:57 +00:00
|
|
|
|
|
|
|
private $hash;
|
|
|
|
|
|
|
|
public function __construct(Hash $hash)
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
$this->hash = $hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function handle(): void
|
|
|
|
{
|
2020-06-13 19:57:00 +00:00
|
|
|
$email = $this->argument('email');
|
|
|
|
|
2019-10-23 13:51:37 +00:00
|
|
|
/** @var User|null $user */
|
2020-06-13 19:57:00 +00:00
|
|
|
$user = $email ? User::where('email', $email)->first() : User::where('is_admin', true)->first();
|
2019-10-23 10:45:57 +00:00
|
|
|
|
|
|
|
if (!$user) {
|
2020-06-13 19:57:00 +00:00
|
|
|
$this->error('The user account cannot be found.');
|
2019-10-23 10:45:57 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-13 19:57:00 +00:00
|
|
|
$this->comment("Changing the user's password (ID: {$user->id}, email: {$user->email})");
|
2019-10-23 10:45:57 +00:00
|
|
|
|
2019-11-29 20:28:34 +00:00
|
|
|
$user->password = $this->hash->make($this->askForPassword());
|
2019-10-23 10:45:57 +00:00
|
|
|
$user->save();
|
|
|
|
|
2020-06-13 19:57:00 +00:00
|
|
|
$this->comment('Alrighty, the new password has been saved. Enjoy! 👌');
|
2019-10-23 10:45:57 +00:00
|
|
|
}
|
|
|
|
}
|