-
Notifications
You must be signed in to change notification settings - Fork 246
/
streaming.go
318 lines (275 loc) · 8.61 KB
/
streaming.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
package anaconda
import (
"bufio"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"github.com/dustin/go-jsonpointer"
)
const (
BaseUrlUserStream = "https://userstream.twitter.com/1.1"
BaseUrlSiteStream = "https://sitestream.twitter.com/1.1"
BaseUrlStream = "https://stream.twitter.com/1.1"
)
// messages
type StatusDeletionNotice struct {
Id int64 `json:"id"`
IdStr string `json:"id_str"`
UserId int64 `json:"user_id"`
UserIdStr string `json:"user_id_str"`
}
type statusDeletionNotice struct {
Delete *struct {
Status *StatusDeletionNotice `json:"status"`
} `json:"delete"`
}
type DirectMessageDeletionNotice struct {
Id int64 `json:"id"`
IdStr string `json:"id_str"`
UserId int64 `json:"user_id"`
UserIdStr string `json:"user_id_str"`
}
type directMessageDeletionNotice struct {
Delete *struct {
DirectMessage *DirectMessageDeletionNotice `json:"direct_message"`
} `json:"delete"`
}
type LocationDeletionNotice struct {
UserId int64 `json:"user_id"`
UserIdStr string `json:"user_id_str"`
UpToStatusId int64 `json:"up_to_status_id"`
UpToStatusIdStr string `json:"up_to_status_id_str"`
}
type locationDeletionNotice struct {
ScrubGeo *LocationDeletionNotice `json:"scrub_geo"`
}
type LimitNotice struct {
Track int64 `json:"track"`
}
type limitNotice struct {
Limit *LimitNotice `json:"limit"`
}
type StatusWithheldNotice struct {
Id int64 `json:"id"`
UserId int64 `json:"user_id"`
WithheldInCountries []string `json:"withheld_in_countries"`
}
type statusWithheldNotice struct {
StatusWithheld *StatusWithheldNotice `json:"status_withheld"`
}
type UserWithheldNotice struct {
Id int64 `json:"id"`
WithheldInCountries []string `json:"withheld_in_countries"`
}
type userWithheldNotice struct {
UserWithheld *UserWithheldNotice `json:"user_withheld"`
}
type DisconnectMessage struct {
Code int64 `json:"code"`
StreamName string `json:"stream_name"`
Reason string `json:"reason"`
}
type disconnectMessage struct {
Disconnect *DisconnectMessage `json:"disconnect"`
}
type StallWarning struct {
Code string `json:"code"`
Message string `json:"message"`
PercentFull int64 `json:"percent_full"`
}
type stallWarning struct {
Warning *StallWarning `json:"warning"`
}
type FriendsList []int64
type friendsList struct {
Friends *FriendsList `json:"friends"`
}
type streamDirectMessage struct {
DirectMessage *DirectMessage `json:"direct_message"`
}
type Event struct {
Target *User `json:"target"`
Source *User `json:"source"`
Event string `json:"event"`
CreatedAt string `json:"created_at"`
}
type EventList struct {
Event
TargetObject *List `json:"target_object"`
}
type EventTweet struct {
Event
TargetObject *Tweet `json:"target_object"`
}
type EventFollow struct {
Event
}
type TooManyFollow struct {
Warning *struct {
Code string `json:"code"`
Message string `json:"message"`
UserId int64 `json:"user_id"`
} `json:"warning"`
}
// TODO: Site Stream messages. I cant test.
// Stream allows you to stream using one of the
// PublicStream* or UserStream api methods
//
// A go loop is started an gives you an stream that sends interface{}
// objects through it's chan C
// Objects which you can cast into a tweet like this :
// t, ok := o.(twitter.Tweet) // try casting into a tweet
// if !ok {
// log.Debug("Recieved non tweet message")
// }
//
// If we can't stream the chan will be closed.
// Otherwise the loop will connect and send streams in the chan.
// It will also try to reconnect itself after an exponential backoff time
// if the connection is lost
// If twitter response is one of 420, 429 or 503 (meaning "wait a sec")
// the loop retries to open the socket with a simple autogrowing backoff.
//
// When finished streaming call stream.Stop() to initiate termination process.
//
type Stream struct {
api TwitterApi
C chan interface{}
run bool
}
func (s *Stream) listen(response http.Response) {
if response.Body != nil {
defer response.Body.Close()
}
s.api.Log.Notice("Listening to twitter socket")
defer s.api.Log.Notice("twitter socket closed, leaving loop")
scanner := bufio.NewScanner(response.Body)
for scanner.Scan() && s.run {
j := scanner.Bytes()
if len(j) == 0 {
s.api.Log.Debug("Empty bytes... Moving along")
} else {
s.C <- jsonToKnownType(j)
}
}
}
func jsonToKnownType(j []byte) interface{} {
// TODO: DRY
if o := new(Tweet); jsonAsStruct(j, "/source", &o) {
return *o
} else if o := new(statusDeletionNotice); jsonAsStruct(j, "/delete/status", &o) {
return *o.Delete.Status
} else if o := new(directMessageDeletionNotice); jsonAsStruct(j, "/delete/direct_message", &o) {
return *o.Delete.DirectMessage
} else if o := new(locationDeletionNotice); jsonAsStruct(j, "/scrub_geo", &o) {
return *o.ScrubGeo
} else if o := new(limitNotice); jsonAsStruct(j, "/limit", &o) {
return *o.Limit
} else if o := new(statusWithheldNotice); jsonAsStruct(j, "/status_withheld", &o) {
return *o.StatusWithheld
} else if o := new(userWithheldNotice); jsonAsStruct(j, "/user_withheld", &o) {
return *o.UserWithheld
} else if o := new(disconnectMessage); jsonAsStruct(j, "/disconnect", &o) {
return *o.Disconnect
} else if o := new(stallWarning); jsonAsStruct(j, "/warning", &o) {
return *o.Warning
} else if o := new(friendsList); jsonAsStruct(j, "/friends", &o) {
return *o.Friends
} else if o := new(streamDirectMessage); jsonAsStruct(j, "/direct_message", &o) {
return *o.DirectMessage
} else if o := new(EventTweet); jsonAsStruct(j, "/target_object/source", &o) {
return *o
} else if o := new(EventList); jsonAsStruct(j, "/target_object/slug", &o) {
return *o
} else if o := new(Event); jsonAsStruct(j, "/target_object", &o) {
return *o
} else if o := new(EventFollow); jsonAsStruct(j, "/event", &o) {
return *o
} else {
return nil
}
}
func (s *Stream) requestStream(urlStr string, v url.Values, method int) (resp *http.Response, err error) {
switch method {
case _GET:
return oauthClient.Get(s.api.HttpClient, s.api.Credentials, urlStr, v)
case _POST:
return oauthClient.Post(s.api.HttpClient, s.api.Credentials, urlStr, v)
default:
}
return nil, fmt.Errorf("HTTP method not yet supported")
}
func (s *Stream) loop(urlStr string, v url.Values, method int) {
defer s.api.Log.Debug("Leaving request stream loop")
defer close(s.C)
rlb := NewHTTP420ErrBackoff()
for s.run {
resp, err := s.requestStream(urlStr, v, method)
if err != nil {
if err == io.EOF {
// Sometimes twitter closes the stream
// right away with EOF as of a rate limit
resp.StatusCode = 420
} else {
s.api.Log.Criticalf("Cannot request stream : %s", err)
return
}
}
s.api.Log.Debugf("Response status=%s code=%d", resp.Status, resp.StatusCode)
switch resp.StatusCode {
case 200, 304:
s.listen(*resp)
rlb.Reset()
case 420, 429, 503:
s.api.Log.Noticef("Twitter streaming: backing off as got : %+s", resp.Status)
rlb.BackOff()
case 400, 401, 403, 404, 406, 410, 422, 500, 502, 504:
s.api.Log.Criticalf("Twitter streaming: leaving after an irremediable error: %+s", resp.Status)
return
default:
s.api.Log.Notice("Received unknown status: %+s", resp.StatusCode)
}
}
}
func (s *Stream) Stop() {
s.run = false
}
func (s *Stream) start(urlStr string, v url.Values, method int) {
s.run = true
go s.loop(urlStr, v, method)
}
func (a TwitterApi) newStream(urlStr string, v url.Values, method int) *Stream {
stream := Stream{
api: a,
C: make(chan interface{}),
}
stream.start(urlStr, v, method)
return &stream
}
func (a TwitterApi) UserStream(v url.Values) (stream *Stream) {
return a.newStream(BaseUrlUserStream+"/user.json", v, _GET)
}
func (a TwitterApi) PublicStreamSample(v url.Values) (stream *Stream) {
return a.newStream(BaseUrlStream+"/statuses/sample.json", v, _GET)
}
// XXX: To use this API authority is requied. but I dont have this. I cant test.
func (a TwitterApi) PublicStreamFirehose(v url.Values) (stream *Stream) {
return a.newStream(BaseUrlStream+"/statuses/firehose.json", v, _GET)
}
// XXX: PublicStream(Track|Follow|Locations) func is needed?
func (a TwitterApi) PublicStreamFilter(v url.Values) (stream *Stream) {
return a.newStream(BaseUrlStream+"/statuses/filter.json", v, _POST)
}
// XXX: To use this API authority is requied. but I dont have this. I cant test.
func (a TwitterApi) SiteStream(v url.Values) (stream *Stream) {
return a.newStream(BaseUrlSiteStream+"/site.json", v, _GET)
}
func jsonAsStruct(j []byte, path string, obj interface{}) (res bool) {
if v, _ := jsonpointer.Find(j, path); v == nil {
return false
}
err := json.Unmarshal(j, obj)
return err == nil
}