forked from hugozhu/godingtalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_calendar.go
59 lines (53 loc) · 1.33 KB
/
api_calendar.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
package godingtalk
import "time"
type Event struct {
OAPIResponse
Id string
Location string
Summary string
Description string
Start struct {
DateTime string `json:"date_time"`
}
End struct {
DateTime string `json:"date_time"`
}
}
type ListEventsResponse struct {
OAPIResponse
Success bool `json:"success"`
Result struct {
Events []Event `json:"items"`
Summary string `json:"summary"`
NextPageToken string `json:"next_page_token"`
} `json:"result"`
}
type CalendarTime struct {
TimeZone string `json:"time_zone"`
Date string `json:"date_time"`
}
type CalendarRequest struct {
TimeMax CalendarTime `json:"time_max"`
TimeMin CalendarTime `json:"time_min"`
StaffId string `json:"user_id"`
}
func (c *DingTalkClient) ListEvents(staffid string, from time.Time, to time.Time) (events []Event, err error) {
location := time.Now().Location().String()
timeMin := CalendarTime{
TimeZone: location,
Date: from.Format("2006-01-02T15:04:05Z0700"),
}
timeMax := CalendarTime{
TimeZone: location,
Date: to.Format("2006-01-02T15:04:05Z0700"),
}
data := CalendarRequest{
TimeMax: timeMax,
TimeMin: timeMin,
StaffId: staffid,
}
var resp ListEventsResponse
err = c.httpRPC("topapi/calendar/list", nil, data, &resp)
events = resp.Result.Events
return events, err
}