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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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\common\command;
  20. use Cron\CronExpression;
  21. use think\console\Command;
  22. use think\console\Input;
  23. use think\console\Output;
  24. use think\facade\Console;
  25. use think\facade\Db;
  26. use think\facade\Log;
  27. class Crontab extends Command
  28. {
  29. protected function configure()
  30. {
  31. $this->setName('crontab')
  32. ->setDescription('定时任务');
  33. }
  34. /**
  35. * 启动定时任务守护进程
  36. * @param Input $input
  37. * @param Output $output
  38. * @return int|void|null
  39. * @throws \think\Exception
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @throws \think\exception\DbException
  43. * @throws \think\exception\PDOException
  44. */
  45. protected function execute(Input $input, Output $output)
  46. {
  47. Log::close();
  48. $time = time();
  49. $crons = Db::name('dev_crontab')
  50. ->where(['status' => 1])
  51. ->select();
  52. if (empty($crons)) {
  53. return;
  54. }
  55. foreach ($crons as $cron) {
  56. //规则错误,不执行
  57. if (CronExpression::isValidExpression($cron['expression']) === false) {
  58. continue;
  59. }
  60. //未到时间,不执行
  61. $cron_expression = CronExpression::factory($cron['expression']);
  62. $next_time = $cron_expression->getNextRunDate(date('Y-m-d H:i:s', $cron['last_time']))->getTimestamp();
  63. if ($next_time >= $time) {
  64. continue;
  65. }
  66. //开始执行
  67. try {
  68. // Debug::remark('begin');
  69. $parameter = explode(' ', $cron['parameter']);
  70. if (is_array($parameter) && !empty($cron['parameter'])) {
  71. Console::call($cron['command'], $parameter);
  72. } else {
  73. Console::call($cron['command']);
  74. }
  75. Db::name('dev_crontab')
  76. ->where(['id' => $cron['id']])
  77. ->update(['error' => '']);
  78. } catch (\Exception $e) {
  79. Db::name('dev_crontab')
  80. ->where(['id' => $cron['id']])
  81. ->update(['error' => $e->getMessage(), 'status' => 3]);
  82. } finally {
  83. // Debug::remark('end');
  84. // $range_time = Debug::getRangeTime('begin', 'end');
  85. // $max_time = max($cron['max_time'], $range_time);
  86. Db::name('dev_crontab')
  87. ->where(['id' => $cron['id']])
  88. ->update(['last_time' => $time]);
  89. }
  90. }
  91. }
  92. }