Queue.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 library\service\ProcessService;
  17. use think\Console;
  18. use think\Db;
  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. protected $table = 'Queue';
  32. /**
  33. * 系统系统任务
  34. * @auth true
  35. * @menu true
  36. * @throws \think\Exception
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @throws \think\exception\DbException
  40. * @throws \think\exception\PDOException
  41. */
  42. public function index()
  43. {
  44. if (session('user.username') === 'admin') try {
  45. $this->message = Console::call('xtask:state')->fetch();
  46. $this->command = ProcessService::instance()->think('xtask:start');
  47. $this->listen = preg_match('/process.*?\d+.*?running/', $this->message, $attr);
  48. } catch (\Exception $exception) {
  49. $this->listen = false;
  50. $this->message = $exception->getMessage();
  51. }
  52. $this->title = '系统任务管理';
  53. $this->iswin = ProcessService::instance()->iswin();
  54. $query = $this->_query($this->table)->dateBetween('create_at,start_at,end_at');
  55. $query->like('title,preload')->equal('status')->order('id desc')->page();
  56. }
  57. /**
  58. * 重启系统任务
  59. * @auth true
  60. * @throws \think\Exception
  61. * @throws \think\exception\PDOException
  62. */
  63. public function redo()
  64. {
  65. $this->_save($this->table, ['status' => '1']);
  66. }
  67. /**
  68. * WIN开始监听任务
  69. * @auth true
  70. */
  71. public function start()
  72. {
  73. try {
  74. $message = nl2br(Console::call('xtask:start')->fetch());
  75. if (preg_match('/process.*?\d+/', $message, $attr)) {
  76. $this->success('任务监听主进程启动成功!');
  77. } else {
  78. $this->error($message);
  79. }
  80. } catch (HttpResponseException $exception) {
  81. throw $exception;
  82. } catch (\Exception $e) {
  83. $this->error($e->getMessage());
  84. }
  85. }
  86. /**
  87. * WIN停止监听任务
  88. * @auth true
  89. */
  90. public function stop()
  91. {
  92. try {
  93. $message = nl2br(Console::call('xtask:stop')->fetch());
  94. if (stripos($message, 'succeeded')) {
  95. $this->success('停止任务监听主进程成功!');
  96. } elseif (stripos($message, 'finish')) {
  97. $this->success('没有找到需要停止的进程!');
  98. } else {
  99. $this->error($message);
  100. }
  101. } catch (HttpResponseException $exception) {
  102. throw $exception;
  103. } catch (\Exception $e) {
  104. $this->error($e->getMessage());
  105. }
  106. }
  107. /**
  108. * 清理3天前的记录
  109. * @auth true
  110. * @throws \think\Exception
  111. * @throws \think\exception\PDOException
  112. */
  113. public function clear()
  114. {
  115. $map = [['time', '<', strtotime('-3days')]];
  116. $result = Db::name($this->table)->where($map)->delete();
  117. if ($result !== false) {
  118. $this->success('成功清理3天前的任务记录!');
  119. } else {
  120. $this->error('清理3天前的任务记录失败!');
  121. }
  122. }
  123. /**
  124. * 删除系统任务
  125. * @auth true
  126. * @throws \think\Exception
  127. * @throws \think\exception\PDOException
  128. */
  129. public function remove()
  130. {
  131. $this->_delete($this->table);
  132. }
  133. }