ContactFactory.php
4.07 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
111
112
113
114
115
116
117
118
119
120
121
<?php
/**
 * Created by PhpStorm.
 * User: Hanson
 * Date: 2016/12/12
 * Time: 20:41
 */
namespace Hanson\Vbot\Collections;
use Hanson\Vbot\Support\Console;
use Hanson\Vbot\Support\FileManager;
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()
    {
        $this->makeContactList();
        $contact = contact()->get(myself()->username);
        myself()->alias = isset($contact['Alias']) ? $contact['Alias'] : myself()->nickname ?: myself()->username;
        $this->getBatchGroupMembers();
        if (server()->config['debug']) {
            FileManager::download('contact.json', json_encode(contact()->all()));
            FileManager::download('member.json', json_encode(member()->all()));
            FileManager::download('group.json', json_encode(group()->all()));
            FileManager::download('official.json', json_encode(official()->all()));
            FileManager::download('special.json', json_encode(Special::getInstance()->all()));
        }
    }
    /**
     * make instance model
     * @param int $seq
     */
    public function makeContactList($seq = 0)
    {
        $url = sprintf(server()->baseUri . '/webwxgetcontact?pass_ticket=%s&skey=%s&r=%s&seq=%s', server()->passTicket, server()->skey, time(), $seq);
        $result = http()->json($url, [], true);
        if (isset($result['MemberList']) && $result['MemberList']) {
            foreach ($result['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);
                }
            }
        }
        if (isset($result['Seq']) && $result['Seq'] != 0) {
            $this->makeContactList($result['Seq']);
        }
    }
    /**
     * 获取群组成员
     */
    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)
    {
        if (isset($array['ContactList']) && $array['ContactList']) {
            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);
                }
            }
        }
    }
}