-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathlicense.go
464 lines (426 loc) · 13.9 KB
/
license.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
package wework
import (
"github.com/go-laoji/wecom-go-sdk/v2/internal"
)
type CreateOrderRequest struct {
CorpId string `json:"corpid" validate:"required"`
BuyerUserid string `json:"buyer_userid" validate:"required"`
AccountCount struct {
BaseCount int `json:"base_count" validate:"required_without=ExternalContactCount,max=1000000"`
ExternalContactCount int `json:"external_contact_count" validate:"required_without=BaseCount,max=1000000"`
} `json:"account_count" validate:"required"`
AccountDuration struct {
Months int `json:"months"`
} `json:"account_duration"`
}
type OrderResponse struct {
internal.BizResponse
OrderId string `json:"order_id"`
}
// CreateNewOrder 下单购买帐号
// https://developer.work.weixin.qq.com/document/path/95644
func (ww *weWork) CreateNewOrder(request CreateOrderRequest) (resp OrderResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/create_new_order")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type CreateReNewOrderJobRequest struct {
CorpId string `json:"corpid" validate:"required"`
AccountList []struct {
Userid string `json:"userid" validate:"required"`
Type int `json:"type" validate:"required,oneof=1 2"`
} `json:"account_list" validate:"required"`
JobId string `json:"jobid"`
}
type CreateReNewOrderJobResponse struct {
internal.BizResponse
Jobid string `json:"jobid"`
InvalidAccountList []struct {
internal.BizResponse
Userid string `json:"userid"`
Type int `json:"type"`
} `json:"invalid_account_list"`
}
// CreateReNewOrderJob 下单续期帐号/创建续期任务
// https://developer.work.weixin.qq.com/document/path/95646
func (ww *weWork) CreateReNewOrderJob(request CreateReNewOrderJobRequest) (resp CreateReNewOrderJobResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/create_renew_order_job")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type SubmitOrderJobRequest struct {
Jobid string `json:"jobid" validate:"required"`
BuyerUserid string `json:"buyer_userid" validate:"required"`
AccountDuration struct {
Months int `json:"months" validate:"required"`
} `json:"account_duration" validate:"required"`
}
// SubmitOrderJob 下单续期帐号/提交续期订单
func (ww *weWork) SubmitOrderJob(request SubmitOrderJobRequest) (resp OrderResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/submit_order_job")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type ListOrderRequest struct {
Corpid string `json:"corpid"`
StartTime int `json:"start_time" validate:"required_with=EndTime"`
EndTime int `json:"end_time" validate:"required_with=StartTime"`
Cursor string `json:"cursor"`
Limit int `json:"limit" validate:"max=1000"`
}
type ListOrderResponse struct {
internal.BizResponse
NextCursor string `json:"next_cursor"`
HasMore int `json:"has_more"`
OrderList []struct {
OrderID string `json:"order_id"`
OrderType int `json:"order_type"`
} `json:"order_list"`
}
// ListOrder 获取订单列表
// https://developer.work.weixin.qq.com/document/path/95647
func (ww *weWork) ListOrder(request ListOrderRequest) (resp ListOrderResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/list_order")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type GetOrderRequest struct {
OrderId string `json:"order_id" validate:"required"`
}
type GetOrderResponse struct {
internal.BizResponse
Order struct {
OrderID string `json:"order_id"`
OrderType int `json:"order_type"`
OrderStatus int `json:"order_status"`
Corpid string `json:"corpid"`
Price int `json:"price"`
AccountCount struct {
BaseCount int `json:"base_count"`
ExternalContactCount int `json:"external_contact_count"`
} `json:"account_count"`
AccountDuration struct {
Months int `json:"months"`
} `json:"account_duration"`
CreateTime int `json:"create_time"`
PayTime int `json:"pay_time"`
} `json:"order"`
}
// GetOrder 获取订单详情
// https://developer.work.weixin.qq.com/document/path/95648
func (ww *weWork) GetOrder(request GetOrderRequest) (resp GetOrderResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/get_order")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type ListOrderAccountRequest struct {
OrderID string `json:"order_id" validate:"required"`
Limit int `json:"limit,omitempty" validate:"max=1000"`
Cursor string `json:"cursor,omitempty"`
}
type ListOrderAccountResponse struct {
internal.BizResponse
NextCursor string `json:"next_cursor"`
HasMore int `json:"has_more"`
AccountList []struct {
ActiveCode string `json:"active_code"`
Userid string `json:"userid"`
Type int `json:"type"`
} `json:"account_list"`
}
// ListOrderAccount 获取订单中的帐号列表
// https://developer.work.weixin.qq.com/document/path/95649
func (ww *weWork) ListOrderAccount(request ListOrderAccountRequest) (resp ListOrderAccountResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/list_order_account")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type ActiveAccountRequest struct {
ActiveCode string `json:"active_code" validate:"required"`
CorpId string `json:"corpid" validate:"required"`
Userid string `json:"userid" validate:"required"`
}
// ActiveAccount 激活帐号
// https://developer.work.weixin.qq.com/document/path/95553#%E6%BF%80%E6%B4%BB%E5%B8%90%E5%8F%B7
func (ww *weWork) ActiveAccount(request ActiveAccountRequest) (resp internal.BizResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/active_account")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type BatchActiveAccountRequest struct {
CorpId string `json:"corpid"`
ActiveList []struct {
ActiveCode string `json:"active_code"`
Userid string `json:"userid"`
} `json:"active_list"`
}
type BatchActiveAccountResponse struct {
internal.BizResponse
ActiveResult []struct {
ActiveCode string `json:"active_code"`
Userid string `json:"userid"`
ErrCode int `json:"errcode"`
} `json:"active_result"`
}
// BatchActiveAccount 批量激活帐号
// https://developer.work.weixin.qq.com/document/path/95553#%E6%89%B9%E9%87%8F%E6%BF%80%E6%B4%BB%E5%B8%90%E5%8F%B7
func (ww *weWork) BatchActiveAccount(request BatchActiveAccountRequest) (resp BatchActiveAccountResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/batch_active_account")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type GetActiveInfoByCodeRequest struct {
CorpId string `json:"corpid" validate:"required"`
ActiveCode string `json:"active_code" validate:"required"`
}
type ActiveInfo struct {
ActiveCode string `json:"active_code"`
Type int `json:"type"`
Status int `json:"status"`
Userid string `json:"userid"`
CreateTime int `json:"create_time"`
ActiveTime int `json:"active_time "`
ExpireTime int `json:"expire_time"`
}
type GetActiveInfoByCodeResponse struct {
internal.BizResponse
ActiveInfo ActiveInfo `json:"active_info"`
}
// GetActiveInfoByCode 获取激活码详情
// https://developer.work.weixin.qq.com/document/path/95552#%E8%8E%B7%E5%8F%96%E6%BF%80%E6%B4%BB%E7%A0%81%E8%AF%A6%E6%83%85
func (ww *weWork) GetActiveInfoByCode(request GetActiveInfoByCodeRequest) (resp GetActiveInfoByCodeResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/get_active_info_by_code")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type BatchGetActiveInfoByCodeRequest struct {
CorpId string `json:"corpid" validate:"required"`
ActiveCodeList []string `json:"active_code_list" validate:"required,max=1000"`
}
type BatchGetActiveInfoByCodeResponse struct {
internal.BizResponse
ActiveInfoList []ActiveInfo `json:"active_info_list"`
InvalidActiveCodeList []string `json:"invalid_active_code_list"`
}
// BatchGetActiveInfoByCode 批量获取激活码详情
func (ww *weWork) BatchGetActiveInfoByCode(request BatchGetActiveInfoByCodeRequest) (resp BatchGetActiveInfoByCodeResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/batch_get_active_info_by_code")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type ListActivedAccountRequest struct {
CorpId string `json:"corpid" validate:"required"`
Limit int `json:"limit,omitempty" validate:"omitempty,max=1000"`
Cursor string `json:"cursor,omitempty"`
}
type ListActivedAccountResponse struct {
internal.BizResponse
NextCursor string `json:"next_cursor"`
HasMore int `json:"has_more"`
AccountList []ActiveInfo `json:"account_list"`
}
// ListActivedAccount 获取企业的帐号列表
// https://developer.work.weixin.qq.com/document/path/95544
func (ww *weWork) ListActivedAccount(request ListActivedAccountRequest) (resp ListActivedAccountResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/list_actived_account")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type GetActiveInfoByUserRequest struct {
CorpId string `json:"corpid" validate:"required"`
UserId string `json:"userid" validate:"required"`
}
type GetActiveInfoByUserResponse struct {
internal.BizResponse
ActiveStatus int `json:"active_status"`
ActiveInfoList []struct {
ActiveCode string `json:"active_code"`
Type int `json:"type"`
Userid string `json:"userid"`
ActiveTime int `json:"active_time"`
ExpireTime int `json:"expire_time"`
} `json:"active_info_list"`
}
// GetActiveInfoByUser 获取成员的激活详情
// https://developer.work.weixin.qq.com/document/path/95555
func (ww *weWork) GetActiveInfoByUser(request GetActiveInfoByUserRequest) (resp GetActiveInfoByUserResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/get_active_info_by_user")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type BatchTransferLicenseRequest struct {
CorpId string `json:"corpid" validate:"required"`
TransferList []struct {
HandoverUserid string `json:"handover_userid" validate:"required"`
TakeoverUserid string `json:"takeover_userid" validate:"required"`
} `json:"transfer_list" validate:"required"`
}
type BatchTransferLicenseResponse struct {
internal.BizResponse
TransferResult []struct {
HandoverUserid string `json:"handover_userid"`
TakeoverUserid string `json:"takeover_userid"`
ErrCode int `json:"errcode"`
} `json:"transfer_result"`
}
// BatchTransferLicense 帐号继承
// https://developer.work.weixin.qq.com/document/path/95673
func (ww *weWork) BatchTransferLicense(request BatchTransferLicenseRequest) (resp BatchTransferLicenseResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/batch_transfer_license")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type SetAutoActiveStatusRequest struct {
CorpId string `json:"corpid" validate:"required"`
AutoActiveStatus uint `json:"auto_active_status" validate:"required,oneof=0 1"`
}
func (ww *weWork) SetAutoActiveStatus(request SetAutoActiveStatusRequest) (resp internal.BizResponse) {
if ok := validate.Struct(request); ok != nil {
resp.ErrCode = 500
resp.ErrorMsg = ok.Error()
return
}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/set_auto_active_status")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}
type GetAutoActiveStatusResponse struct {
internal.BizResponse
AutoActiveStatus uint `json:"auto_active_status"`
}
func (ww *weWork) GetAutoActiveStatus(corpid string) (resp GetAutoActiveStatusResponse) {
if len(corpid) == 0 {
resp.ErrCode = 500
resp.ErrorMsg = "corpid 参数不能为空"
return
}
request := H{"corpid": corpid}
_, err := ww.getProviderRequest().SetBody(request).SetResult(&resp).
Post("/cgi-bin/license/get_auto_active_status")
if err != nil {
resp.ErrCode = 500
resp.ErrorMsg = err.Error()
}
return
}