Queue.php 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.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 library\Controller;
  16. use think\Console;
  17. use think\Db;
  18. /**
  19. * 系统消息任务
  20. * Class Queue
  21. * @package app\admin\controller
  22. */
  23. class Queue extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'SystemJobsLog';
  30. /**
  31. * 系统消息任务
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '消息任务管理';
  43. if (session('admin_user.username') === 'admin') {
  44. $this->cmd = 'php ' . env('root_path') . 'think xtask:start';
  45. $this->message = Console::call('xtask:state')->fetch();
  46. }
  47. $this->uris = Db::name($this->table)->distinct(true)->column('uri');
  48. $query = $this->_query($this->table)->dateBetween('create_at,status_at');
  49. $query->equal('status,title,uri')->order('id desc')->page();
  50. }
  51. /**
  52. * 重置失败任务
  53. * @auth true
  54. */
  55. public function redo()
  56. {
  57. try {
  58. $where = ['id' => $this->request->post('id')];
  59. $info = Db::name($this->table)->where($where)->find();
  60. if (empty($info)) $this->error('需要重置的任务获取异常!');
  61. $data = isset($info['data']) ? json_decode($info['data'], true) : '[]';
  62. \app\admin\service\QueueService::add($info['title'], $info['uri'], $info['later'], $data, $info['double'], $info['desc']);
  63. $this->success('任务重置成功!', url('@admin') . '#' . url('@admin/queue/index'));
  64. } catch (\think\exception\HttpResponseException $exception) {
  65. throw $exception;
  66. } catch (\Exception $e) {
  67. $this->error("任务重置失败,请稍候再试!<br> {$e->getMessage()}");
  68. }
  69. }
  70. /**
  71. * 删除消息任务
  72. * @auth true
  73. */
  74. public function remove()
  75. {
  76. try {
  77. $isNot = false;
  78. foreach (explode(',', $this->request->post('id', '0')) as $id) {
  79. if (!\app\admin\service\QueueService::del($id)) $isNot = true;
  80. }
  81. if (empty($isNot)) $this->_delete($this->table);
  82. $this->success($isNot ? '部分任务删除成功!' : '任务删除成功!');
  83. } catch (\think\exception\HttpResponseException $exception) {
  84. throw $exception;
  85. } catch (\Exception $e) {
  86. $this->error("任务删除失败,请稍候再试!<br> {$e->getMessage()}");
  87. }
  88. }
  89. }