-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
305 lines (249 loc) · 7.47 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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
package goperiscope
import (
"bytes"
"encoding/json"
"fmt"
"log"
"net/http"
"time"
"github.com/pkg/errors"
)
type PeriscopeBuilder struct {
urlBase string
useragent string
clientID string
clientSecret string
refreshToken string
}
func NewBuilder(urlBase, useragent, clientID, clientSecret string) PeriscopeBuilder {
return PeriscopeBuilder{
urlBase: urlBase,
useragent: useragent,
clientID: clientID,
clientSecret: clientSecret,
}
}
func (b *PeriscopeBuilder) RefreshToken(t string) *PeriscopeBuilder {
b.refreshToken = t
return b
}
func (b *PeriscopeBuilder) BuildClient() (Client, error) {
httpCli := http.Client{
Timeout: 10 * time.Second,
}
authCli := newAuthClient(b.urlBase, &httpCli, b.useragent, b.clientID, b.clientSecret)
auth, err := authCli.OAuthRefresh(b.refreshToken)
if err != nil {
return nil, errors.Wrapf(err, "OAuthRefresh is failed")
}
return NewClient(b.urlBase, &httpCli, b.useragent, auth.AccessToken), nil
}
type AuthClient interface {
OAuthRefresh(refreshToken string) (*OAuthRefreshResponse, error)
}
type AuthClientImpl struct {
urlBase string
httpCli *http.Client
useragent string
clientID string
clientSecret string
}
func newAuthClient(urlBase string, httpCli *http.Client, useragent string, clientID string, clientSecret string) AuthClient {
return &AuthClientImpl{
urlBase: urlBase,
httpCli: httpCli,
useragent: useragent,
clientID: clientID,
clientSecret: clientSecret,
}
}
func (i AuthClientImpl) OAuthRefresh(refreshToken string) (*OAuthRefreshResponse, error) {
req := OAuthRefreshRequest{
GrantType: "refresh_token",
ClientID: i.clientID,
ClientSecret: i.clientSecret,
RefreshToken: refreshToken,
}
var result OAuthRefreshResponse
if err := i.request("POST", "/oauth/token", req, &result); err != nil {
return nil, errors.Wrapf(err, "Periscope /oauth/token is failed")
}
return &result, nil
}
func (c AuthClientImpl) request(method, path string, params interface{}, result interface{}) error {
headers := map[string]string{
"User-Agent": c.useragent,
}
body, err := json.Marshal(params)
if err != nil {
return err
}
apiURL := fmt.Sprintf("%s%s", c.urlBase, path)
req, err := http.NewRequest(method, apiURL, bytes.NewBuffer(body))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
for name, value := range headers {
req.Header.Set(name, value)
}
// request
resp, err := c.httpCli.Do(req)
if err != nil {
return err
}
defer func() {
if err := resp.Body.Close(); err != nil {
log.Println(err.Error())
}
}()
// error handling for status code
if resp.StatusCode >= 300 {
log.Printf("unexpected API Response. statusCode=%d, url=%s", resp.StatusCode, apiURL)
internalErr := internalError{}
if err := json.NewDecoder(resp.Body).Decode(&internalErr); err != nil {
return fmt.Errorf(
"JSON parse error [statusCode='%d', err='%v']", resp.StatusCode, err,
)
}
return NewError(resp.StatusCode, params.(fmt.Stringer), internalErr)
}
if result == nil {
return nil
}
if err := json.NewDecoder(resp.Body).Decode(result); err != nil {
return fmt.Errorf(
"JSON parse error [statusCode='%d', err='%v']", resp.StatusCode, err,
)
}
return nil
}
type Client interface {
GetRegion() (*GetRegionResponse, error)
CreateBroadcast(region string, is360 bool, isLowLatency bool) (*CreateBroadcastResponse, error)
PublishBroadcast(broadcastID string, title string, withTweet bool, locale string, enableSuperHearts bool) (*PublishBroadcastResponse, error)
StopBroadcast(broadcastID string) error
GetBroadcast(broadcastID string) (*Broadcast, error)
DeleteBroadcast(broadcastID string) error
}
type ClientImpl struct {
urlBase string
httpCli *http.Client
useragent string
accessToken string
}
func NewClient(urlBase string, httpCli *http.Client, useragent string, accessToken string) Client {
return &ClientImpl{
urlBase: urlBase,
httpCli: httpCli,
useragent: useragent,
accessToken: accessToken,
}
}
func (i ClientImpl) GetRegion() (*GetRegionResponse, error) {
var result GetRegionResponse
if err := i.request("GET", "/region", nil, &result); err != nil {
return nil, errors.Wrapf(err, "Periscope /region is failed")
}
return &result, nil
}
func (i ClientImpl) CreateBroadcast(region string, is360 bool, isLowLatency bool) (*CreateBroadcastResponse, error) {
req := CreateBroadcastRequest{
Region: region,
Is360: is360,
IsLowLatency: isLowLatency,
}
var result CreateBroadcastResponse
if err := i.request("POST", "/broadcast/create", req, &result); err != nil {
return nil, errors.Wrapf(err, "Periscope /broadcast/create is failed")
}
return &result, nil
}
func (i ClientImpl) PublishBroadcast(broadcastID string, title string, withTweet bool, locale string, enableSuperHearts bool) (*PublishBroadcastResponse, error) {
req := PublishBroadcastRequest{
BroadcastID: broadcastID,
Title: title,
ShouldNotTweet: !withTweet,
Locale: locale,
EnableSuperHearts: enableSuperHearts,
}
var result PublishBroadcastResponse
if err := i.request("POST", "/broadcast/publish", req, &result); err != nil {
return nil, errors.Wrapf(err, "Periscope /broadcast/publish is failed")
}
return &result, nil
}
func (i ClientImpl) StopBroadcast(broadcastID string) error {
req := StopBroadcastRequest{
BroadcastID: broadcastID,
}
if err := i.request("POST", "/broadcast/stop", req, nil); err != nil {
return errors.Wrapf(err, "Periscope /broadcast/stop is failed")
}
return nil
}
func (i ClientImpl) GetBroadcast(broadcastID string) (*Broadcast, error) {
var result Broadcast
if err := i.request("GET", fmt.Sprintf("/broadcast?id=%s", broadcastID), nil, &result); err != nil {
return nil, errors.Wrapf(err, "Periscope /region is failed")
}
return &result, nil
}
func (i ClientImpl) DeleteBroadcast(broadcastID string) error {
req := DeleteBroadcastRequest{
BroadcastID: broadcastID,
}
if err := i.request("POST", "/broadcast/delete", req, nil); err != nil {
return errors.Wrapf(err, "Periscope /broadcast/delete is failed")
}
return nil
}
func (c ClientImpl) request(method, path string, params interface{}, result interface{}) error {
headers := map[string]string{
"User-Agent": c.useragent,
"Authorization": fmt.Sprintf("Bearer %s", c.accessToken),
}
body, err := json.Marshal(params)
if err != nil {
return err
}
apiURL := fmt.Sprintf("%s%s", c.urlBase, path)
req, err := http.NewRequest(method, apiURL, bytes.NewBuffer(body))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
for name, value := range headers {
req.Header.Set(name, value)
}
// request
resp, err := c.httpCli.Do(req)
if err != nil {
return err
}
defer func() {
if err := resp.Body.Close(); err != nil {
log.Println(err.Error())
}
}()
// error handling for status code
if resp.StatusCode >= 300 {
log.Printf("unexpected API Response. statusCode=%d, url=%s", resp.StatusCode, apiURL)
internalErr := internalError{}
if err := json.NewDecoder(resp.Body).Decode(&internalErr); err != nil {
return fmt.Errorf(
"JSON parse error [statusCode='%d', err='%v']", resp.StatusCode, err,
)
}
return NewError(resp.StatusCode, params.(fmt.Stringer), internalErr)
}
if result == nil {
return nil
}
if err := json.NewDecoder(resp.Body).Decode(result); err != nil {
return fmt.Errorf(
"JSON parse error [statusCode='%d', err='%v']", resp.StatusCode, err,
)
}
return nil
}