优化命令行重置超管密码;

This commit is contained in:
augushong
2021-11-29 21:39:46 +08:00
parent 9d4828bf6f
commit 2e17558f1b

View File

@@ -5,6 +5,7 @@ declare(strict_types=1);
namespace app\common\command\admin; namespace app\common\command\admin;
use app\admin\model\SystemAdmin; use app\admin\model\SystemAdmin;
use app\common\constants\AdminConstant;
use think\console\Command; use think\console\Command;
use think\console\Input; use think\console\Input;
use think\console\input\Argument; use think\console\input\Argument;
@@ -17,7 +18,7 @@ class ResetPassword extends Command
{ {
// 指令配置 // 指令配置
$this->setName('admin:resetPassword') $this->setName('admin:resetPassword')
->setDescription('the admin:resetPassword command'); ->setDescription('重置超管密码');
} }
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)
@@ -26,16 +27,18 @@ class ResetPassword extends Command
$output->writeln('admin:resetPassword'); $output->writeln('admin:resetPassword');
$model_admin = SystemAdmin::where('username', 'admin')->find(); $model_admin = SystemAdmin::find(AdminConstant::SUPER_ADMIN_ID);
if (empty($model_admin)) { if (empty($model_admin)) {
$output->writeln('管理员不存在'); $output->writeln('管理员不存在');
return false; return false;
} }
$password = uniqid();
$model_admin->save([ $model_admin->save([
'password' => password(123456) 'password' => password($password)
]); ]);
$output->writeln('修改成功'); $output->writeln('密码修改为:' . $password);
} }
} }