WechatQueue.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/framework
  12. // +----------------------------------------------------------------------
  13. namespace app\wechat\queue;
  14. use app\admin\queue\JobsQueue;
  15. use app\wechat\service\FansService;
  16. use app\wechat\service\WechatService;
  17. use think\Db;
  18. /**
  19. * Class Jobs
  20. * @package app\wechat
  21. */
  22. class WechatQueue extends JobsQueue
  23. {
  24. /**
  25. * 当前任务URI
  26. */
  27. const URI = self::class;
  28. /**
  29. * 执行任务
  30. * @return boolean
  31. */
  32. public function execute()
  33. {
  34. try {
  35. $appid = WechatService::getAppid();
  36. $wechat = WechatService::WeChatUser();
  37. $next = ''; // 获取远程粉丝
  38. $this->output->writeln('Start synchronizing fans from the Wechat server');
  39. while (is_array($result = $wechat->getUserList($next)) && !empty($result['data']['openid'])) {
  40. foreach (array_chunk($result['data']['openid'], 100) as $chunk)
  41. if (is_array($list = $wechat->getBatchUserInfo($chunk)) && !empty($list['user_info_list']))
  42. foreach ($list['user_info_list'] as $user) FansService::set($user, $appid);
  43. if (in_array($result['next_openid'], $result['data']['openid'])) break;
  44. $next = $result['next_openid'];
  45. }
  46. $next = ''; // 同步粉丝黑名单
  47. $this->output->writeln('Start synchronizing black from the Wechat server');
  48. while (is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
  49. foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
  50. $where = [['is_black', 'eq', '0'], ['openid', 'in', $chunk]];
  51. Db::name('WechatFans')->where($where)->update(['is_black' => '1']);
  52. }
  53. if (in_array($result['next_openid'], $result['data']['openid'])) break;
  54. $next = $result['next_openid'];
  55. }
  56. // 同步粉丝标签列表
  57. $this->output->writeln('Start synchronizing tags from the Wechat server');
  58. if (is_array($list = WechatService::WeChatTags()->getTags()) && !empty($list['tags'])) {
  59. foreach ($list['tags'] as &$tag) $tag['appid'] = $appid;
  60. Db::name('WechatFansTags')->where('1=1')->delete();
  61. Db::name('WechatFansTags')->insertAll($list['tags']);
  62. }
  63. return true;
  64. } catch (\Exception $e) {
  65. $this->statusDesc = $e->getMessage();
  66. return false;
  67. }
  68. }
  69. }