MemberCardClient.php
2.8 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
<?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.
*/
namespace EasyWeChat\OfficialAccount\Card;
/**
* Class MemberCardClient.
*
* @author overtrue <i@overtrue.me>
*/
class MemberCardClient extends Client
{
/**
* 会员卡接口激活.
*
* @return mixed
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function activate(array $info = [])
{
return $this->httpPostJson('card/membercard/activate', $info);
}
/**
* 设置开卡字段接口.
*
* @return mixed
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function setActivationForm(string $cardId, array $settings)
{
$params = array_merge(['card_id' => $cardId], $settings);
return $this->httpPostJson('card/membercard/activateuserform/set', $params);
}
/**
* 拉取会员信息接口.
*
* @return mixed
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function getUser(string $cardId, string $code)
{
$params = [
'card_id' => $cardId,
'code' => $code,
];
return $this->httpPostJson('card/membercard/userinfo/get', $params);
}
/**
* 更新会员信息.
*
* @return mixed
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function updateUser(array $params = [])
{
return $this->httpPostJson('card/membercard/updateuser', $params);
}
/**
* 获取用户提交资料.
*
* @param string $activateTicket
*
* @return mixed
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function getActivationForm($activateTicket)
{
$params = [
'activate_ticket' => $activateTicket,
];
return $this->httpPostJson('card/membercard/activatetempinfo/get', $params);
}
/**
* 获取开卡组件链接接口.
*
* @param array $params 包含会员卡ID和随机字符串
*
* @return string 开卡组件链接
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function getActivateUrl(array $params = [])
{
return $this->httpPostJson('card/membercard/activate/geturl', $params);
}
}