Fans.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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\wechat\command;
  15. use app\wechat\service\FansService;
  16. use app\wechat\service\WechatService;
  17. use think\admin\Command;
  18. use think\console\Input;
  19. use think\console\Output;
  20. /**
  21. * 微信粉丝管理指令
  22. * Class Fans
  23. * @package app\wechat\command
  24. */
  25. class Fans extends Command
  26. {
  27. /**
  28. * 需要处理的模块
  29. * @var array
  30. */
  31. protected $module = ['list', 'black', 'tags'];
  32. /**
  33. * 配置指令
  34. */
  35. protected function configure()
  36. {
  37. $this->setName('xadmin:fansall');
  38. $this->setDescription('Wechat Users Data Synchronize for ThinkAdmin');
  39. }
  40. /**
  41. * 执行指令
  42. * @param Input $input
  43. * @param Output $output
  44. * @throws \think\admin\Exception
  45. */
  46. protected function execute(Input $input, Output $output)
  47. {
  48. $message = '';
  49. foreach ($this->module as $m) {
  50. if (method_exists($this, $method = "_{$m}")) {
  51. $message .= $this->$method();
  52. }
  53. }
  54. $this->setQueueSuccess($message);
  55. }
  56. /**
  57. * 同步微信粉丝列表
  58. * @param string $next
  59. * @param integer $done
  60. * @return string
  61. * @throws \WeChat\Exceptions\InvalidResponseException
  62. * @throws \WeChat\Exceptions\LocalCacheException
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\DbException
  66. * @throws \think\db\exception\ModelNotFoundException
  67. */
  68. protected function _list(string $next = '', int $done = 0): string
  69. {
  70. $appid = WechatService::instance()->getAppid();
  71. $this->output->comment('开始获取微信用户数据');
  72. while (is_string($next)) {
  73. $result = WechatService::WeChatUser()->getUserList($next);
  74. if (is_array($result) && !empty($result['data']['openid'])) {
  75. foreach (array_chunk($result['data']['openid'], 100) as $openids) {
  76. $info = WechatService::WeChatUser()->getBatchUserInfo($openids);
  77. if (is_array($info) && !empty($info['user_info_list'])) {
  78. foreach ($info['user_info_list'] as $user) {
  79. $this->queue->message($result['total'], ++$done, "-> {$user['openid']} {$user['nickname']}");
  80. FansService::instance()->set($user, $appid);
  81. }
  82. }
  83. }
  84. $next = $result['total'] > $done ? $result['next_openid'] : null;
  85. } else {
  86. $next = null;
  87. }
  88. }
  89. $this->output->comment($done > 0 ? '微信用户数据获取完成' : '未获取到微信用户数据');
  90. $this->output->newLine();
  91. return "共获取 {$done} 个用户数据";
  92. }
  93. /**
  94. * 同步粉丝黑名单列表
  95. * @param string $next
  96. * @param integer $done
  97. * @return string
  98. * @throws \WeChat\Exceptions\InvalidResponseException
  99. * @throws \WeChat\Exceptions\LocalCacheException
  100. * @throws \think\db\exception\DbException
  101. */
  102. public function _black(string $next = '', int $done = 0): string
  103. {
  104. $wechat = WechatService::WeChatUser();
  105. $this->output->comment('开始更新黑名单的微信用户');
  106. while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
  107. $done += $result['count'];
  108. foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
  109. $this->app->db->name('WechatFans')->where(['is_black' => '0'])->whereIn('openid', $chunk)->update(['is_black' => '1']);
  110. }
  111. $this->setQueueProgress("--> 共计同步微信黑名单{$result['total']}人");
  112. $next = $result['total'] > $done ? $result['next_openid'] : null;
  113. }
  114. $this->output->comment($done > 0 ? '黑名单的微信用户更新成功' : '未获取到黑名单微信用户哦');
  115. $this->output->newLine();
  116. if (empty($result['total'])) {
  117. return ', 其中黑名单 0 人';
  118. } else {
  119. return ", 其中黑名单 {$result['total']} 人";
  120. }
  121. }
  122. /**
  123. * 同步粉丝标签列表
  124. * @param integer $done
  125. * @return string
  126. * @throws \WeChat\Exceptions\InvalidResponseException
  127. * @throws \WeChat\Exceptions\LocalCacheException
  128. * @throws \think\Exception
  129. * @throws \think\db\exception\DataNotFoundException
  130. * @throws \think\db\exception\DbException
  131. * @throws \think\db\exception\ModelNotFoundException
  132. */
  133. public function _tags(int $done = 0): string
  134. {
  135. $appid = WechatService::instance()->getAppid();
  136. $this->output->comment('开始获取微信用户标签数据');
  137. if (is_array($list = WechatService::WeChatTags()->getTags()) && !empty($list['tags'])) {
  138. $count = count($list['tags']);
  139. foreach ($list['tags'] as &$tag) {
  140. $tag['appid'] = $appid;
  141. $this->queue->message($count, ++$done, "-> {$tag['name']}");
  142. }
  143. $this->app->db->name('WechatFansTags')->where(['appid' => $appid])->delete();
  144. $this->app->db->name('WechatFansTags')->insertAll($list['tags']);
  145. }
  146. $this->output->comment($done > 0 ? '微信用户标签数据获取完成' : '未获取到微信用户标签数据');
  147. $this->output->newLine();
  148. return ", 获取到 {$done} 个标签";
  149. }
  150. }