forked from g8rswimmer/go-twitter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_options.go
92 lines (85 loc) · 2.41 KB
/
user_options.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
package twitter
import (
"net/http"
"strconv"
"strings"
)
// UserLookupOpts are the optional paramters that can be passed to the lookup callout
type UserLookupOpts struct {
Expansions []Expansion
TweetFields []TweetField
UserFields []UserField
}
func (u UserLookupOpts) addQuery(req *http.Request) {
q := req.URL.Query()
if len(u.Expansions) > 0 {
q.Add("expansions", strings.Join(expansionStringArray(u.Expansions), ","))
}
if len(u.TweetFields) > 0 {
q.Add("tweet.fields", strings.Join(tweetFieldStringArray(u.TweetFields), ","))
}
if len(u.UserFields) > 0 {
q.Add("user.fields", strings.Join(userFieldStringArray(u.UserFields), ","))
}
if len(q) > 0 {
req.URL.RawQuery = q.Encode()
}
}
// UserFollowingLookupOpts are the options for the user following API
type UserFollowingLookupOpts struct {
Expansions []Expansion
TweetFields []TweetField
UserFields []UserField
MaxResults int
PaginationToken string
}
func (u UserFollowingLookupOpts) addQuery(req *http.Request) {
q := req.URL.Query()
if len(u.Expansions) > 0 {
q.Add("expansions", strings.Join(expansionStringArray(u.Expansions), ","))
}
if len(u.TweetFields) > 0 {
q.Add("tweet.fields", strings.Join(tweetFieldStringArray(u.TweetFields), ","))
}
if len(u.UserFields) > 0 {
q.Add("user.fields", strings.Join(userFieldStringArray(u.UserFields), ","))
}
if u.MaxResults > 0 {
q.Add("max_results", strconv.Itoa(u.MaxResults))
}
if len(u.PaginationToken) > 0 {
q.Add("pagination_token", u.PaginationToken)
}
if len(q) > 0 {
req.URL.RawQuery = q.Encode()
}
}
// UserFollowersLookupOpts are the options for the user followers API
type UserFollowersLookupOpts struct {
Expansions []Expansion
TweetFields []TweetField
UserFields []UserField
MaxResults int
PaginationToken string
}
func (u UserFollowersLookupOpts) addQuery(req *http.Request) {
q := req.URL.Query()
if len(u.Expansions) > 0 {
q.Add("expansions", strings.Join(expansionStringArray(u.Expansions), ","))
}
if len(u.TweetFields) > 0 {
q.Add("tweet.fields", strings.Join(tweetFieldStringArray(u.TweetFields), ","))
}
if len(u.UserFields) > 0 {
q.Add("user.fields", strings.Join(userFieldStringArray(u.UserFields), ","))
}
if u.MaxResults > 0 {
q.Add("max_results", strconv.Itoa(u.MaxResults))
}
if len(u.PaginationToken) > 0 {
q.Add("pagination_token", u.PaginationToken)
}
if len(q) > 0 {
req.URL.RawQuery = q.Encode()
}
}