forked from dyxushuai/wechat_component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnormal_api.go
221 lines (186 loc) · 5.25 KB
/
normal_api.go
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package wechat
import (
"fmt"
"github.com/franela/goreq"
"github.com/parnurzeal/gorequest"
)
type NormalApi interface {
GetPublicInfo(accessToken, authCode string) (*PublicInfo, error)
GetAuthAccessToken(accessToken, appId, refreshToken string) (*PublicToken, error)
GetAuthProfile(accessToken, appId string) (*PublicProfile, error)
GetAuthOption(accessToken, appId, option string) (*PublicOption, error)
SetAuthOption(accessToken, appId, optionName, optionValue string) error
}
type normalApi struct {
wt *WechatThird
request *gorequest.SuperAgent
}
type PublicInfo struct {
AuthorizationInfo struct {
AppId string `json:"authorizer_appid"`
AccessToken string `json:"authorizer_access_token"`
ExpiresIn float64 `json:"expires_in"`
RefreshToken string `json:"authorizer_refresh_token"`
FuncInfo []struct {
Funcscope struct {
Id int64 `json:"id"`
} `json:"funcscope_category"`
} `json:"func_info"`
} `json:"authorization_info"`
}
func (na *normalApi) GetPublicInfo(accessToken, authCode string) (*PublicInfo, error) {
postData := struct {
Component_appid string `json:"component_appid"`
Authorization_code string `json:"authorization_code"`
}{
Component_appid: na.wt.appId,
Authorization_code: authCode,
}
res, err := goreq.Request{
Method: "POST",
Uri: fmt.Sprintf(apiQueryAuth, accessToken),
Body: postData,
}.Do()
if err != nil {
return nil, err
}
result := &PublicInfo{}
err = unmarshalResponseToJson(res, result)
if err != nil {
return nil, err
}
return result, nil
}
// authorizer access token and refresh token
type PublicToken struct {
AccessToken string `json:"authorizer_access_token"`
ExpiresIn float64 `json:"expires_in"`
RefreshToken string `json:"authorizer_refresh_token"`
}
// accessToken component access token
// appId authorizer appId
// refreshToken authorizer refresh token
func (na *normalApi) GetAuthAccessToken(accessToken, appId, refreshToken string) (*PublicToken, error) {
postData := struct {
Component_appid string `json:"component_appid"`
Authorizer_appid string `json:"authorizer_appid"`
Authorizer_refresh_token string `json:"authorizer_refresh_token"`
}{
Component_appid: na.wt.appId,
Authorizer_appid: appId,
Authorizer_refresh_token: refreshToken,
}
res, err := goreq.Request{
Method: "POST",
Uri: fmt.Sprintf(apiAuthorizerToken, accessToken),
Body: postData,
}.Do()
if err != nil {
return nil, err
}
result := &PublicToken{}
err = unmarshalResponseToJson(res, result)
if err != nil {
return nil, err
}
return result, nil
}
type PublicProfile struct {
AuthorizerInfo struct {
NickName string `json:"nick_name"`
HeadImg string `json:"head_img"`
ServiceTypeInfo struct {
Id int64 `json:"id"`
}
VerifyTypeInfo struct {
Id int64 `json:"id"`
}
UserName string `json:"user_name"`
Alias string `json:"alias"`
} `json:"authorizer_info"`
QR string `json:"qrcode_url"`
AuthorizationInfo struct {
AppId string `json:"appid"`
FuncInfo []struct {
Funcscope struct {
Id int64 `json:"id"`
} `json:"funcscope_category"`
} `json:"func_info"`
} `json:"authorization_info"`
}
func (na *normalApi) GetAuthProfile(accessToken, appId string) (*PublicProfile, error) {
postForm := struct {
Component_appid string `json:"component_appid"`
Authorizer_appid string `json:"authorizer_appid"`
}{
Component_appid: na.wt.appId,
Authorizer_appid: appId,
}
res, err := goreq.Request{
Method: "POST",
Uri: fmt.Sprintf(apiGetAuthorizerInfo, accessToken),
Body: postForm,
}.Do()
if err != nil {
return nil, err
}
result := &PublicProfile{}
err = unmarshalResponseToJson(res, result)
if err != nil {
return nil, err
}
return result, nil
}
type PublicOption struct {
AppId string `json:"authorizer_appid"`
OptionName string `json:"option_name"`
OptionValue string `json:"option_value"`
}
func (na *normalApi) GetAuthOption(accessToken, appId, option string) (*PublicOption, error) {
postForm := struct {
Component_appid string `json:"component_appid"`
Authorizer_appid string `json:"authorizer_appid"`
Option_name string `json:"option_name"`
}{
Component_appid: na.wt.appId,
Authorizer_appid: appId,
Option_name: option,
}
res, err := goreq.Request{
Method: "POST",
Uri: fmt.Sprintf(apiGetAuthorizerOption, accessToken),
Body: postForm,
}.Do()
if err != nil {
return nil, err
}
result := &PublicOption{}
err = unmarshalResponseToJson(res, result)
if err != nil {
return nil, err
}
return result, nil
}
func (na *normalApi) SetAuthOption(accessToken, appId, optionName, optionValue string) error {
postForm := struct {
Component_appid string `json:"component_appid"`
Authorizer_appid string `json:"authorizer_appid"`
Option_name string `json:"option_name"`
Option_value string `json:"option_value"`
}{
Component_appid: na.wt.appId,
Authorizer_appid: appId,
Option_name: optionName,
Option_value: optionValue,
}
res, err := goreq.Request{
Method: "POST",
Uri: fmt.Sprintf(apiSetAuthorizerOption, accessToken),
Body: postForm,
}.Do()
if err != nil {
return err
}
result := &ApiError{}
return unmarshalResponseToJson(res, result)
}