150 lines
5.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Wechat Plugin for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2025 Anyon <zoujingli@qq.com>
// +----------------------------------------------------------------------
// | 官方网站: https://thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// | 免责声明 ( https://thinkadmin.top/disclaimer )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/think-plugs-wechat
// | github 代码仓库https://github.com/zoujingli/think-plugs-wechat
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\wechat\command;
use app\wechat\model\WechatFans;
use app\wechat\model\WechatFansTags;
use app\wechat\service\FansService;
use app\wechat\service\WechatService;
use think\admin\Command;
/**
* 微信粉丝管理指令
* @class Fans
* @package app\wechat\command
*/
class Fans extends Command
{
/**
* 配置指令
*/
protected function configure()
{
$this->setName('xadmin:fansall');
$this->setDescription('Wechat Users Data Synchronize for ThinkAdmin');
}
/**
* 任务执行处理
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\admin\Exception
*/
public function handle()
{
$this->setQueueSuccess($this->_list() . $this->_black());
}
/**
* 同步微信粉丝列表
* @param string $next
* @param integer $done
* @return string
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\admin\Exception
*/
protected function _list(string $next = '', int $done = 0): string
{
$appid = WechatService::getAppid();
$this->process->message('开始获取微信用户数据');
while (is_string($next)) {
$result = WechatService::WeChatUser()->getUserList($next);
if (is_array($result) && !empty($result['data']['openid'])) {
foreach (array_chunk($result['data']['openid'], 100) as $openids) {
$info = WechatService::WeChatUser()->getBatchUserInfo($openids);
if (is_array($info) && !empty($info['user_info_list'])) {
foreach ($info['user_info_list'] as $user) if (isset($user['nickname'])) {
$this->queue->message($result['total'], ++$done, "-> 开始获取 {$user['openid']} {$user['nickname']}");
FansService::set($user, $appid);
$this->queue->message($result['total'], $done, "-> 完成更新 {$user['openid']} {$user['nickname']}", 1);
}
}
}
$next = $result['total'] > $done ? $result['next_openid'] : null;
} else {
$next = null;
}
}
$this->process->message($done > 0 ? '微信用户数据获取完成' : '未获取到微信用户数据');
$this->process->message('');
return sprintf('共获取 %d 个用户数据', $done);
}
/**
* 同步粉丝黑名单列表
* @param string $next
* @param integer $done
* @return string
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function _black(string $next = '', int $done = 0): string
{
$wechat = WechatService::WeChatUser();
$this->setQueueProgress('开始更新黑名单列表');
// 清理原来的黑名单,重新批量更新黑名单列表
WechatFans::mk()->where(['is_black' => 1])->update(['is_black' => 0]);
$result = ['total' => 0];
while (!is_null($next) && is_array($result = $wechat->getBlackList($next))) {
if (empty($result['data']['openid'])) break;
foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
$done += count($chunk);
WechatFans::mk()->whereIn('openid', $chunk)->update(['is_black' => 1]);
}
$next = $result['total'] > $done ? $result['next_openid'] : null;
}
$this->setQueueProgress(sprintf('完成更新 %s 个黑名单', $result['total']), null, 1);
$this->output->newLine();
if (empty($result['total'])) {
return ', 其中黑名单 0 人';
} else {
return sprintf(', 其中黑名单 %s 人', $result['total']);
}
}
/**
* 同步粉丝标签列表
* @param integer $done
* @return string
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\admin\Exception
*/
public function _tags(int $done = 0): string
{
$appid = WechatService::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;
$this->queue->message($count, ++$done, "-> {$tag['name']}");
}
WechatFansTags::mk()->where(['appid' => $appid])->delete();
WechatFansTags::mk()->insertAll($list['tags']);
}
$this->output->comment($done > 0 ? '微信用户标签数据获取完成' : '未获取到微信用户标签数据');
$this->output->newLine();
return sprintf(', 获取到 %s 个标签', $done);
}
}