AutoOrderReplyListen.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\listens;
  12. use app\common\repositories\store\order\StoreOrderRepository;
  13. use crmeb\interfaces\ListenerInterface;
  14. use crmeb\jobs\OrderReplyJob;
  15. use crmeb\services\TimerService;
  16. use Swoole\Timer;
  17. use think\facade\Queue;
  18. class AutoOrderReplyListen extends TimerService implements ListenerInterface
  19. {
  20. public function handle($event): void
  21. {
  22. $this->tick(1000 * 60 * 60, function () {
  23. request()->clearCache();
  24. if (systemConfig('open_auto_reply') === '0') {
  25. return;
  26. }
  27. $storeOrderRepository = app()->make(StoreOrderRepository::class);
  28. $time = date('Y-m-d H:i:s', strtotime('- 7 day'));
  29. $ids = $storeOrderRepository->getFinishTimeoutIds($time);
  30. foreach ($ids as $id) {
  31. Queue::push(OrderReplyJob::class, $id);
  32. }
  33. });
  34. }
  35. }