Queue.php 3.8 KB

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