SyncWechatUsers.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\wechat\library;
  12. use catchAdmin\wechat\model\WechatUsers;
  13. use catcher\exceptions\FailedException;
  14. use catcher\library\ProgressBar;
  15. use catcher\library\WeChat;
  16. use catcher\Utils;
  17. use think\Db;
  18. class SyncWechatUsers
  19. {
  20. protected $officialAccount;
  21. public function start()
  22. {
  23. $this->officialAccount = WeChat::officialAccount();
  24. $latest = WechatUsers::order('subscribe_time')->find();
  25. if ($latest) {
  26. throw new FailedException('暂时无法增量同步');
  27. }
  28. $this->sync($latest ? $latest->openid : null);
  29. $this->syncTags();
  30. }
  31. protected function syncTags()
  32. {
  33. $users = WechatUsers::cursor();
  34. foreach ($users as $user) {
  35. if ($user->tag_list) {
  36. $tagIds = Utils::stringToArrayBy($user->tag_list);
  37. $relate = [];
  38. foreach ($tagIds as $id) {
  39. $relate[] = [
  40. 'user_id' => $user->id,
  41. 'tag_id' => $id,
  42. ];
  43. }
  44. Db::name('wechat_user_has_tags')->insertAll($relate);
  45. }
  46. }
  47. }
  48. /**
  49. * 同步
  50. *
  51. * @time 2020年06月20日
  52. * @param $nextOpenid
  53. * @return void
  54. */
  55. protected function sync($nextOpenid)
  56. {
  57. $userOpenids = $this->getWechatUserOpenids($nextOpenid);
  58. if ($userOpenids['next_openid']) {
  59. $this->getUsersBy($userOpenids['data']['openid']);
  60. $this->sync($userOpenids['next_openid']);
  61. } else {
  62. if ($userOpenids['count']) {
  63. $openids = $userOpenids['data']['openid'];
  64. $this->getUsersBy($openids);
  65. }
  66. }
  67. }
  68. /**
  69. * 获取用户
  70. *
  71. * @time 2020年06月20日
  72. * @param $openids
  73. * @return void
  74. */
  75. protected function getUsersBy($openids)
  76. {
  77. $chunks = array_chunk($openids, $this->getChunkSize($openids));
  78. $total = count($chunks);
  79. $bar = new ProgressBar($this->output, $total);
  80. $bar->setHeader('[开始同步]');
  81. $bar->start();
  82. foreach ($chunks as $chunk) {
  83. $users = $this->officialAccount->user->select($chunk);
  84. $this->syncToDatabase($users);
  85. $bar->advance();
  86. }
  87. $bar->finished();
  88. }
  89. /**
  90. * 同步到数据库
  91. *
  92. * @time 2020年06月20日
  93. * @param $users
  94. * @return void
  95. */
  96. protected function syncToDatabase($users)
  97. {
  98. $users = $users['user_info_list'];
  99. foreach ($users as &$user) {
  100. $user['avatar'] = $user['headimgurl'];
  101. $user['unionid'] = $user['unionid'] ?? '';
  102. $user['created_at'] = time();
  103. $user['updated_at'] = time();
  104. if (!empty($user['tagid_list'])) {
  105. $user['tagid_list'] = trim(implode(',', $user['tagid_list']), ',');
  106. }
  107. unset($user['headimgurl']);
  108. unset($user['qr_scene'], $user['qr_scene_str']);
  109. }
  110. WechatUsers::insertAll($users);
  111. }
  112. /**
  113. * 获取 chunk size
  114. *
  115. * @time 2020年06月20日
  116. * @param $openids
  117. * @return int
  118. */
  119. protected function getChunkSize($openids)
  120. {
  121. $size = count($openids);
  122. if ($size < 10) {
  123. return 1;
  124. }
  125. if ($size > 10 && $size < 100) {
  126. return 10;
  127. }
  128. if ($size > 100 && $size < 1000) {
  129. return 100;
  130. }
  131. if ($size > 1000 && $size < 10000) {
  132. return 100;
  133. }
  134. }
  135. /**
  136. * 获取微信 openids
  137. *
  138. * @time 2020年06月20日
  139. * @param $nextOpenId
  140. * @return mixed
  141. */
  142. public function getWechatUserOpenids($nextOpenId)
  143. {
  144. return $this->officialAccount->user->list($nextOpenId);
  145. }
  146. }