You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.0 KiB
92 lines
2.0 KiB
9 months ago
|
<?php
|
||
|
|
||
|
namespace app\adminapi\controller\v1\system;
|
||
|
|
||
|
use app\adminapi\controller\AuthController;
|
||
|
use app\services\system\crontab\SystemCrontabServices;
|
||
|
use think\facade\App;
|
||
|
|
||
|
class SystemCrontab extends AuthController
|
||
|
{
|
||
|
public function __construct(App $app, SystemCrontabServices $services)
|
||
|
{
|
||
|
parent::__construct($app);
|
||
|
$this->services = $services;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取定时任务列表
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getTimerList()
|
||
|
{
|
||
|
$where = ['is_del' => 0];
|
||
|
return app('json')->success($this->services->getTimerList($where));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取定时任务详情
|
||
|
* @param $id
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getTimerInfo($id)
|
||
|
{
|
||
|
return app('json')->success($this->services->getTimerInfo($id));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取定时任务类型
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getMarkList()
|
||
|
{
|
||
|
return app('json')->success($this->services->getMarkList());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 保存定时任务
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function saveTimer()
|
||
|
{
|
||
|
$data = $this->request->postMore([
|
||
|
['id', 0],
|
||
|
['name', ''],
|
||
|
['mark', ''],
|
||
|
['content', ''],
|
||
|
['type', 0],
|
||
|
['is_open', 0],
|
||
|
['week', 0],
|
||
|
['day', 0],
|
||
|
['hour', 0],
|
||
|
['minute', 0],
|
||
|
['second', 0],
|
||
|
]);
|
||
|
$this->services->saveTimer($data);
|
||
|
return app('json')->success(100000);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 删除定时任务
|
||
|
* @param $id
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function delTimer($id)
|
||
|
{
|
||
|
$this->services->delTimer($id);
|
||
|
return app('json')->success(100002);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 设置定时任务状态
|
||
|
* @param $id
|
||
|
* @param $is_open
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function setTimerStatus($id, $is_open)
|
||
|
{
|
||
|
$this->services->setTimerStatus($id, $is_open);
|
||
|
return app('json')->success(100014);
|
||
|
}
|
||
|
|
||
|
}
|