-
Notifications
You must be signed in to change notification settings - Fork 174
/
client.go
95 lines (69 loc) · 2.75 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
package meeting
import (
"context"
"github.com/ArtisanCloud/PowerLibs/v3/object"
"github.com/ArtisanCloud/PowerWeChat/v3/src/kernel"
response2 "github.com/ArtisanCloud/PowerWeChat/v3/src/kernel/response"
"github.com/ArtisanCloud/PowerWeChat/v3/src/work/oa/meeting/request"
"github.com/ArtisanCloud/PowerWeChat/v3/src/work/oa/meeting/response"
)
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
}
return &Client{
baseClient,
}, nil
}
// 创建预约会议
// https://developer.work.weixin.qq.com/document/path/93627
func (comp *Client) Create(ctx context.Context, options *request.RequestMeetingCreate) (*response.ResponseMeetingCreate, error) {
result := &response.ResponseMeetingCreate{}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/meeting/create", options, nil, nil, result)
return result, err
}
// 修改预约会议
// https://developer.work.weixin.qq.com/document/path/93631
func (comp *Client) Update(ctx context.Context, options *request.RequestMeetingUpdate) (*response2.ResponseWork, error) {
result := &response2.ResponseWork{}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/meeting/update", options, nil, nil, result)
return result, err
}
// 取消预约会议
// https://developer.work.weixin.qq.com/document/path/93630
func (comp *Client) Cancel(ctx context.Context, meetingID string) (*response2.ResponseWork, error) {
result := &response2.ResponseWork{}
options := &object.HashMap{
"meetingid": meetingID,
}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/meeting/cancel", options, nil, nil, result)
return result, err
}
// 获取成员会议ID列表
// https://developer.work.weixin.qq.com/document/path/93628
func (comp *Client) GetUserMeetingID(ctx context.Context, userID string, cursor string, beginTime int64, endTime int64, limit int) (*response.ResponseMeetingGetUserMeetingID, error) {
result := &response.ResponseMeetingGetUserMeetingID{}
options := &object.HashMap{
"userid": userID,
"cursor": cursor,
"begin_time": beginTime,
"end_time": endTime,
"limit": limit,
}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/meeting/get_user_meetingid", options, nil, nil, result)
return result, err
}
// 获取会议详情
// https://developer.work.weixin.qq.com/document/path/93629
func (comp *Client) GetBookingInfo(ctx context.Context, meetingID string) (*response.ResponseMeetingGetBookingInfo, error) {
result := &response.ResponseMeetingGetBookingInfo{}
options := &object.HashMap{
"meetingid": meetingID,
}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/meeting/get_info", options, nil, nil, result)
return result, err
}