-
Notifications
You must be signed in to change notification settings - Fork 171
/
client.go
61 lines (46 loc) · 1.58 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
package menu
import (
"fmt"
"github.com/ArtisanCloud/PowerLibs/v2/object"
"github.com/ArtisanCloud/PowerWeChat/v2/src/kernel"
"github.com/ArtisanCloud/PowerWeChat/v2/src/work/menu/request"
"github.com/ArtisanCloud/PowerWeChat/v2/src/work/menu/response"
)
type Client struct {
*kernel.BaseClient
}
func NewClient(app kernel.ApplicationInterface) (*Client, error) {
baseClient, err := kernel.NewBaseClient(&app, nil)
if err != nil {
return nil, err
}
return &Client{
baseClient,
}, nil
}
// https://developer.work.weixin.qq.com/document/path/90232
func (comp *Client) Get() (*response.ResponseMenuGet, error) {
result := &response.ResponseMenuGet{}
agentID := (*comp.App).GetConfig().GetInt("agent_id", 0)
_, err := comp.HttpGet("cgi-bin/menu/get", &object.StringMap{
"agentid": fmt.Sprintf("%d", agentID),
}, nil, result)
return result, err
}
// https://developer.work.weixin.qq.com/document/path/90231
func (comp *Client) Create(data *request.RequestMenuSet) (*response.ResponseMenuCreate, error) {
result := &response.ResponseMenuCreate{}
agentID := (*comp.App).GetConfig().GetInt("agent_id", 0)
_, err := comp.HttpPostJson("cgi-bin/menu/create", data, &object.StringMap{
"agentid": fmt.Sprintf("%d", agentID),
}, nil, result)
return result, err
}
// https://developer.work.weixin.qq.com/document/path/90233
func (comp *Client) Delete(agentID int) (*response.ResponseMenuDelete, error) {
result := &response.ResponseMenuDelete{}
_, err := comp.HttpGet("cgi-bin/menu/delete", &object.StringMap{
"agentid": fmt.Sprintf("%d", agentID),
}, nil, result)
return result, err
}