ContactFactory.php
3.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
/**
 * Created by PhpStorm.
 * User: Hanson
 * Date: 2016/12/12
 * Time: 20:41
 */
namespace Hanson\Vbot\Collections;
use Hanson\Vbot\Core\Server;
use Hanson\Vbot\Support\Console;
class ContactFactory
{
    const SPECIAL_USERS = ['newsapp', 'fmessage', 'filehelper', 'weibo', 'qqmail',
        'fmessage', 'tmessage', 'qmessage', 'qqsync', 'floatbottle',
        'lbsapp', 'shakeapp', 'medianote', 'qqfriend', 'readerapp',
        'blogapp', 'facebookapp', 'masssendapp', 'meishiapp',
        'feedsapp', 'voip', 'blogappweixin', 'weixin', 'brandsessionholder',
        'weixinreminder', 'wxid_novlwrv3lqwv11', 'gh_22b87fa7cb3c',
        'officialaccounts', 'notification_messages', 'wxid_novlwrv3lqwv11',
        'gh_22b87fa7cb3c', 'wxitil', 'userexperience_alarm', 'notification_messages'];
    public function __construct()
    {
        $this->getContacts();
    }
    public function getContacts()
    {
        $url = sprintf(server()->baseUri . '/webwxgetcontact?pass_ticket=%s&skey=%s&r=%s', server()->passTicket, server()->skey, time());
        $content = http()->json($url, [], true);
        $this->makeContactList($content['MemberList']);
    }
    /**
     * make instance model
     *
     * @param $memberList
     */
    protected function makeContactList($memberList)
    {
        foreach ($memberList as $contact) {
            if(official()->isOfficial($contact['VerifyFlag'])){ #公众号
                Official::getInstance()->put($contact['UserName'], $contact);
            }elseif (in_array($contact['UserName'], static::SPECIAL_USERS)){ # 特殊账户
                Special::getInstance()->put($contact['UserName'], $contact);
            }elseif (strstr($contact['UserName'], '@@') !== false){ # 群聊
                group()->put($contact['UserName'], $contact);
            }else{
                contact()->put($contact['UserName'], $contact);
            }
        }
        $this->getBatchGroupMembers();
        if(server()->config['debug']){
            file_put_contents(server()->config['tmp'] . 'contact.json', json_encode(contact()->all()));
            file_put_contents(server()->config['tmp'] . 'member.json', json_encode(member()->all()));
            file_put_contents(server()->config['tmp'] . 'group.json', json_encode(group()->all()));
            file_put_contents(server()->config['tmp'] . 'official.json', json_encode(Official::getInstance()->all()));
            file_put_contents(server()->config['tmp'] . 'special.json', json_encode(Special::getInstance()->all()));
        }
    }
    /**
     * 获取群组成员
     */
    public function getBatchGroupMembers()
    {
        $url = sprintf(server()->baseUri . '/webwxbatchgetcontact?type=ex&r=%s&pass_ticket=%s', time(), server()->passTicket);
        $list = [];
        group()->each(function($item, $key) use (&$list){
            $list[] = ['UserName' => $key, 'EncryChatRoomId' => ''];
        });
        $content = http()->json($url, [
            'BaseRequest' => server()->baseRequest,
            'Count' => group()->count(),
            'List' => $list
        ], true);
        $this->initGroupMembers($content);
    }
    /**
     * 初始化群组成员
     *
     * @param $array
     */
    private function initGroupMembers($array)
    {
        foreach ($array['ContactList'] as $group) {
            $groupAccount =  group()->get($group['UserName']);
            $groupAccount['MemberList'] = $group['MemberList'];
            $groupAccount['ChatRoomId'] = $group['EncryChatRoomId'];
            group()->put($group['UserName'], $groupAccount);
            foreach ($group['MemberList'] as $member) {
                member()->put($member['UserName'], $member);
            }
        }
    }
}