CloseUserSvipJob.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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\jobs;
  12. use app\common\repositories\system\CacheRepository;
  13. use app\common\repositories\user\UserRepository;
  14. use crmeb\interfaces\JobInterface;
  15. use think\facade\Log;
  16. class CloseUserSvipJob implements JobInterface
  17. {
  18. public function fire($job, $type)
  19. {
  20. $make = app()->make(UserRepository::class);
  21. try {
  22. $uids = $make->search(['svip_type' => 1])->whereTime('svip_endtime','<=',time())->column('User.uid');
  23. $make->updates($uids,['is_svip' => 0]);
  24. } catch (\Exception $e) {
  25. Log::INFO('关闭付费会员失败:'.implode(',',$uids));
  26. };
  27. $job->delete();
  28. }
  29. public function failed($data)
  30. {
  31. // TODO: Implement failed() method.
  32. }
  33. }