Queue.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use think\admin\Controller;
  16. use think\admin\service\AdminService;
  17. use think\admin\service\ProcessService;
  18. use think\admin\service\QueueService;
  19. use think\exception\HttpResponseException;
  20. /**
  21. * 系统任务管理
  22. * Class Queue
  23. * @package app\admin\controller
  24. */
  25. class Queue extends Controller
  26. {
  27. /**
  28. * 绑定数据表
  29. * @var string
  30. */
  31. private $table = 'SystemQueue';
  32. /**
  33. * 系统任务管理
  34. * @auth true
  35. * @menu true
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function index()
  41. {
  42. if (AdminService::instance()->isSuper()) {
  43. $process = ProcessService::instance();
  44. if ($process->iswin() || empty($_SERVER['USER'])) {
  45. $this->command = $process->think('xadmin:queue start');
  46. } else {
  47. $this->command = "sudo -u {$_SERVER['USER']} {$process->think('xadmin:queue start')}";
  48. }
  49. }
  50. // 任务状态统计
  51. $this->total = ['dos' => 0, 'pre' => 0, 'oks' => 0, 'ers' => 0];
  52. $query = $this->app->db->name($this->table)->field('status,count(1) count');
  53. foreach ($query->group('status')->select()->toArray() as $item) {
  54. if ($item['status'] === 1) $this->total['pre'] = $item['count'];
  55. if ($item['status'] === 2) $this->total['dos'] = $item['count'];
  56. if ($item['status'] === 3) $this->total['oks'] = $item['count'];
  57. if ($item['status'] === 4) $this->total['ers'] = $item['count'];
  58. }
  59. $this->title = '系统任务管理';
  60. $this->iswin = ProcessService::instance()->iswin();
  61. // 任务列表查询及分页
  62. $query = $this->_query($this->table)->dateBetween('create_at')->timeBetween('enter_time,exec_time');
  63. $query->like('code,title,command')->equal('status')->order('loops_time desc,id desc')->page();
  64. }
  65. /**
  66. * 重启系统任务
  67. * @auth true
  68. */
  69. public function redo()
  70. {
  71. try {
  72. $data = $this->_vali(['code.require' => '任务编号不能为空!']);
  73. $queue = QueueService::instance()->initialize($data['code'])->reset();
  74. $queue->progress(1, '>>> 任务重置成功 <<<', 0.00);
  75. $this->success('任务重置成功!', $queue->code);
  76. } catch (HttpResponseException $exception) {
  77. throw $exception;
  78. } catch (\Exception $exception) {
  79. $this->error($exception->getMessage());
  80. }
  81. }
  82. /**
  83. * 重启任务结果处理
  84. * @param boolean $state
  85. */
  86. protected function _redo_save_result(bool $state)
  87. {
  88. if ($state) {
  89. $this->success('重启任务成功!');
  90. }
  91. }
  92. /**
  93. * 清理运行数据
  94. * @auth true
  95. */
  96. public function clean()
  97. {
  98. $this->_queue('定时清理系统运行数据', "xadmin:queue clean", 0, [], 0, 3600);
  99. }
  100. /**
  101. * 删除系统任务
  102. * @auth true
  103. * @throws \think\db\exception\DbException
  104. */
  105. public function remove()
  106. {
  107. $this->_delete($this->table);
  108. }
  109. }