项目燃尽图

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2020-02-20 22:45:37 +08:00
parent 0b9b4c19ae
commit a97c74717f
6 changed files with 70 additions and 0 deletions

4
application/command.php Normal file
View File

@ -0,0 +1,4 @@
<?php
return [
'projectReport' => 'app\common\command\ProjectReport',
];

View File

@ -0,0 +1,40 @@
<?php
use Workerman\Lib\Timer;
use Workerman\Worker;
require_once __DIR__ . '/vendor/autoload.php';
require_once __DIR__ . '/config.php';
require_once __DIR__ . '/../../../../vendor/autoload.php';
date_default_timezone_set('Asia/Shanghai');
$task = new Worker();
$task->name = 'crontab';
$doneTicket = [];
$task->onWorkerStart = function ($task) {
$timerId = Timer::add(1, 'checkTime');
};
// 运行worker
Worker::runAll();
function checkTime()
{
global $doneTicket;
$now = time();
$dateTime = date('H:i', $now);
//每天23:55统计项目情况
if ($dateTime == '23:55' && (!isset($doneTicket['setProjectReportDate']) || date('Y-m-d', $now) != $doneTicket['setProjectReportDate'])) {
setProjectReport();
}
}
function setProjectReport()
{
global $doneTicket;
$doneTicket['setProjectReportDate'] = date('Y-m-d', time());
exec("php think projectReport",$out);
echo $out[0];
}

View File

@ -0,0 +1,21 @@
<?php
namespace app\common\command;
use think\console\Command;
use think\console\Input;
use think\console\Output;
class ProjectReport extends Command
{
protected function configure()
{
$this->setName('ProjectReport');
}
protected function execute(Input $input, Output $output)
{
\app\common\Model\ProjectReport::setDayilyProejctReport();
$output->writeln('success_at ' . nowTime());
}
}

1
crontab.bat Normal file
View File

@ -0,0 +1 @@
php application\common\Plugins\GateWayWorker\crontab.php

2
crontab.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
php application/common/Plugins/GateWayWorker/crontab.php start&

2
crontab_stop.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
php application/common/Plugins/GateWayWorker/crontab.php stop&