setName('xadmin:fansall')->setDescription('[获取]同步远程的微信用户'); } /** * 执行指令 * @param Input $input * @param Output $output * @throws \think\Exception */ protected function execute(Input $input, Output $output) { $message = ''; foreach ($this->module as $m) { if (method_exists($this, $fun = "_{$m}")) { $message .= $this->$fun(); } } throw new \think\Exception($message, 3); } /** * 同步微信粉丝列表 * @param string $next * @param integer $done * @return string * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ protected function _list($next = '', $done = 0) { $appid = WechatService::instance()->getAppid(); $this->output->comment('开始同步微信粉丝数据'); while (!is_null($next) && is_array($result = WechatService::WeChatUser()->getUserList($next)) && !empty($result['data']['openid'])) { foreach (array_chunk($result['data']['openid'], 100) as $openids) { if (is_array($list = WechatService::WeChatUser()->getBatchUserInfo($openids)) && !empty($list['user_info_list'])) { foreach ($list['user_info_list'] as $user) { $string = str_pad(++$done, strlen($result['total']), '0', STR_PAD_LEFT); $this->output->writeln("({$string}/{$result['total']}) -> {$user['openid']} {$user['nickname']}"); \app\wechat\service\FansService::instance()->set($user, $appid); } } } $next = $result['total'] > $done ? $result['next_openid'] : null; } $this->output->comment('微信粉丝数据同步完成!'); $this->output->newLine(); return ''; } /** * 同步粉丝黑名单列表 * @param string $next * @param integer $done * @return string * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\db\exception\DbException */ public function _black($next = '', $done = 0) { $wechat = WechatService::WeChatUser(); $this->output->comment('开始同步微信黑名单数据 ...'); while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) { $done += $result['count']; foreach (array_chunk($result['data']['openid'], 100) as $chunk) { $this->app->db->name('WechatFans')->where(['is_black' => '0'])->whereIn('openid', $chunk)->update(['is_black' => '1']); } $this->output->writeln("共计同步微信黑名单{$result['total']}人"); $next = $result['total'] > $done ? $result['next_openid'] : null; } $this->output->comment('微信黑名单数据同步完成!'); $this->output->newLine(); if (empty($result['total'])) { return '同步微信用户0人'; } else { return "同步微信用户{$result['total']}人"; } } /** * 同步粉丝标签列表 * @param integer $index * @return string * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function _tags($index = 0) { $appid = WechatService::instance()->getAppid(); $this->output->comment('同步微信粉丝标签数据...'); if (is_array($list = WechatService::WeChatTags()->getTags()) && !empty($list['tags'])) { $count = count($list['tags']); foreach ($list['tags'] as &$tag) { $tag['appid'] = $appid; $indexString = str_pad(++$index, strlen($count), '0', STR_PAD_LEFT); $this->output->writeln("({$indexString}/{$count}) -> {$tag['name']}"); } $this->app->db->name('WechatFansTags')->where(['appid' => $appid])->delete(); $this->app->db->name('WechatFansTags')->insertAll($list['tags']); } $this->output->comment('微信粉丝标签数据同步完成!'); $this->output->newLine(); return ''; } }