Queue.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 think\admin\Controller;
  16. use think\admin\extend\ProcessExtend;
  17. use think\exception\HttpResponseException;
  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 = 'SystemQueue';
  30. /**
  31. * 系统任务管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public function index()
  39. {
  40. if ($this->app->session->get('user.username') === 'admin') {
  41. try {
  42. $this->command = ProcessExtend::think('xtask:start');
  43. $this->message = $this->app->console->call('xtask:state')->fetch();
  44. } catch (\Exception $exception) {
  45. $this->message = $exception->getMessage();
  46. }
  47. }
  48. $this->title = '系统任务管理';
  49. $this->iswin = PATH_SEPARATOR === ';';
  50. $query = $this->_query($this->table)->dateBetween('create_at,start_at,end_at');
  51. $query->like('title,preload')->equal('status')->order('id desc')->page();
  52. }
  53. /**
  54. * 重启系统任务
  55. * @auth true
  56. * @throws \think\db\exception\DbException
  57. */
  58. public function redo()
  59. {
  60. $this->_save($this->table, ['status' => '1']);
  61. }
  62. /**
  63. * (WIN)创建任务监听进程
  64. * @auth true
  65. */
  66. public function start()
  67. {
  68. try {
  69. $this->success(nl2br($this->app->console->call('xtask:start')->fetch()));
  70. } catch (HttpResponseException $exception) {
  71. throw $exception;
  72. } catch (\Exception $e) {
  73. $this->error($e->getMessage());
  74. }
  75. }
  76. /**
  77. * (WIN)停止任务监听进程
  78. * @auth true
  79. */
  80. public function stop()
  81. {
  82. try {
  83. $this->success(nl2br($this->app->console->call('xtask:stop')->fetch()));
  84. } catch (HttpResponseException $exception) {
  85. throw $exception;
  86. } catch (\Exception $e) {
  87. $this->error($e->getMessage());
  88. }
  89. }
  90. /**
  91. * 删除系统任务
  92. * @auth true
  93. * @throws \think\db\exception\DbException
  94. */
  95. public function remove()
  96. {
  97. $this->_delete($this->table);
  98. }
  99. }