forked from saintpete/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conferences.go
193 lines (176 loc) · 6.29 KB
/
conferences.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
package twilio
import (
"fmt"
"net/url"
"time"
types "github.com/kevinburke/go-types"
"golang.org/x/net/context"
)
const conferencePathPart = "Conferences"
type ConferenceService struct {
client *Client
}
type Conference struct {
Sid string `json:"sid"`
// Call status, StatusInProgress or StatusCompleted
Status Status `json:"status"`
FriendlyName string `json:"friendly_name"`
// The conference region, probably "us1"
Region string `json:"region"`
DateCreated TwilioTime `json:"date_created"`
AccountSid string `json:"account_sid"`
APIVersion string `json:"api_version"`
DateUpdated TwilioTime `json:"date_updated"`
URI string `json:"uri"`
}
type ConferencePage struct {
Page
Conferences []*Conference
}
func (c *ConferenceService) Get(ctx context.Context, sid string) (*Conference, error) {
conference := new(Conference)
err := c.client.GetResource(ctx, conferencePathPart, sid, conference)
return conference, err
}
func (c *ConferenceService) GetPage(ctx context.Context, data url.Values) (*ConferencePage, error) {
return c.GetPageIterator(data).Next(ctx)
}
// GetConferencesInRange gets an Iterator containing conferences in the range
// [start, end), optionally further filtered by data. GetConferencesInRange
// panics if start is not before end. Any date filters provided in data will
// be ignored. If you have an end, but don't want to specify a start, use
// twilio.Epoch for start. If you have a start, but don't want to specify an
// end, use twilio.HeatDeath for end.
//
// Assumes that Twilio returns resources in chronological order, latest
// first. If this assumption is incorrect, your results will not be correct.
//
// Returned ConferencePages will have at most PageSize results, but may have fewer,
// based on filtering.
func (c *ConferenceService) GetConferencesInRange(start time.Time, end time.Time, data url.Values) ConferencePageIterator {
if start.After(end) {
panic("start date is after end date")
}
d := url.Values{}
if data != nil {
for k, v := range data {
d[k] = v
}
}
d.Del("DateCreated")
d.Del("Page") // just in case
if start != Epoch {
startFormat := start.UTC().Format(APISearchLayout)
d.Set("DateCreated>", startFormat)
}
if end != HeatDeath {
// If you specify "StartTime<=YYYY-MM-DD", the *latest* result returned
// will be midnight (the earliest possible second) on DD. We want all
// of the results for DD so we need to specify DD+1 in the API.
//
// TODO validate midnight-instant math more closely, since I don't think
// Twilio returns the correct results for that instant.
endFormat := end.UTC().Add(24 * time.Hour).Format(APISearchLayout)
d.Set("DateCreated<", endFormat)
}
iter := NewPageIterator(c.client, d, conferencePathPart)
return &conferenceDateIterator{
start: start,
end: end,
p: iter,
}
}
// GetNextConferencesInRange retrieves the page at the nextPageURI and continues
// retrieving pages until any results are found in the range given by start or
// end, or we determine there are no more records to be found in that range.
//
// If ConferencePage is non-nil, it will have at least one result.
func (c *ConferenceService) GetNextConferencesInRange(start time.Time, end time.Time, nextPageURI string) ConferencePageIterator {
if nextPageURI == "" {
panic("nextpageuri is empty")
}
iter := NewNextPageIterator(c.client, conferencePathPart)
iter.SetNextPageURI(types.NullString{Valid: true, String: nextPageURI})
return &conferenceDateIterator{
start: start,
end: end,
p: iter,
}
}
type conferenceDateIterator struct {
p *PageIterator
start time.Time
end time.Time
}
// Next returns the next page of resources. We may need to fetch multiple
// pages from the Twilio API before we find one in the right date range, so
// latency may be higher than usual. If page is non-nil, it contains at least
// one result.
func (c *conferenceDateIterator) Next(ctx context.Context) (*ConferencePage, error) {
var page *ConferencePage
for {
// just wipe it clean every time to avoid remnants hanging around
page = new(ConferencePage)
if err := c.p.Next(ctx, page); err != nil {
return nil, err
}
if len(page.Conferences) == 0 {
return nil, NoMoreResults
}
times := make([]time.Time, len(page.Conferences), len(page.Conferences))
for i, conference := range page.Conferences {
if !conference.DateCreated.Valid {
// we really should not ever hit this case but if we can't parse
// a date, better to give you back an error than to give you back
// a list of conferences that may or may not be in the time range
return nil, fmt.Errorf("Couldn't verify the date of conference: %#v", conference)
}
times[i] = conference.DateCreated.Time
}
if containsResultsInRange(c.start, c.end, times) {
indexesToDelete := indexesOutsideRange(c.start, c.end, times)
// reverse order so we don't delete the wrong index
for i := len(indexesToDelete) - 1; i >= 0; i-- {
index := indexesToDelete[i]
page.Conferences = append(page.Conferences[:index], page.Conferences[index+1:]...)
}
c.p.SetNextPageURI(page.NextPageURI)
return page, nil
}
if shouldContinuePaging(c.start, times) {
c.p.SetNextPageURI(page.NextPageURI)
continue
} else {
// should not continue paging and no results in range, stop
return nil, NoMoreResults
}
}
}
type ConferencePageIterator interface {
// Next returns the next page of resources. If there are no more resources,
// NoMoreResults is returned.
Next(context.Context) (*ConferencePage, error)
}
// ConferencePageIterator lets you retrieve consecutive ConferencePages.
type conferencePageIterator struct {
p *PageIterator
}
// GetPageIterator returns a ConferencePageIterator with the given page
// filters. Call iterator.Next() to get the first page of resources (and again
// to retrieve subsequent pages).
func (c *ConferenceService) GetPageIterator(data url.Values) ConferencePageIterator {
return &conferencePageIterator{
p: NewPageIterator(c.client, data, conferencePathPart),
}
}
// Next returns the next page of resources. If there are no more resources,
// NoMoreResults is returned.
func (c *conferencePageIterator) Next(ctx context.Context) (*ConferencePage, error) {
cp := new(ConferencePage)
err := c.p.Next(ctx, cp)
if err != nil {
return nil, err
}
c.p.SetNextPageURI(cp.NextPageURI)
return cp, nil
}