Contact.php
2.92 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
122
123
124
125
126
127
<?php
/**
* Created by PhpStorm.
* User: Hanson
* Date: 2016/12/13
* Time: 20:56
*/
namespace Hanson\Vbot\Collections;
use Illuminate\Support\Collection;
class Contact extends Collection
{
/**
* @var Contact
*/
static $instance = null;
/**
* create a single instance
*
* @return Contact
*/
public static function getInstance()
{
if (static::$instance === null) {
static::$instance = new Contact();
}
return static::$instance;
}
/**
* 根据微信号获取联系人
*
* @param $id
* @return mixed
*/
public function getContactById($id)
{
return $this->filter(function ($item, $key) use ($id) {
if ($item['Alias'] === $id) {
return true;
}
})->first();
}
/**
* 根据微信号获取联系username
*
* @param $id
* @return mixed
*/
public function getUsernameById($id)
{
return $this->search(function ($item, $key) use ($id) {
if ($item['Alias'] === $id) {
return true;
}
});
}
/**
* 根据通讯录中的备注获取通讯对象
*
* @param $id
* @return mixed
*/
public function getUsernameByRemarkName($id)
{
return $this->search(function ($item, $key) use ($id) {
if ($item['RemarkName'] === $id) {
return true;
}
});
}
/**
* 根据通讯录中的昵称获取通讯对象
*
* @param $nickname
* @param bool $blur
* @return mixed
*/
public function getUsernameByNickname($nickname, $blur = false)
{
return $this->search(function ($item, $key) use ($nickname, $blur) {
if ($blur && str_contains($item['NickName'], $nickname)) {
return true;
} elseif (!$blur && $item['NickName'] === $nickname) {
return true;
}
});
}
public function setRemarkName($username, $remarkName)
{
$url = sprintf('%s/webwxoplog?lang=zh_CN&pass_ticket=%s', server()->baseUri, server()->passTicket);
$result = http()->post($url, json_encode([
'UserName' => $username,
'CmdId' => 2,
'RemarkName' => $remarkName,
'BaseRequest' => server()->baseRequest
], JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES), true);
return $result['BaseResponse']['Ret'] == 0;
}
public function setStick($username, $isStick = true)
{
$url = sprintf('%s/webwxoplog?lang=zh_CN&pass_ticket=%s', server()->baseUri, server()->passTicket);
$result = http()->json($url, [
'UserName' => $username,
'CmdId' => 3,
'OP' => (int)$isStick,
'BaseRequest' => server()->baseRequest
], true);
return $result['BaseResponse']['Ret'] == 0;
}
}