insertGetId([ 'title' => $title, 'later' => $later, 'uri' => $uri, 'double' => intval($double), 'data' => json_encode($data, 256), 'desc' => $desc, 'status_at' => date('Y-m-d H:i:s'), ]); $data['_job_id_'] = $jobId; $data['_job_title_'] = $title; \think\Queue::later($later, $uri, $data); } /** * 更新任务状态 * @param integer $jobId * @param integer $status * @param string $statusDesc * @return boolean * @throws \think\Exception * @throws \think\exception\PDOException */ public static function status($jobId, $status = self::STATUS_PEND, $statusDesc = '') { $result = Db::name('SystemJobsLog')->where(['id' => $jobId])->update([ 'status' => $status, 'status_desc' => $statusDesc, 'status_at' => date('Y-m-d H:i:s'), ]); return $result !== false; } /** * 检查任务是否存在 * @param string $title * @return boolean */ public static function exists($title) { $where = [['title', 'eq', $title], ['status', 'in', [1, 2]]]; return Db::name('SystemJobsLog')->where($where)->count() > 0; } /** * 获取任务数据 * @param integer $jobId * @return array|null * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public static function get($jobId) { return Db::name('SystemJobsLog')->where(['id' => $jobId])->find(); } /** * 删除任务数据 * @param integer $jobId * @return boolean * @throws \think\Exception * @throws \think\exception\PDOException */ public static function del($jobId) { $where = [['id', 'eq', $jobId], ['status', 'in', [1, 3, 4]]]; if (Db::name('SystemJobsLog')->where($where)->delete() > 0) { Db::name('SystemJobs')->whereLike('payload', '%"_job_id_":"' . $jobId . '"%')->delete(); return true; } return false; } }