Group.php
3.5 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <i@overtrue.me>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* Group.php.
*
* @author overtrue <i@overtrue.me>
* @copyright 2015 overtrue <i@overtrue.me>
*
* @see https://github.com/overtrue
* @see http://overtrue.me
*/
namespace EasyWeChat\User;
use EasyWeChat\Core\AbstractAPI;
/**
* Class Group.
*/
class Group extends AbstractAPI
{
const API_GET = 'https://api.weixin.qq.com/cgi-bin/groups/get';
const API_CREATE = 'https://api.weixin.qq.com/cgi-bin/groups/create';
const API_UPDATE = 'https://api.weixin.qq.com/cgi-bin/groups/update';
const API_DELETE = 'https://api.weixin.qq.com/cgi-bin/groups/delete';
const API_USER_GROUP_ID = 'https://api.weixin.qq.com/cgi-bin/groups/getid';
const API_MEMBER_UPDATE = 'https://api.weixin.qq.com/cgi-bin/groups/members/update';
const API_MEMBER_BATCH_UPDATE = 'https://api.weixin.qq.com/cgi-bin/groups/members/batchupdate';
/**
* Create group.
*
* @param string $name
*
* @return \EasyWeChat\Support\Collection
*/
public function create($name)
{
$params = [
'group' => ['name' => $name],
];
return $this->parseJSON('json', [self::API_CREATE, $params]);
}
/**
* List all groups.
*
* @return \EasyWeChat\Support\Collection
*/
public function lists()
{
return $this->parseJSON('get', [self::API_GET]);
}
/**
* Update a group name.
*
* @param int $groupId
* @param string $name
*
* @return \EasyWeChat\Support\Collection
*/
public function update($groupId, $name)
{
$params = [
'group' => [
'id' => $groupId,
'name' => $name,
],
];
return $this->parseJSON('json', [self::API_UPDATE, $params]);
}
/**
* Delete group.
*
* @param int $groupId
*
* @return \EasyWeChat\Support\Collection
*/
public function delete($groupId)
{
$params = [
'group' => ['id' => $groupId],
];
return $this->parseJSON('json', [self::API_DELETE, $params]);
}
/**
* Get user group.
*
* @param string $openId
*
* @return \EasyWeChat\Support\Collection
*/
public function userGroup($openId)
{
$params = ['openid' => $openId];
return $this->parseJSON('json', [self::API_USER_GROUP_ID, $params]);
}
/**
* Move user to a group.
*
* @param string $openId
* @param int $groupId
*
* @return \EasyWeChat\Support\Collection
*/
public function moveUser($openId, $groupId)
{
$params = [
'openid' => $openId,
'to_groupid' => $groupId,
];
return $this->parseJSON('json', [self::API_MEMBER_UPDATE, $params]);
}
/**
* Batch move users to a group.
*
* @param array $openIds
* @param int $groupId
*
* @return \EasyWeChat\Support\Collection
*/
public function moveUsers(array $openIds, $groupId)
{
$params = [
'openid_list' => $openIds,
'to_groupid' => $groupId,
];
return $this->parseJSON('json', [self::API_MEMBER_BATCH_UPDATE, $params]);
}
}