catchAdmin/catch/monitor/command/ScheduleCommand.php

129 lines
3.8 KiB
PHP
Raw Normal View History

2021-01-17 09:39:18 +08:00
<?php
2021-01-17 11:21:52 +08:00
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace catchAdmin\monitor\command;
use catchAdmin\monitor\command\process\Process;
use catchAdmin\monitor\model\Crontab;
2021-01-18 09:29:02 +08:00
use catchAdmin\monitor\model\CrontabLog;
2021-01-17 11:21:52 +08:00
use Cron\CronExpression;
use think\console\Command;
use think\console\Input;
use think\console\Output;
use think\facade\Log;
class ScheduleCommand extends Command
{
protected $pid;
protected function configure()
{
// 指令配置
$this->setName('catch:schedule')
->setDescription('catch schedule');
}
protected function execute(Input $input, Output $output)
{
try {
foreach ($this->getExecuteAbleCommands() as $command) {
$process = new Process(function (Process $process) use ($command) {
2021-01-18 09:29:02 +08:00
$this->executeCommand($command);
2021-01-17 11:21:52 +08:00
$process->exit();
});
$process->start();
}
} catch (\Exception $e) {
Log::error('CatchSchedule Error:' . $e->getMessage());
}
2021-01-18 09:29:02 +08:00
}
/**
* 执行 command
*
* @time 2021年01月18日
* @param $command
* @return void
*/
protected function executeCommand($command)
{
$start = time();
$errorMessage = '';
try {
$this->getConsole()->call($command->task);
} catch (\Exception $e) {
$errorMessage = $e->getMessage();
}
2021-01-17 11:21:52 +08:00
2021-01-18 09:29:02 +08:00
$end = time();
// 插入 crontab 执行日志
CrontabLog::insert([
'crontab_id' => $command->id,
'used_time' => $end - $start,
'status' => $errorMessage ? CrontabLog::FAILED : CrontabLog::SUCCESS,
'error_message' => $errorMessage,
'created_at' => time(),
'updated_at' => time(),
]);
2021-01-17 11:21:52 +08:00
}
/**
* 获取可执行任务
*
* @time 2021年01月17日
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @return array
*/
protected function getExecuteAbleCommands()
{
$executeAbleCommands = [];
2021-01-17 11:21:52 +08:00
Crontab::where('status', Crontab::ENABLE)
->select()
->each(function ($command) use (&$executeAbleCommands){
if ($command->tactics == Crontab::EXECUTE_IMMEDIATELY) {
2021-01-18 09:29:02 +08:00
$executeAbleCommands[] = $command;
$command->tactics = Crontab::EXECUTE_NORMAL;
return $command->save();
2021-01-17 11:21:52 +08:00
}
2021-02-07 09:42:01 +08:00
$can = date('Y-m-d H:i',
(new CronExpression(trim($command->cron)))
2021-01-17 11:21:52 +08:00
->getNextRunDate(date('Y-m-d H:i:s'), 0, true)
->getTimestamp()) == date('Y-m-d H:i', time());
if ($can) {
// 如果任务只执行一次 之后禁用该任务
if ($command->tactics === Crontab::EXECUTE_ONCE) {
$command->tactics = Crontab::DISABLE;
$command->save();
2021-01-17 11:21:52 +08:00
}
2021-01-18 09:29:02 +08:00
$executeAbleCommands[] = $command;
2021-01-17 11:21:52 +08:00
}
return true;
});
return $executeAbleCommands;
}
}