QueueService.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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\service;
  15. use think\Db;
  16. /**
  17. * 任务管理器
  18. * Class QueueService
  19. * @package app\admin\service
  20. */
  21. class QueueService
  22. {
  23. /**
  24. * 待处理
  25. */
  26. const STATUS_PEND = 1;
  27. /**
  28. * 处理中
  29. */
  30. const STATUS_PROC = 2;
  31. /**
  32. * 处理完成
  33. */
  34. const STATUS_COMP = 3;
  35. /**
  36. * 处理失败
  37. */
  38. const STATUS_FAIL = 4;
  39. /**
  40. * 创建任务并记录日志
  41. * @param string $title 任务名称
  42. * @param string $uri 任务命令
  43. * @param integer $later 延时时间
  44. * @param array $data 任务附加数据
  45. * @param integer $double 任务多开
  46. * @param string $desc 任务描述
  47. * @throws \think\Exception
  48. */
  49. public static function add($title, $uri, $later, array $data, $double = 1, $desc = '')
  50. {
  51. if (empty($double) && self::exists($title)) {
  52. throw new \think\Exception('该任务已经创建,请耐心等待处理完成!');
  53. }
  54. $jobId = Db::name('SystemJobsLog')->insertGetId([
  55. 'title' => $title, 'later' => $later, 'uri' => $uri, 'double' => intval($double),
  56. 'data' => json_encode($data, 256), 'desc' => $desc, 'status_at' => date('Y-m-d H:i:s'),
  57. ]);
  58. $data['_job_id_'] = $jobId;
  59. $data['_job_title_'] = $title;
  60. \think\Queue::later($later, $uri, $data);
  61. }
  62. /**
  63. * 更新任务状态
  64. * @param integer $jobId
  65. * @param integer $status
  66. * @param string $statusDesc
  67. * @return boolean
  68. * @throws \think\Exception
  69. * @throws \think\exception\PDOException
  70. */
  71. public static function status($jobId, $status = self::STATUS_PEND, $statusDesc = '')
  72. {
  73. $result = Db::name('SystemJobsLog')->where(['id' => $jobId])->update([
  74. 'status' => $status, 'status_desc' => $statusDesc, 'status_at' => date('Y-m-d H:i:s'),
  75. ]);
  76. return $result !== false;
  77. }
  78. /**
  79. * 检查任务是否存在
  80. * @param string $title
  81. * @return boolean
  82. */
  83. public static function exists($title)
  84. {
  85. $where = [['title', 'eq', $title], ['status', 'in', [1, 2]]];
  86. return Db::name('SystemJobsLog')->where($where)->count() > 0;
  87. }
  88. /**
  89. * 获取任务数据
  90. * @param integer $jobId
  91. * @return array|null
  92. * @throws \think\db\exception\DataNotFoundException
  93. * @throws \think\db\exception\ModelNotFoundException
  94. * @throws \think\exception\DbException
  95. */
  96. public static function get($jobId)
  97. {
  98. return Db::name('SystemJobsLog')->where(['id' => $jobId])->find();
  99. }
  100. /**
  101. * 删除任务数据
  102. * @param integer $jobId
  103. * @return boolean
  104. * @throws \think\Exception
  105. * @throws \think\exception\PDOException
  106. */
  107. public static function del($jobId)
  108. {
  109. $where = [['id', 'eq', $jobId], ['status', 'in', [1, 3, 4]]];
  110. if (Db::name('SystemJobsLog')->where($where)->delete() > 0) {
  111. Db::name('SystemJobs')->whereLike('payload', '%"_job_id_":"' . $jobId . '"%')->delete();
  112. return true;
  113. } else {
  114. return false;
  115. }
  116. }
  117. }