12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace Encore\Admin\Console;
- use Illuminate\Console\Command;
- class ResetPasswordCommand extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'admin:reset-password';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Reset password for a specific admin user';
- /**
- * Execute the console command.
- */
- public function handle()
- {
- $userModel = config('admin.database.users_model');
- $users = $userModel::all();
- askForUserName:
- $username = $this->askWithCompletion('Please enter a username who needs to reset his password', $users->pluck('username')->toArray());
- $user = $users->first(function ($user) use ($username) {
- return $user->username == $username;
- });
- if (is_null($user)) {
- $this->error('The user you entered is not exists');
- goto askForUserName;
- }
- enterPassword:
- $password = $this->secret('Please enter a password');
- if ($password !== $this->secret('Please confirm the password')) {
- $this->error('The passwords entered twice do not match, please re-enter');
- goto enterPassword;
- }
- $user->password = bcrypt($password);
- $user->save();
- $this->info('User password reset successfully.');
- }
- }
|