WechatQueue.php 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\service\queue;
  15. use app\service\service\WechatService;
  16. use app\wechat\service\FansService;
  17. use think\console\Input;
  18. use think\console\Output;
  19. use think\Db;
  20. /**
  21. * Class Jobs
  22. * @package app\wechat
  23. */
  24. class WechatQueue
  25. {
  26. /**
  27. * 当前类名
  28. * @var string
  29. */
  30. const URI = self::class;
  31. /**
  32. * 当前操作APPID
  33. * @var string
  34. */
  35. protected $appid;
  36. /**
  37. * 执行任务
  38. * @param Input $input
  39. * @param Output $output
  40. * @param array $data
  41. * @throws \WeChat\Exceptions\InvalidResponseException
  42. * @throws \WeChat\Exceptions\LocalCacheException
  43. * @throws \think\Exception
  44. * @throws \think\exception\PDOException
  45. */
  46. public function execute(Input $input, Output $output, array $data = [])
  47. {
  48. $this->appid = $data['appid'];
  49. $wechat = WechatService::WeChatUser($this->appid);
  50. // 获取远程粉丝
  51. list($next, $done) = ['', 0];
  52. $output->writeln('Start synchronizing fans from the Wechat server');
  53. while (!is_null($next) && is_array($result = $wechat->getUserList($next)) && !empty($result['data']['openid'])) {
  54. $done += $result['count'];
  55. foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
  56. if (is_array($list = $wechat->getBatchUserInfo($chunk)) && !empty($list['user_info_list'])) {
  57. foreach ($list['user_info_list'] as $user) FansService::set($user, $this->appid);
  58. }
  59. }
  60. $next = $result['total'] > $done ? $result['next_openid'] : null;
  61. }
  62. // 同步粉丝黑名单
  63. list($next, $done) = ['', 0];
  64. $output->writeln('Start synchronizing black from the Wechat server');
  65. while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
  66. $done += $result['count'];
  67. foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
  68. $where = [['is_black', 'eq', '0'], ['openid', 'in', $chunk]];
  69. Db::name('WechatFans')->where($where)->update(['is_black' => '1']);
  70. }
  71. $next = $result['total'] > $done ? $result['next_openid'] : null;
  72. }
  73. // 同步粉丝标签列表
  74. $output->writeln('Start synchronizing tags from the Wechat server');
  75. if (is_array($list = WechatService::WeChatTags($this->appid)->getTags()) && !empty($list['tags'])) {
  76. foreach ($list['tags'] as &$tag) $tag['appid'] = $this->appid;
  77. Db::name('WechatFansTags')->where('1=1')->delete();
  78. Db::name('WechatFansTags')->insertAll($list['tags']);
  79. }
  80. }
  81. }