-
Notifications
You must be signed in to change notification settings - Fork 174
/
client.go
127 lines (104 loc) · 3.43 KB
/
client.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
package qrCode
import (
"context"
"fmt"
"github.com/ArtisanCloud/PowerLibs/v3/object"
"github.com/ArtisanCloud/PowerWeChat/v3/src/basicService/qrCode/request"
"github.com/ArtisanCloud/PowerWeChat/v3/src/basicService/qrCode/response"
"github.com/ArtisanCloud/PowerWeChat/v3/src/kernel"
"math"
"net/url"
)
const DAY int = 86400
const SCENE_MAX_VALUE int = 100000
const SCENE_QR_CARD string = "QR_CARD"
const SCENE_QR_TEMPORARY string = "QR_SCENE"
const SCENE_QR_TEMPORARY_STR string = "QR_STR_SCENE"
const SCENE_QR_FOREVER string = "QR_LIMIT_SCENE"
const SCENE_QR_FOREVER_STR string = "QR_LIMIT_STR_SCENE"
type Client struct {
BaseClient *kernel.BaseClient
}
func NewClient(app *kernel.ApplicationInterface) (*Client, error) {
baseClient, err := kernel.NewBaseClient(app, nil)
if err != nil {
return nil, err
}
client := &Client{
BaseClient: baseClient,
}
client.BaseClient.BaseURI = "https://api.weixin.qq.com/"
return client, nil
}
// 生成永久二维码请求
// https://developers.weixin.qq.com/doc/offiaccount/Account_Management/Generating_a_Parametric_QR_Code.html
func (comp *Client) Forever(ctx context.Context, sceneValue interface{}) (*response.ResponseQRCodeCreate, error) {
data := &request.RequestQRCodeCreate{
ActionInfo: &request.ActionInfo{},
}
switch sceneValue.(type) {
case int:
value := sceneValue.(int)
if value > 0 && value < SCENE_MAX_VALUE {
data.ActionName = SCENE_QR_FOREVER
data.ActionInfo.Scene = &object.HashMap{
"scene_id": sceneValue,
}
}
break
case string:
data.ActionName = SCENE_QR_FOREVER_STR
data.ActionInfo.Scene = &object.HashMap{
"scene_str": sceneValue,
}
break
default:
}
return comp.Create(ctx, data, false, 9999000)
}
// 生成临时二维码请求
// https://developers.weixin.qq.com/doc/offiaccount/Account_Management/Generating_a_Parametric_QR_Code.html
func (comp *Client) Temporary(ctx context.Context, sceneValue interface{}, expireSeconds int) (*response.ResponseQRCodeCreate, error) {
data := &request.RequestQRCodeCreate{
ActionInfo: &request.ActionInfo{},
}
switch sceneValue.(type) {
case int:
value := sceneValue.(int)
if value > 0 {
data.ActionName = SCENE_QR_TEMPORARY
data.ActionInfo.Scene = &object.HashMap{
"scene_id": sceneValue,
}
}
break
case string:
data.ActionName = SCENE_QR_TEMPORARY_STR
data.ActionInfo.Scene = &object.HashMap{
"scene_str": sceneValue,
}
break
default:
}
return comp.Create(ctx, data, true, expireSeconds)
}
// 生成二维码ticket
// https://developers.weixin.qq.com/doc/offiaccount/Account_Management/Generating_a_Parametric_QR_Code.html
func (comp *Client) URL(ticket string) string {
return fmt.Sprintf("https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=%s", url.QueryEscape(ticket))
}
// 生成带参数的二维码
// https://developers.weixin.qq.com/doc/offiaccount/Account_Management/Generating_a_Parametric_QR_Code.html
func (comp *Client) Create(ctx context.Context, data *request.RequestQRCodeCreate, temporary bool, expireSecond int) (*response.ResponseQRCodeCreate, error) {
result := &response.ResponseQRCodeCreate{}
//params, err := object.StructToHashMapWithTag(data, "json")
params, err := object.StructToHashMap(data)
if err != nil {
return nil, err
}
if temporary {
(*params)["expire_seconds"] = int(math.Min(float64(expireSecond), float64(30*DAY)))
}
_, err = comp.BaseClient.HttpPostJson(ctx, "cgi-bin/qrcode/create", params, nil, nil, result)
return result, err
}