package com.ruoyi.quartz.controller;
|
|
import java.util.List;
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
import org.quartz.SchedulerException;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Controller;
|
import org.springframework.ui.ModelMap;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
import com.ruoyi.common.annotation.Log;
|
import com.ruoyi.common.constant.Constants;
|
import com.ruoyi.common.core.controller.BaseController;
|
import com.ruoyi.common.core.domain.AjaxResult;
|
import com.ruoyi.common.core.page.TableDataInfo;
|
import com.ruoyi.common.enums.BusinessType;
|
import com.ruoyi.common.exception.job.TaskException;
|
import com.ruoyi.common.utils.StringUtils;
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
import com.ruoyi.quartz.domain.SysJob;
|
import com.ruoyi.quartz.service.ISysJobService;
|
import com.ruoyi.quartz.util.CronUtils;
|
import com.ruoyi.quartz.util.ScheduleUtils;
|
|
/**
|
* 调度任务信息操作处理
|
*
|
* @author ruoyi
|
*/
|
@Controller
|
@RequestMapping("/monitor/job")
|
public class SysJobController extends BaseController
|
{
|
private String prefix = "monitor/job";
|
|
@Autowired
|
private ISysJobService jobService;
|
|
@RequiresPermissions("monitor:job:view")
|
@GetMapping()
|
public String job()
|
{
|
return prefix + "/job";
|
}
|
|
@RequiresPermissions("monitor:job:list")
|
@PostMapping("/list")
|
@ResponseBody
|
public TableDataInfo list(SysJob job)
|
{
|
startPage();
|
List<SysJob> list = jobService.selectJobList(job);
|
return getDataTable(list);
|
}
|
|
@Log(title = "定时任务", businessType = BusinessType.EXPORT)
|
@RequiresPermissions("monitor:job:export")
|
@PostMapping("/export")
|
@ResponseBody
|
public AjaxResult export(SysJob job)
|
{
|
List<SysJob> list = jobService.selectJobList(job);
|
ExcelUtil<SysJob> util = new ExcelUtil<SysJob>(SysJob.class);
|
return util.exportExcel(list, "定时任务");
|
}
|
|
@Log(title = "定时任务", businessType = BusinessType.DELETE)
|
@RequiresPermissions("monitor:job:remove")
|
@PostMapping("/remove")
|
@ResponseBody
|
public AjaxResult remove(String ids) throws SchedulerException
|
{
|
jobService.deleteJobByIds(ids);
|
return success();
|
}
|
|
@RequiresPermissions("monitor:job:detail")
|
@GetMapping("/detail/{jobId}")
|
public String detail(@PathVariable("jobId") Long jobId, ModelMap mmap)
|
{
|
mmap.put("name", "job");
|
mmap.put("job", jobService.selectJobById(jobId));
|
return prefix + "/detail";
|
}
|
|
/**
|
* 任务调度状态修改
|
*/
|
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
|
@RequiresPermissions("monitor:job:changeStatus")
|
@PostMapping("/changeStatus")
|
@ResponseBody
|
public AjaxResult changeStatus(SysJob job) throws SchedulerException
|
{
|
SysJob newJob = jobService.selectJobById(job.getJobId());
|
newJob.setStatus(job.getStatus());
|
return toAjax(jobService.changeStatus(newJob));
|
}
|
|
/**
|
* 任务调度立即执行一次
|
*/
|
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
|
@RequiresPermissions("monitor:job:changeStatus")
|
@PostMapping("/run")
|
@ResponseBody
|
public AjaxResult run(SysJob job) throws SchedulerException
|
{
|
boolean result = jobService.run(job);
|
return result ? success() : error("任务不存在或已过期!");
|
}
|
|
/**
|
* 新增调度
|
*/
|
@GetMapping("/add")
|
public String add()
|
{
|
return prefix + "/add";
|
}
|
|
/**
|
* 新增保存调度
|
*/
|
@Log(title = "定时任务", businessType = BusinessType.INSERT)
|
@RequiresPermissions("monitor:job:add")
|
@PostMapping("/add")
|
@ResponseBody
|
public AjaxResult addSave(@Validated SysJob job) throws SchedulerException, TaskException
|
{
|
if (!CronUtils.isValid(job.getCronExpression()))
|
{
|
return error("新增任务'" + job.getJobName() + "'失败,Cron表达式不正确");
|
}
|
else if (StringUtils.containsIgnoreCase(job.getInvokeTarget(), Constants.LOOKUP_RMI))
|
{
|
return error("新增任务'" + job.getJobName() + "'失败,目标字符串不允许'rmi'调用");
|
}
|
else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), new String[] { Constants.LOOKUP_LDAP, Constants.LOOKUP_LDAPS }))
|
{
|
return error("新增任务'" + job.getJobName() + "'失败,目标字符串不允许'ldap(s)'调用");
|
}
|
else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), new String[] { Constants.HTTP, Constants.HTTPS }))
|
{
|
return error("新增任务'" + job.getJobName() + "'失败,目标字符串不允许'http(s)'调用");
|
}
|
else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), Constants.JOB_ERROR_STR))
|
{
|
return error("新增任务'" + job.getJobName() + "'失败,目标字符串存在违规");
|
}
|
else if (!ScheduleUtils.whiteList(job.getInvokeTarget()))
|
{
|
return error("新增任务'" + job.getJobName() + "'失败,目标字符串不在白名单内");
|
}
|
job.setCreateBy(getLoginName());
|
return toAjax(jobService.insertJob(job));
|
}
|
|
/**
|
* 修改调度
|
*/
|
@RequiresPermissions("monitor:job:edit")
|
@GetMapping("/edit/{jobId}")
|
public String edit(@PathVariable("jobId") Long jobId, ModelMap mmap)
|
{
|
mmap.put("job", jobService.selectJobById(jobId));
|
return prefix + "/edit";
|
}
|
|
/**
|
* 修改保存调度
|
*/
|
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
|
@RequiresPermissions("monitor:job:edit")
|
@PostMapping("/edit")
|
@ResponseBody
|
public AjaxResult editSave(@Validated SysJob job) throws SchedulerException, TaskException
|
{
|
if (!CronUtils.isValid(job.getCronExpression()))
|
{
|
return error("修改任务'" + job.getJobName() + "'失败,Cron表达式不正确");
|
}
|
else if (StringUtils.containsIgnoreCase(job.getInvokeTarget(), Constants.LOOKUP_RMI))
|
{
|
return error("修改任务'" + job.getJobName() + "'失败,目标字符串不允许'rmi'调用");
|
}
|
else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), new String[] { Constants.LOOKUP_LDAP, Constants.LOOKUP_LDAPS }))
|
{
|
return error("修改任务'" + job.getJobName() + "'失败,目标字符串不允许'ldap'调用");
|
}
|
else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), new String[] { Constants.HTTP, Constants.HTTPS }))
|
{
|
return error("修改任务'" + job.getJobName() + "'失败,目标字符串不允许'http(s)'调用");
|
}
|
else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), Constants.JOB_ERROR_STR))
|
{
|
return error("修改任务'" + job.getJobName() + "'失败,目标字符串存在违规");
|
}
|
else if (!ScheduleUtils.whiteList(job.getInvokeTarget()))
|
{
|
return error("修改任务'" + job.getJobName() + "'失败,目标字符串不在白名单内");
|
}
|
return toAjax(jobService.updateJob(job));
|
}
|
|
/**
|
* 校验cron表达式是否有效
|
*/
|
@PostMapping("/checkCronExpressionIsValid")
|
@ResponseBody
|
public boolean checkCronExpressionIsValid(SysJob job)
|
{
|
return jobService.checkCronExpressionIsValid(job.getCronExpression());
|
}
|
|
/**
|
* Cron表达式在线生成
|
*/
|
@GetMapping("/cron")
|
public String cron()
|
{
|
return prefix + "/cron";
|
}
|
|
/**
|
* 查询cron表达式近5次的执行时间
|
*/
|
@GetMapping("/queryCronExpression")
|
@ResponseBody
|
public AjaxResult queryCronExpression(@RequestParam(value = "cronExpression", required = false) String cronExpression)
|
{
|
if (jobService.checkCronExpressionIsValid(cronExpression))
|
{
|
List<String> dateList = CronUtils.getRecentTriggerTime(cronExpression);
|
return success(dateList);
|
}
|
else
|
{
|
return error("表达式无效");
|
}
|
}
|
}
|