UserLevel.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace app\data\command;
  3. use app\data\service\UserService;
  4. use think\admin\Command;
  5. use think\admin\Exception;
  6. use think\console\Input;
  7. use think\console\Output;
  8. /**
  9. * 用户等级重算处理
  10. * Class UserLevel
  11. * @package app\data\command
  12. */
  13. class UserLevel extends Command
  14. {
  15. protected function configure()
  16. {
  17. $this->setName('xdata:UserLevel');
  18. $this->setDescription('批量重新计算用户等级');
  19. }
  20. /**
  21. * @param Input $input
  22. * @param Output $output
  23. * @return void
  24. * @throws Exception
  25. */
  26. protected function execute(Input $input, Output $output)
  27. {
  28. try {
  29. [$total, $count] = [$this->app->db->name('DataUser')->count(), 0];
  30. foreach ($this->app->db->name('DataUser')->field('id')->cursor() as $user) {
  31. $this->queue->message($total, ++$count, "正在计算用户 [{$user['id']}] 的等级");
  32. UserService::instance()->syncLevel($user['id']);
  33. $this->queue->message($total, $count, "完成计算用户 [{$user['id']}] 的等级", 1);
  34. }
  35. } catch (\Exception $exception) {
  36. $this->queue->error($exception->getMessage());
  37. }
  38. }
  39. }