-
Notifications
You must be signed in to change notification settings - Fork 62
/
user.go
488 lines (430 loc) · 13.2 KB
/
user.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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
package twitter
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"strings"
)
const (
userLookupEndpoint = "2/users"
userNameLookupEndpoint = "2/users/by/username"
userNamesLookupEndpoint = "2/users/by"
userFollowingLookupEndpoint = "2/users/{id}/following"
userFollowersLookupEndpoint = "2/users/{id}/followers"
userTimelineTweetsEndpoint = "2/users/{id}/tweets"
userTimelineMentionsEndpoint = "2/users/{id}/mentions"
userID = "{id}"
userMaxIDs = 100
userMaxNames = 100
)
// UserLookups is a map of user lookups
type UserLookups map[string]UserLookup
func (t UserLookups) lookup(decoder *json.Decoder) error {
type include struct {
Tweet []*TweetObj `json:"tweets"`
}
type body struct {
Data UserObj `json:"data"`
Include include `json:"includes"`
}
b := &body{}
if err := decoder.Decode(b); err != nil {
return fmt.Errorf("tweet lookup decode error %w", err)
}
ul := UserLookup{
User: b.Data,
}
if len(b.Include.Tweet) > 0 {
ul.Tweet = b.Include.Tweet[0]
}
t[b.Data.ID] = ul
return nil
}
func (t UserLookups) lookups(decoder *json.Decoder) error {
type include struct {
Tweet []*TweetObj `json:"tweets"`
}
type body struct {
Data []UserObj `json:"data"`
Include include `json:"includes"`
}
b := &body{}
if err := decoder.Decode(b); err != nil {
return fmt.Errorf("tweet lookup decode error %w", err)
}
pinnedTweets := map[string]*TweetObj{}
for _, tweet := range b.Include.Tweet {
pinnedTweets[tweet.ID] = tweet
}
for _, user := range b.Data {
ul := UserLookup{
User: user,
}
if tweet, has := pinnedTweets[user.PinnedTweetID]; has {
ul.Tweet = tweet
}
t[user.ID] = ul
}
return nil
}
// UserLookup is a complete user objects
type UserLookup struct {
User UserObj
Tweet *TweetObj
}
// UserFollowLookup contains all of the user following information
type UserFollowLookup struct {
Lookups UserLookups
Meta *UserFollowMeta
Errors []ErrorObj
}
// UserFollowMeta the meta that is returned for the following APIs
type UserFollowMeta struct {
ResultCount int `json:"result_count"`
PreviousToken string `json:"previous_token"`
NextToken string `json:"next_token"`
}
// UserTimeline is the response to the user tweet timeline API
type UserTimeline struct {
Tweets []TweetObj `json:"data"`
Includes *UserTimelineIncludes `json:"includes"`
Errors []ErrorObj `json:"errors"`
Meta UserTimelineMeta `json:"meta"`
}
// UserTimelineIncludes will contain the optional response objects
type UserTimelineIncludes struct {
Medias []MediaObj `json:"media"`
Users []UserObj `json:"users"`
Tweets []TweetObj `json:"tweets"`
Places []PlaceObj `json:"places"`
Polls string `json:"polls"`
}
// UserTimelineMeta is the meta data of the response
type UserTimelineMeta struct {
OldestID string `json:"oldest_id"`
NewestID string `json:"newest_id"`
ResultCount int `json:"result_count"`
NextToken string `json:"next_token"`
PreviousToken string `json:"previous_token"`
}
// User represents the User v2 APIs
type User struct {
Authorizer Authorizer
Client *http.Client
Host string
}
// Lookup can be used to look up a user by their id
func (u *User) Lookup(ctx context.Context, ids []string, fieldOpts UserFieldOptions) (UserLookups, error) {
ep := userLookupEndpoint
switch {
case len(ids) == 0:
return nil, fmt.Errorf("user lookup an id is required")
case len(ids) > userMaxIDs:
return nil, fmt.Errorf("user lookup: ids %d is greater than max %d", len(ids), userMaxIDs)
case len(ids) == 1:
ep += fmt.Sprintf("/%s", ids[0])
default:
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, fmt.Sprintf("%s/%s", u.Host, ep), nil)
if err != nil {
return nil, fmt.Errorf("user lookup request: %w", err)
}
req.Header.Add("Accept", "application/json")
u.Authorizer.Add(req)
fieldOpts.addQuery(req)
if len(ids) > 1 {
q := req.URL.Query()
q.Add("ids", strings.Join(ids, ","))
req.URL.RawQuery = q.Encode()
}
resp, err := u.Client.Do(req)
if err != nil {
return nil, fmt.Errorf("user lookup response: %w", err)
}
defer resp.Body.Close()
decoder := json.NewDecoder(resp.Body)
if resp.StatusCode != http.StatusOK {
e := &TweetErrorResponse{}
if err := decoder.Decode(e); err != nil {
return nil, &HTTPError{
Status: resp.Status,
StatusCode: resp.StatusCode,
URL: resp.Request.URL.String(),
}
}
e.StatusCode = resp.StatusCode
return nil, e
}
ul := UserLookups{}
if len(ids) == 1 {
if err := ul.lookup(decoder); err != nil {
return nil, err
}
return ul, nil
}
if err := ul.lookups(decoder); err != nil {
return nil, err
}
return ul, nil
}
// LookupUsername will retuen the user information from its user names
func (u *User) LookupUsername(ctx context.Context, usernames []string, fieldOpts UserFieldOptions) (UserLookups, error) {
ep := userNamesLookupEndpoint
switch {
case len(usernames) == 0:
return nil, fmt.Errorf("user lookup name is required")
case len(usernames) > userMaxNames:
return nil, fmt.Errorf("user lookup: names %d is greater than max %d", len(usernames), userMaxNames)
case len(usernames) == 1:
ep = fmt.Sprintf("%s/%s", userNameLookupEndpoint, usernames[0])
default:
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, fmt.Sprintf("%s/%s", u.Host, ep), nil)
if err != nil {
return nil, fmt.Errorf("user lookup request: %w", err)
}
req.Header.Add("Accept", "application/json")
u.Authorizer.Add(req)
fieldOpts.addQuery(req)
if len(usernames) > 1 {
q := req.URL.Query()
q.Add("usernames", strings.Join(usernames, ","))
req.URL.RawQuery = q.Encode()
}
resp, err := u.Client.Do(req)
if err != nil {
return nil, fmt.Errorf("user lookup response: %w", err)
}
defer resp.Body.Close()
decoder := json.NewDecoder(resp.Body)
if resp.StatusCode != http.StatusOK {
e := &TweetErrorResponse{}
if err := decoder.Decode(e); err != nil {
return nil, &HTTPError{
Status: resp.Status,
StatusCode: resp.StatusCode,
URL: resp.Request.URL.String(),
}
}
e.StatusCode = resp.StatusCode
return nil, e
}
ul := UserLookups{}
if len(usernames) == 1 {
if err := ul.lookup(decoder); err != nil {
return nil, err
}
return ul, nil
}
if err := ul.lookups(decoder); err != nil {
return nil, err
}
return ul, nil
}
// LookupFollowing handles the user following callout
func (u *User) LookupFollowing(ctx context.Context, id string, followOpts UserFollowOptions) (*UserFollowLookup, error) {
switch {
case len(id) == 0:
return nil, fmt.Errorf("user id must be present for following lookup")
case followOpts.MaxResults < 0 || followOpts.MaxResults > 1000:
return nil, fmt.Errorf("user max results for following lookup must be between 1-1000: %d", followOpts.MaxResults)
default:
}
ep := fmt.Sprintf("%s/%s", u.Host, userFollowingLookupEndpoint)
ep = strings.Replace(ep, userID, id, -1)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, ep, nil)
if err != nil {
return nil, fmt.Errorf("user lookup following request: %w", err)
}
req.Header.Add("Accept", "application/json")
u.Authorizer.Add(req)
followOpts.addQuery(req)
resp, err := u.Client.Do(req)
if err != nil {
return nil, fmt.Errorf("user lookup response: %w", err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("user lookup following reading body: %w", err)
}
if resp.StatusCode != http.StatusOK {
e := &TweetErrorResponse{}
if err := json.Unmarshal(body, e); err != nil {
return nil, &HTTPError{
Status: resp.Status,
StatusCode: resp.StatusCode,
URL: resp.Request.URL.String(),
}
}
e.StatusCode = resp.StatusCode
return nil, e
}
ul := UserLookups{}
if err := ul.lookups(json.NewDecoder(bytes.NewReader(body))); err != nil {
return nil, fmt.Errorf("user lookup response lookup decode: %w", err)
}
type extra struct {
Meta *UserFollowMeta `json:"meta"`
Errors []ErrorObj `json:"errors"`
}
ufm := &extra{}
if err := json.Unmarshal(body, ufm); err != nil {
return nil, fmt.Errorf("user lookup response meta decode: %w", err)
}
return &UserFollowLookup{
Lookups: ul,
Meta: ufm.Meta,
Errors: ufm.Errors,
}, nil
}
// LookupFollowers will return a users followers
func (u *User) LookupFollowers(ctx context.Context, id string, followOpts UserFollowOptions) (*UserFollowLookup, error) {
switch {
case len(id) == 0:
return nil, fmt.Errorf("user id must be present for following lookup")
case followOpts.MaxResults < 0 || followOpts.MaxResults > 1000:
return nil, fmt.Errorf("user max results for following lookup must be between 1-1000: %d", followOpts.MaxResults)
default:
}
ep := fmt.Sprintf("%s/%s", u.Host, userFollowersLookupEndpoint)
ep = strings.Replace(ep, userID, id, -1)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, ep, nil)
if err != nil {
return nil, fmt.Errorf("user lookup following request: %w", err)
}
req.Header.Add("Accept", "application/json")
u.Authorizer.Add(req)
followOpts.addQuery(req)
resp, err := u.Client.Do(req)
if err != nil {
return nil, fmt.Errorf("user lookup response: %w", err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("user lookup following reading body: %w", err)
}
if resp.StatusCode != http.StatusOK {
e := &TweetErrorResponse{}
if err := json.Unmarshal(body, e); err != nil {
return nil, &HTTPError{
Status: resp.Status,
StatusCode: resp.StatusCode,
URL: resp.Request.URL.String(),
}
}
e.StatusCode = resp.StatusCode
return nil, e
}
ul := UserLookups{}
if err := ul.lookups(json.NewDecoder(bytes.NewReader(body))); err != nil {
return nil, fmt.Errorf("user lookup response lookup decode: %w", err)
}
type extra struct {
Meta *UserFollowMeta `json:"meta"`
Errors []ErrorObj `json:"errors"`
}
ufm := &extra{}
if err := json.Unmarshal(body, ufm); err != nil {
return nil, fmt.Errorf("user lookup response meta decode: %w", err)
}
return &UserFollowLookup{
Lookups: ul,
Meta: ufm.Meta,
Errors: ufm.Errors,
}, nil
}
// Tweets is the user timeline tweets
func (u *User) Tweets(ctx context.Context, id string, tweetOpts UserTimelineOpts) (*UserTimeline, error) {
switch {
case len(id) == 0:
return nil, fmt.Errorf("user id must be present for timeline tweets")
case tweetOpts.MaxResults < 0 || tweetOpts.MaxResults > 100:
return nil, fmt.Errorf("user max results for timeline tweets must be between 1-1000: %d", tweetOpts.MaxResults)
default:
}
ep := fmt.Sprintf("%s/%s", u.Host, userTimelineTweetsEndpoint)
ep = strings.Replace(ep, userID, id, -1)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, ep, nil)
if err != nil {
return nil, fmt.Errorf("user lookup following request: %w", err)
}
req.Header.Add("Accept", "application/json")
u.Authorizer.Add(req)
tweetOpts.addQuery(req)
resp, err := u.Client.Do(req)
if err != nil {
return nil, fmt.Errorf("user lookup response: %w", err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("user lookup following reading body: %w", err)
}
if resp.StatusCode != http.StatusOK {
e := &TweetErrorResponse{}
if err := json.Unmarshal(body, e); err != nil {
return nil, &HTTPError{
Status: resp.Status,
StatusCode: resp.StatusCode,
URL: resp.Request.URL.String(),
}
}
e.StatusCode = resp.StatusCode
return nil, e
}
result := &UserTimeline{}
if err := json.Unmarshal(body, result); err != nil {
return nil, fmt.Errorf("user tweet timeline response decode: %w", err)
}
return result, nil
}
// Mentions will return back the user tweets mentions timeline
func (u *User) Mentions(ctx context.Context, id string, tweetOpts UserTimelineOpts) (*UserTimeline, error) {
switch {
case len(id) == 0:
return nil, fmt.Errorf("user id must be present for timeline tweets")
case tweetOpts.MaxResults < 0 || tweetOpts.MaxResults > 100:
return nil, fmt.Errorf("user max results for timeline tweets must be between 1-1000: %d", tweetOpts.MaxResults)
default:
}
ep := fmt.Sprintf("%s/%s", u.Host, userTimelineMentionsEndpoint)
ep = strings.Replace(ep, userID, id, -1)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, ep, nil)
if err != nil {
return nil, fmt.Errorf("user lookup following request: %w", err)
}
req.Header.Add("Accept", "application/json")
u.Authorizer.Add(req)
tweetOpts.addQuery(req)
resp, err := u.Client.Do(req)
if err != nil {
return nil, fmt.Errorf("user lookup response: %w", err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("user lookup following reading body: %w", err)
}
if resp.StatusCode != http.StatusOK {
e := &TweetErrorResponse{}
if err := json.Unmarshal(body, e); err != nil {
return nil, &HTTPError{
Status: resp.Status,
StatusCode: resp.StatusCode,
URL: resp.Request.URL.String(),
}
}
e.StatusCode = resp.StatusCode
return nil, e
}
result := &UserTimeline{}
if err := json.Unmarshal(body, result); err != nil {
return nil, fmt.Errorf("user tweet timeline response decode: %w", err)
}
return result, nil
}