glhcp/server/app/admin/controller/system/Crontab.php

114 lines
3.8 KiB
PHP
Raw Normal View History

2023-08-10 06:59:52 +00:00
<?php
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权购买去版权授权后方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
namespace app\admin\controller\system;
use app\common\basics\AdminBase;
use app\admin\logic\system\CrontabLogic;
use app\common\model\system\DevCrontab;
use app\common\server\JsonServer;
use app\common\server\system\CrontabServer;
use think\exception\ValidateException;
use app\admin\validate\system\CrontabValidate;
use Cron\CronExpression;
/**
* 定时任务
* Class Crontab
* @package app\admin\controller
*/
class Crontab extends AdminBase
{
public function lists()
{
if ($this->request->isAjax()) {
$data = CrontabLogic::lists();
return JsonServer::success('', $data);
}
return view();
}
public function add()
{
if ($this->request->isAjax()) {
$post = $this->request->post();
$post['status'] = isset($post['status']) && $post['status'] == 'on' ? 1 : 2;
try{
validate(CrontabValidate::class)->scene('add')->check($post);
}catch(ValidateException $e) {
return JsonServer::error($e->getError());
}
$result = CrontabLogic::add($post);
if($result === true) {
return JsonServer::success('添加成功');
}
return JsonServer::error(CrontabLogic::getError());
}
return view();
}
/**
* 获取接下来执行时间
*/
public function expression()
{
$get = $this->request->get();
return JsonServer::success('', CrontabLogic::expression($get));
}
/**
* 编辑定时任务
* @return mixed
*/
public function edit()
{
if ($this->request->isAjax()) {
$post = $this->request->post();
$post['status'] = isset($post['status']) && $post['status'] == 'on' ? 1 : 2;
try{
validate(CrontabValidate::class)->check($post);
}catch(ValidateException $e) {
return JsonServer::error($e->getError());
}
$result = CrontabLogic::edit($post);
if($result === true) {
return JsonServer::success('编辑成功');
}
return JsonServer::error(CrontabLogic::getError());
}
$id = $this->request->get('id');
return view('', [
'info' => CrontabLogic::info($id)
]);
}
public function del()
{
if ($this->request->isAjax()) {
$id = $this->request->post('id');
$result = CrontabLogic::del($id);
if($result === true) {
return JsonServer::success('删除成功');
}
return JsonServer::error(CrontabLogic::getError());
}
}
}