| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- <?php
- namespace app\services\system\crontab;
- use app\dao\system\crontab\SystemCrontabDao;
- use app\services\activity\combination\StorePinkServices;
- use app\services\activity\live\LiveGoodsServices;
- use app\services\activity\live\LiveRoomServices;
- use app\services\agent\AgentManageServices;
- use app\services\BaseServices;
- use app\services\order\StoreOrderServices;
- use app\services\order\StoreOrderTakeServices;
- use app\services\product\product\StoreProductServices;
- use app\services\system\attachment\SystemAttachmentServices;
- use crmeb\exceptions\AdminException;
- use think\facade\Log;
- use think\helper\Str;
- class SystemCrontabServices extends BaseServices
- {
- public function __construct(SystemCrontabDao $dao)
- {
- $this->dao = $dao;
- }
- /**
- * 定时任务列表
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getTimerList(array $where = [])
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->selectList($where, '*', $page, $limit, 'id desc');
- foreach ($list as &$item) {
- $item['next_execution_time'] = date('Y-m-d H:i:s', $item['next_execution_time']);
- $item['last_execution_time'] = $item['last_execution_time'] != 0 ? date('Y-m-d H:i:s', $item['last_execution_time']) : '暂未执行';
- }
- $count = $this->dao->count($where);
- return compact('list', 'count');
- }
- /**
- * 定时任务详情
- * @param $id
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getTimerInfo($id)
- {
- $info = $this->dao->get($id);
- if (!$info) throw new AdminException(100026);
- return $info->toArray();
- }
- /**
- * 定时任务类型
- * @return string[]
- */
- public function getMarkList(): array
- {
- return app()->make(CrontabRunServices::class)->markList;
- }
- /**
- * 保存定时任务
- * @param array $data
- * @return bool
- */
- public function saveTimer(array $data = [])
- {
- if (!$data['id'] && $this->dao->getCount(['mark' => $data['mark'], 'is_del' => 0])) {
- throw new AdminException('该定时任务已存在,请勿重复添加');
- }
- $data['name'] = $this->getMarkList()[$data['mark']];
- $data['add_time'] = time();
- if (!$data['id']) {
- unset($data['id']);
- $res = $this->dao->save($data);
- } else {
- $res = $this->dao->update(['id' => $data['id']], $data);
- }
- if (!$res) throw new AdminException(100006);
- return true;
- }
- /**
- * 删除定时任务
- * @param $id
- * @return bool
- */
- public function delTimer($id)
- {
- $res = $this->dao->update(['id' => $id], ['is_del' => 1]);
- if (!$res) throw new AdminException(100008);
- return true;
- }
- /**
- * 设置定时任务状态
- * @param $id
- * @param $is_open
- * @return bool
- */
- public function setTimerStatus($id, $is_open)
- {
- $res = $this->dao->update(['id' => $id], ['is_open' => $is_open]);
- if (!$res) throw new AdminException(100014);
- return true;
- }
- /**
- * 计算定时任务下次执行时间
- * @param $data
- * @param int $time
- * @return false|float|int|mixed
- */
- public function getTimerCycleTime($data, $time = 0)
- {
- if (!$time) $time = time();
- switch ($data['type']) {
- case 1: // 每隔几秒
- $cycle_time = $time + $data['second'];
- break;
- case 2: // 每隔几分
- $cycle_time = $time + ($data['minute'] * 60);
- break;
- case 3: // 每隔几时
- $cycle_time = $time + ($data['hour'] * 3600) + ($data['minute'] * 60);
- break;
- case 4: // 每隔几日
- $cycle_time = $time + ($data['day'] * 86400) + ($data['hour'] * 3600) + ($data['minute'] * 60);
- break;
- case 5: // 每日几时几分几秒
- $cycle_time = strtotime(date('Y-m-d ' . $data['hour'] . ':' . $data['minute'] . ':' . $data['second'], time()));
- if ($time >= $cycle_time) {
- $cycle_time = $cycle_time + 86400;
- }
- break;
- case 6: // 每周周几几时几分几秒
- $todayStart = strtotime(date('Y-m-d 00:00:00', time()));
- $w = date("w");
- if ($w > $data['week']) {
- $cycle_time = $todayStart + ((7 - $w + $data['week']) * 86400) + ($data['hour'] * 3600) + ($data['minute'] * 60) + $data['second'];
- } else if ($w == $data['week']) {
- $cycle_time = $todayStart + ($data['hour'] * 3600) + ($data['minute'] * 60) + $data['second'];
- if ($time >= $cycle_time) {
- $cycle_time = $cycle_time + (7 * 86400);
- }
- } else {
- $cycle_time = $todayStart + (($data['week'] - $w) * 86400) + ($data['hour'] * 3600) + ($data['minute'] * 60) + $data['second'];
- }
- break;
- case 7: // 每月几日几时几分几秒
- $d = date("d");
- $firstDate = date('Y-m-01', time());
- $maxDay = date('d', strtotime("$firstDate + 1 month -1 day"));
- $todayStart = strtotime(date('Y-m-d 00:00:00', time()));
- if ($d > $data['day']) {
- $cycle_time = $todayStart + (($maxDay - $d + $data['day']) * 86400) + ($data['hour'] * 3600) + ($data['minute'] * 60) + $data['second'];
- } elseif ($d == $data['day']) {
- $cycle_time = $todayStart + ($data['hour'] * 3600) + ($data['minute'] * 60) + $data['second'];
- if ($time >= $cycle_time) {
- $cycle_time = $cycle_time + (($maxDay - $d + $data['day']) * 86400) + ($data['hour'] * 3600) + ($data['minute'] * 60) + $data['second'];
- }
- } else {
- $cycle_time = $todayStart + (($data['day'] - $d) * 86400) + ($data['hour'] * 3600) + ($data['minute'] * 60) + $data['second'];
- }
- break;
- default:
- $cycle_time = 0;
- break;
- }
- return $cycle_time;
- }
- /**
- * 执行任务
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 吴汐
- * @email 442384644@qq.com
- * @date 2023/02/17
- */
- public function crontabRun()
- {
- $crontabRunServices = app()->make(CrontabRunServices::class);
- $time = time();
- file_put_contents(root_path() . 'runtime/.timer', $time); //检测定时任务是否正常
- $list = $this->dao->selectList(['is_open' => 1, 'is_del' => 0])->toArray();
- foreach ($list as $item) {
- if ($item['next_execution_time'] < $time) {
- //转化小驼峰方法名
- $functionName = Str::camel($item['mark']);
- //执行定时任务
- $crontabRunServices->$functionName();
- //写入本次执行时间和下次执行时间
- $this->dao->update(['mark' => $item['mark']], ['last_execution_time' => $time, 'next_execution_time' => $this->getTimerCycleTime($item)]);
- }
- }
- }
- }
|