截流自动化的商城平台
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.

Crontab.php 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\system;
  20. use app\common\basics\AdminBase;
  21. use app\admin\logic\system\CrontabLogic;
  22. use app\common\model\system\DevCrontab;
  23. use app\common\server\JsonServer;
  24. use app\common\server\system\CrontabServer;
  25. use think\exception\ValidateException;
  26. use app\admin\validate\system\CrontabValidate;
  27. use Cron\CronExpression;
  28. /**
  29. * 定时任务
  30. * Class Crontab
  31. * @package app\admin\controller
  32. */
  33. class Crontab extends AdminBase
  34. {
  35. public function lists()
  36. {
  37. if ($this->request->isAjax()) {
  38. $data = CrontabLogic::lists();
  39. return JsonServer::success('', $data);
  40. }
  41. return view();
  42. }
  43. public function add()
  44. {
  45. if ($this->request->isAjax()) {
  46. $post = $this->request->post();
  47. $post['status'] = isset($post['status']) && $post['status'] == 'on' ? 1 : 2;
  48. try{
  49. validate(CrontabValidate::class)->scene('add')->check($post);
  50. }catch(ValidateException $e) {
  51. return JsonServer::error($e->getError());
  52. }
  53. $result = CrontabLogic::add($post);
  54. if($result === true) {
  55. return JsonServer::success('添加成功');
  56. }
  57. return JsonServer::error(CrontabLogic::getError());
  58. }
  59. return view();
  60. }
  61. /**
  62. * 获取接下来执行时间
  63. */
  64. public function expression()
  65. {
  66. $get = $this->request->get();
  67. return JsonServer::success('', CrontabLogic::expression($get));
  68. }
  69. /**
  70. * 编辑定时任务
  71. * @return mixed
  72. */
  73. public function edit()
  74. {
  75. if ($this->request->isAjax()) {
  76. $post = $this->request->post();
  77. $post['status'] = isset($post['status']) && $post['status'] == 'on' ? 1 : 2;
  78. try{
  79. validate(CrontabValidate::class)->check($post);
  80. }catch(ValidateException $e) {
  81. return JsonServer::error($e->getError());
  82. }
  83. $result = CrontabLogic::edit($post);
  84. if($result === true) {
  85. return JsonServer::success('编辑成功');
  86. }
  87. return JsonServer::error(CrontabLogic::getError());
  88. }
  89. $id = $this->request->get('id');
  90. return view('', [
  91. 'info' => CrontabLogic::info($id)
  92. ]);
  93. }
  94. public function del()
  95. {
  96. if ($this->request->isAjax()) {
  97. $id = $this->request->post('id');
  98. $result = CrontabLogic::del($id);
  99. if($result === true) {
  100. return JsonServer::success('删除成功');
  101. }
  102. return JsonServer::error(CrontabLogic::getError());
  103. }
  104. }
  105. }