截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace app\common\command;
  3. use app\admin\logic\AdminLogic;
  4. use app\common\model\Admin;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Argument;
  8. use think\console\Output;
  9. class Password extends Command
  10. {
  11. /**
  12. * @notes
  13. * @author 令狐冲
  14. * @date 2021/11/24 10:56
  15. */
  16. protected function configure()
  17. {
  18. $this->setName('password')
  19. ->addArgument('password', Argument::OPTIONAL, "your name")
  20. ->setDescription('修改超级管理密码');
  21. }
  22. /**
  23. * @notes
  24. * @param Input $input
  25. * @param Output $output
  26. * @return int|void|null
  27. * @author 令狐冲
  28. * @date 2021/11/22 17:15
  29. */
  30. protected function execute(Input $input, Output $output)
  31. {
  32. $password = trim($input->getArgument('password'));
  33. if (empty($password)) {
  34. $output->error('请输入密码');
  35. return;
  36. }
  37. $adminInfo = Admin::where(['root' => 1])->findOrEmpty();
  38. if (empty($adminInfo)) {
  39. $output->info('超级管理员账号不存在');
  40. } else {
  41. AdminLogic::updatePassword($password, $adminInfo['id']);
  42. $output->info('超级管理修改密码成功!');
  43. $output->info('账号:' . $adminInfo['account']);
  44. $output->info('密码:' . $password);
  45. }
  46. }
  47. }