-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.go
255 lines (205 loc) · 7.09 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
package tweetgo
import (
"encoding/json"
"io/ioutil"
"math/rand"
"net/http"
"time"
"github.com/gorilla/schema"
)
// Client is the Twitter API client which will make signed requests to twitter
type Client struct {
OAuthConsumerKey string
OAuthConsumerSecret string
OAuthAccessToken string
OAuthAccessTokenSecret string
HTTPClient requestMaker
Noncer nonceMaker
Timer currentTimer
}
type noncer struct{}
func (n noncer) Generate() string {
const allowed = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
b := make([]byte, 48)
for i := range b {
b[i] = allowed[rand.Intn(len(allowed))]
}
return string(b)
}
type timer struct{}
func (t timer) GetCurrentTime() int64 {
return time.Now().Unix()
}
func NewClient(oauthConsumerKey, oauthConsumerSecret string) Client {
return Client{
OAuthConsumerKey: oauthConsumerKey,
OAuthConsumerSecret: oauthConsumerSecret,
HTTPClient: &http.Client{},
Noncer: noncer{},
Timer: timer{},
}
}
func (c *Client) SetAccessKeys(oauthAccessToken, oauthAccessTokenSecret string) {
c.OAuthAccessToken = oauthAccessToken
c.OAuthAccessTokenSecret = oauthAccessTokenSecret
}
// OAuthRequestTokenPost will return an oauth_token and oauth_token_secret
// https://developer.twitter.com/en/docs/basics/authentication/api-reference/request_token
func (c Client) OAuthRequestTokenPost(input OAuthRequestTokenInput) (OAuthRequestTokenOutput, error) {
uri := "https://api.twitter.com/oauth/request_token"
params := processParams(input)
res, err := c.executeRequest(http.MethodPost, uri, params)
if err != nil {
return OAuthRequestTokenOutput{}, err
}
defer res.Body.Close()
values, err := bodyToValues(res.Body)
if err != nil {
return OAuthRequestTokenOutput{}, err
}
var output = OAuthRequestTokenOutput{}
var decoder = schema.NewDecoder()
err = decoder.Decode(&output, values)
if err != nil {
return OAuthRequestTokenOutput{}, err
}
return output, nil
}
// OAuthAccessTokenPost will exchange a temporary access token for a permanent one
// https://developer.twitter.com/en/docs/basics/authentication/api-reference/access_token
func (c Client) OAuthAccessTokenPost(input OAuthAccessTokenInput) (OAuthAccessTokenOutput, error) {
uri := "https://api.twitter.com/oauth/access_token"
params := processParams(input)
res, err := c.executeRequest(http.MethodPost, uri, params)
if err != nil {
return OAuthAccessTokenOutput{}, err
}
defer res.Body.Close()
values, err := bodyToValues(res.Body)
if err != nil {
return OAuthAccessTokenOutput{}, err
}
var output = OAuthAccessTokenOutput{}
var decoder = schema.NewDecoder()
err = decoder.Decode(&output, values)
if err != nil {
return OAuthAccessTokenOutput{}, err
}
return output, nil
}
// ListsListGet will return all lists the authenticating user or specified user subscribes to, including thier own.
// https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-list
func (c Client) ListsListGet(input ListsListInput) ([]ListsListOutput, error) {
uri := "https://api.twitter.com/1.1/lists/list.json"
params := processParams(input)
res, err := c.executeRequest(http.MethodGet, uri, params)
if err != nil {
return []ListsListOutput{}, err
}
defer res.Body.Close()
resBytes, err := ioutil.ReadAll(res.Body)
if err != nil {
return []ListsListOutput{}, err
}
output := []ListsListOutput{}
err = json.Unmarshal(resBytes, &output)
if err != nil {
return []ListsListOutput{}, err
}
return output, nil
}
// ListsMembersGet will return the members of a specified list
// https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-members
func (c Client) ListsMembersGet(input ListsMembersInput) (ListsMembersOutput, error) {
uri := "https://api.twitter.com/1.1/lists/members.json"
params := processParams(input)
res, err := c.executeRequest(http.MethodGet, uri, params)
if err != nil {
return ListsMembersOutput{}, err
}
defer res.Body.Close()
resBytes, err := ioutil.ReadAll(res.Body)
if err != nil {
return ListsMembersOutput{}, err
}
output := ListsMembersOutput{}
err = json.Unmarshal(resBytes, &output)
if err != nil {
return ListsMembersOutput{}, err
}
return output, nil
}
// ListsMembersShowGet will check if the specified users is a member of the specified list
// https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-members-show
func (c Client) ListsMembersShowGet(input ListsMembersShowInput) (ListsMembersShowOutput, error) {
uri := "https://api.twitter.com/1.1/lists/members/show.json"
params := processParams(input)
res, err := c.executeRequest(http.MethodGet, uri, params)
if err != nil {
return ListsMembersShowOutput{}, err
}
defer res.Body.Close()
resBytes, err := ioutil.ReadAll(res.Body)
if err != nil {
return ListsMembersShowOutput{}, err
}
output := ListsMembersShowOutput{}
err = json.Unmarshal(resBytes, &output)
if err != nil {
return ListsMembersShowOutput{}, err
}
return output, nil
}
// StatusesUpdatePost will post a status update to twitter
// https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update
func (c Client) StatusesUpdatePost(input StatusesUpdateInput) (StatusesUpdateOutput, error) {
uri := "https://api.twitter.com/1.1/statuses/update.json"
params := processParams(input)
res, err := c.executeRequest(http.MethodPost, uri, params)
if err != nil {
return StatusesUpdateOutput{}, err
}
defer res.Body.Close()
resBytes, err := ioutil.ReadAll(res.Body)
if err != nil {
return StatusesUpdateOutput{}, err
}
output := StatusesUpdateOutput{}
err = json.Unmarshal(resBytes, &output)
if err != nil {
return StatusesUpdateOutput{}, err
}
return output, nil
}
// StatusesFilterPostRaw will get a streaming list of tweets and return the raw http response for streaming
// https://developer.twitter.com/en/docs/tweets/filter-realtime/api-reference/post-statuses-filter
func (c Client) StatusesFilterPostRaw(input StatusesFilterInput) (*http.Response, error) {
uri := "https://stream.twitter.com/1.1/statuses/filter.json"
params := processParams(input)
res, err := c.executeRequest(http.MethodPost, uri, params)
if err != nil {
return nil, err
}
return res, nil
}
// StatusesUserTimelineGet will get a users timeline and return an array of tweets
// https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline
func (c Client) StatusesUserTimelineGet(input StatusesUserTimelineInput) ([]StatusesUserTimelineOutput, error) {
uri := "https://api.twitter.com/1.1/statuses/user_timeline.json"
params := processParams(input)
res, err := c.executeRequest(http.MethodGet, uri, params)
if err != nil {
return []StatusesUserTimelineOutput{}, err
}
defer res.Body.Close()
resBytes, err := ioutil.ReadAll(res.Body)
if err != nil {
return []StatusesUserTimelineOutput{}, err
}
var output []StatusesUserTimelineOutput
err = json.Unmarshal(resBytes, &output)
if err != nil {
return []StatusesUserTimelineOutput{}, err
}
return output, nil
}