AutoUserPosterJob.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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\jobs;
  12. use app\common\repositories\user\UserRepository;
  13. use crmeb\interfaces\JobInterface;
  14. class AutoUserPosterJob implements JobInterface
  15. {
  16. public function fire($job, $uid)
  17. {
  18. $userRepository = app()->make(UserRepository::class);
  19. $user = $userRepository->get($uid);
  20. if (!$user)
  21. $job->delete();
  22. try {
  23. $userRepository->routineSpreadImage($user);
  24. } catch (\Exception $e) {
  25. };
  26. try {
  27. $userRepository->wxSpreadImage($user);
  28. } catch (\Exception $e) {
  29. };
  30. $job->delete();
  31. }
  32. public function failed($data)
  33. {
  34. // TODO: Implement failed() method.
  35. }
  36. }