ExcelFileDelListen.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 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\ExcelRepository;
  13. use crmeb\services\TimerService;
  14. use Swoole\Timer;
  15. use think\facade\Log;
  16. use crmeb\interfaces\ListenerInterface;
  17. class ExcelFileDelListen extends TimerService implements ListenerInterface
  18. {
  19. public function handle($event): void
  20. {
  21. $this->tick(1000 * 60 * 60, function () {
  22. $make = app()->make(ExcelRepository::class);
  23. $time = date('Y-m-d H:i:s', strtotime("-" . 3 . " day"));
  24. $data = $make->getDelByTime($time);
  25. foreach ($data as $id => $path) {
  26. try {
  27. $make->del($id, $path);
  28. } catch (\Exception $e) {
  29. Log::info('自动删除导出文件失败' . var_export($id, true));
  30. }
  31. }
  32. });
  33. }
  34. }