截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CrontabLogic.php 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. namespace app\admin\logic\system;
  3. use app\common\basics\Logic;
  4. use app\common\model\system\DevCrontab;
  5. use Cron\CronExpression;
  6. use app\common\server\system\CrontabServer;
  7. class CrontabLogic extends Logic
  8. {
  9. public static function lists()
  10. {
  11. $lists = DevCrontab::field('id,name,type,type as type_desc,command,last_time as last_time_str,expression,parameter,status,error,time,max_time,system')
  12. ->order(['system' => 'desc'])->select()->toArray();
  13. return ['count' => count($lists), 'lists' => $lists];
  14. }
  15. /**
  16. * 获取接下来几次执行时间
  17. * @param $get
  18. * @return array
  19. */
  20. public static function expression($get)
  21. {
  22. if (CronExpression::isValidExpression($get['expression']) === false) {
  23. return [['time' => 0, 'date' => '规则设置错误']];
  24. }
  25. $cron_expression = CronExpression::factory($get['expression']);
  26. try {
  27. $res = $cron_expression->getMultipleRunDates(5);
  28. } catch (Exception $e) {
  29. return [['time' => 0, 'date' => '规则设置错误']];
  30. }
  31. $res = json_decode(json_encode($res), true);
  32. $lists = [];
  33. foreach ($res as $k => $v) {
  34. $lists[$k]['time'] = $k + 1;
  35. $lists[$k]['date'] = str_replace('.000000', '', $v['date']);
  36. }
  37. $lists[] = ['time' => 'x', 'date' => '……'];
  38. return $lists;
  39. }
  40. /**
  41. * 添加任务
  42. * @param $post
  43. * @return int|string
  44. */
  45. public static function add($post)
  46. {
  47. try{
  48. $data = [
  49. 'name' => $post['name'],
  50. 'type' => $post['type'],
  51. 'remark' => $post['remark'],
  52. 'command' => $post['command'],
  53. 'parameter' => $post['parameter'],
  54. 'status' => $post['status'],
  55. 'expression' => $post['expression'],
  56. 'create_time' => time()
  57. ];
  58. DevCrontab::create($data);
  59. // if ($post['status'] == 1) {
  60. // (new CrontabServer())->run(false);
  61. // }
  62. return true;
  63. }catch(\Exception $e) {
  64. self::$error = $e->getMessage();
  65. return false;
  66. }
  67. }
  68. public static function info($id)
  69. {
  70. $info = DevCrontab::where(['id' => $id])->findOrEmpty();
  71. if($info->isEmpty()) {
  72. return [];
  73. }
  74. return $info->toArray();
  75. }
  76. public static function edit($post)
  77. {
  78. try{
  79. $data = [
  80. 'name' => $post['name'],
  81. 'type' => $post['type'],
  82. 'remark' => $post['remark'],
  83. 'command' => $post['command'],
  84. 'parameter' => $post['parameter'],
  85. 'status' => $post['status'],
  86. 'expression' => $post['expression'],
  87. 'update_time' => time()
  88. ];
  89. DevCrontab::where(['id' => $post['id']])->update($data);
  90. // if ($post['status'] == 1) {
  91. // (new CrontabServer())->run(false);
  92. // }
  93. return true;
  94. }catch(\Exception $e) {
  95. self::$error = $e->getMessage();
  96. return false;
  97. }
  98. }
  99. public static function operation($operation, $id)
  100. {
  101. try {
  102. $cron = DevCrontab::where(['id' => $id])->findOrEmpty();
  103. if($cron->isEmpty()) {
  104. throw new \think\Exception('任务不存在');
  105. }
  106. if ($cron['type'] == 1 && CronExpression::isValidExpression($cron['expression']) === false) {
  107. throw new Exception("规则设置错误"); //定时任务运行规则错误,不执行
  108. }
  109. switch ($operation) {
  110. case 'start':
  111. case 'restart':
  112. DevCrontab::where(['id' => $id])->update(['status' => 1]);
  113. break;
  114. case 'stop':
  115. DevCrontab::where(['id' => $id])->update(['status' => 2]);
  116. default;
  117. }
  118. // $count = DevCrontab::where(['status' => 1])->count();
  119. //
  120. // $crontab_server = new CrontabServer();
  121. // if ($count == 0) {
  122. // $crontab_server->run(true);
  123. // } else {
  124. // $crontab_server->run(false);
  125. // }
  126. return true;
  127. } catch (Exception $e) {
  128. DevCrontab::where(['id' => $id])->update(['status' => 3, 'error' => $e->getMessage()]);
  129. self::$error = $e->getMessage();
  130. return false;
  131. }
  132. }
  133. public static function del($id)
  134. {
  135. try{
  136. $system = DevCrontab::where(['id' => $id])->value('system');
  137. if ($system === 1) { // 系统任务不允许删除
  138. return false;
  139. }
  140. DevCrontab::where(['id' => $id])->delete();
  141. // (new CrontabServer())->run(false);
  142. return true;
  143. }catch(\Exception $e) {
  144. self::$error = $e->getMessage();
  145. return false;
  146. }
  147. }
  148. }