package com.yihu.wlyy.statistics.controller; import com.yihu.wlyy.statistics.job.business.QuartzHelper; import com.yihu.wlyy.statistics.service.JobService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; /** * 任务启动 * * @author chenweida */ @RestController @RequestMapping(value = "/job", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) @Api(description = "后台-任务控制") public class JobController extends BaseController { @Autowired private JobService jobService; /** * 启动任务 * * @param id id * @return */ @ApiOperation(value = "根据ID立即单个任务") @RequestMapping(value = "startNowById", method = RequestMethod.GET) public String startNowById( @ApiParam(name = "id", value = "任务ID", required = true)@RequestParam(value = "id", required = true) String id) { try { jobService.cleanCache(); jobService.startNowById(id); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 生成过去几天的数据 * * @param day * @return */ @ApiOperation(value = "生成过去几天的数据") @RequestMapping(value = "productDataByDay", method = RequestMethod.GET) public String productDataByDay( @ApiParam(name = "day", value = "距离今天的天数(如果是要生成昨天的数据,day=1)")@RequestParam(value = "day", required = true) int day) { try { jobService.cleanCache(); jobService.productDataByDay(day); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 生成过去某一天的全部的数据 * * @param day * @return */ @ApiOperation(value = "生成过去某一天的全部的数据") @RequestMapping(value = "productDataByOneDay", method = RequestMethod.GET) public String productDataByOneDay( @ApiParam(name = "day", value = "yyyy-MM-dd")@RequestParam(value = "day", required = true)String day) { try { jobService.cleanCache(); jobService.productDataByOneDay(day); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 生成过去某一天到某一天的全部的数据 * * @param start * @param end * @return */ @ApiOperation(value = "生成过去某一天到某一天的全部的数据(包含头尾)") @RequestMapping(value = "productDataByDayToDay", method = RequestMethod.GET) public String productDataByDayToDay( @ApiParam(name = "start", value = "yyyy-MM-dd", required = true)@RequestParam(value = "start", required = true)String start, @ApiParam(name = "end", value = "yyyy-MM-dd", required = true)@RequestParam(value = "end", required = true)String end) { try { jobService.cleanCache(); jobService.productDataByDayToDay(start,end); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 生成过去某一天到某一天的某个指标的数据 * * @param start * @param end * @return */ @ApiOperation(value = "生成过去某一天到某一天的某个指标的数据(包含头尾)") @RequestMapping(value = "productDataByDayToDayAndId", method = RequestMethod.GET) public String productDataByDayToDayAndId( @ApiParam(name = "start", value = "yyyy-MM-dd")@RequestParam(value = "start", required = true)String start, @ApiParam(name = "end", value = "yyyy-MM-dd")@RequestParam(value = "end", required = true)String end, @ApiParam(name = "id", value = "任务id")@RequestParam(value = "id", required = true)String id) { try { jobService.cleanCache(); jobService.productDataByDayToDayAndId(start,end,id); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 生成过去某一天的某一个指标的数据 * * @param day * @return */ @ApiOperation(value = "生成过去某一天的全部的数据") @RequestMapping(value = "productDataByOneDayWithId", method = RequestMethod.GET) public String productDataByOneDayWithId( @ApiParam(name = "day", value = "yyyy-MM-dd")@RequestParam(value = "day", required = true)String day, @ApiParam(name = "id", value = "任务id")@RequestParam(value = "id", required = true)String id) { try { jobService.cleanCache(); jobService.productDataByOneDayWithId(day, id); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 生成过去到现在的全部的数据 * * @param day * @return */ @ApiOperation(value = "生成过去到现在的全部的数据") @RequestMapping(value = "productDataByDayAndId", method = RequestMethod.GET) public String productDataByDayAndId( @ApiParam(name = "day", value = "距离今天的天数(如果是要生成昨天的数据,day=1)")@RequestParam(value = "day", required = true) int day, @ApiParam(name="id",required=true)@RequestParam(value = "id", required = true) String id) { try { jobService.cleanCache(); jobService.productDataByDayAndId(day, id); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 启动任务 * * @param id id * @return */ @ApiOperation(value = "启动单个任务") @RequestMapping(value = "startById", method = RequestMethod.GET) public String startById( @ApiParam(name="id",value="任务id",required=true)@RequestParam(value = "id", required = true) String id) { try { jobService.startById(id); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 停止任务 * * @param id id * @return */ @ApiOperation(value = "停止单个任务") @RequestMapping(value = "stopById", method = RequestMethod.GET) public String stopById(@ApiParam(name="id",value="任务id",required=true)@RequestParam(value = "id", required = true)String id) { try { jobService.stopById(id); return success("停止成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 停止所有任务 * * @return */ @ApiOperation(value = "停止所有任务") @RequestMapping(value = "stopAll", method = RequestMethod.GET) public String stopAll() { try { jobService.stopAll(); return success("停止成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 启动判断的任务 * * @return */ @ApiOperation(value = "启动檢查的任务") @RequestMapping(value = "startCheckSignJob", method = RequestMethod.GET) public String startCheckSignJob() { try { jobService.startCheckSignJob(); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 停止判断的任务 * * @return */ @ApiOperation(value = "停止檢查的任务") @RequestMapping(value = "stopCheckSignJob", method = RequestMethod.GET) public String stopCheckSignJob() { try { jobService.stopCheckSignJob(); return success("停止成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 启动判断的任务 * * @return */ @ApiOperation(value = "启动清除缓存的任务") @RequestMapping(value = "startCleanCacheJob", method = RequestMethod.GET) public String startCleanCacheJob() { try { jobService.startCleanCacheJob(); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 停止判断的任务 * * @return */ @ApiOperation(value = "停止清除缓存的任务") @RequestMapping(value = "stopCleanCacheJob", method = RequestMethod.GET) public String stopCleanCacheJob() { try { jobService.stopCleanCacheJob(); return success("停止成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } /** * 启动所有任务 * * @return */ @ApiOperation(value = "启动所有任务") @RequestMapping(value = "startAll", method = RequestMethod.GET) public String startAll() { try { jobService.startAll(); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } @ApiOperation(value = "清除緩存") @RequestMapping(value = "cleanCache", method = RequestMethod.GET) public String cleanCache() { try { jobService.cleanCache(); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } //@RequestMapping(value = "startaaaa", method = RequestMethod.GET) public String startaaaa() { try { jobService.startaaaa(); return success("启动成功!"); } catch (Exception e) { error(e); return invalidUserException(e, -1, "启动失败:" + e.getMessage()); } } }