mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改微信黑名单处理
This commit is contained in:
parent
c880049fb9
commit
1e43ec64fa
@ -102,11 +102,13 @@ class Fans extends Command
|
|||||||
*/
|
*/
|
||||||
public function _black(string $next = '', int $done = 0): string
|
public function _black(string $next = '', int $done = 0): string
|
||||||
{
|
{
|
||||||
|
$wechat = WechatService::WeChatUser();
|
||||||
$this->setQueueProgress("开始更新黑名单的微信用户");
|
$this->setQueueProgress("开始更新黑名单的微信用户");
|
||||||
[$map, $data, $wechat] = [['is_black' => 0], ['is_black' => 1], WechatService::WeChatUser()];
|
|
||||||
while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
|
while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
|
||||||
foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
|
foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
|
||||||
$this->app->db->name('WechatFans')->where($map)->whereIn('openid', $chunk)->update($data);
|
$done += count($chunk);
|
||||||
|
$map = [['is_black', '=', 0], ['openid', 'in', $chunk]];
|
||||||
|
$this->app->db->name('WechatFans')->where($map)->update(['is_black' => 1]);
|
||||||
}
|
}
|
||||||
$next = $result['total'] > $done ? $result['next_openid'] : null;
|
$next = $result['total'] > $done ? $result['next_openid'] : null;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user