forked from rwaldron/jquery.eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.eventsource.js
271 lines (209 loc) · 6.64 KB
/
jquery.eventsource.js
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
/*!
* jQuery.EventSource (jQuery.eventsource)
*
* Copyright (c) 2011 Rick Waldron
* Dual licensed under the MIT and GPL licenses.
*/
(function( jQuery, global ) {
jQuery.extend( jQuery.ajaxSettings.accepts, {
stream: "text/event-stream"
});
var stream = {
defaults: {
// Stream identity
label: null,
url: null,
// Event Callbacks
open: jQuery.noop,
message: jQuery.noop
},
setup: {
stream: {},
lastEventId: 0,
isHostApi: false,
retry: 500,
history: {},
options: {}
},
cache: {}
},
pluginFns = {
public: {
close: function( label ) {
var tmp = {};
if ( !label || label === "*" ) {
for ( var prop in stream.cache ) {
if ( stream.cache[ prop ].isHostApi ) {
stream.cache[ prop ].stream.close();
}
}
stream.cache = {};
return stream.cache;
}
for ( var prop in stream.cache ) {
if ( label !== prop ) {
tmp[ prop ] = stream.cache[ prop ];
} else {
if ( stream.cache[ prop ].isHostApi ) {
stream.cache[ prop ].stream.close();
}
}
}
stream.cache = tmp;
return stream.cache;
},
streams: function( label ) {
if ( !label || label === "*" ) {
return stream.cache;
}
return stream.cache[ label ] || {};
}
},
_private: {
// Open a host api event source
openEventSource: function( options ) {
var label = options.label;
stream.cache[ label ].stream.addEventListener("open", function(event) {
if ( stream.cache[ label ] ) {
this.label = label;
stream.cache[ label ].options.open.call(this, event);
}
}, false);
stream.cache[label].stream.addEventListener("message", function(event) {
var streamData = [];
if ( stream.cache[ label ] ) {
streamData[ streamData.length ] = jQuery.parseJSON( event.data );
this.label = label;
stream.cache[ label ].lastEventId = +event.lastEventId;
stream.cache[ label ].history[stream.cache[ label ].lastEventId] = streamData;
stream.cache[ label ].options.message.call(this, streamData[0] ? streamData[0] : null, {
data: streamData,
lastEventId: stream.cache[ label ].lastEventId
}, event);
// TODO: Add custom event triggering
}
}, false);
return stream.cache[ label ].stream;
},
// open fallback event source
openPollingSource: function( options ) {
var label = options.label,
source;
if ( stream.cache[ label ] ) {
source = jQuery.ajax({
type: "GET",
url: options.url,
data: options.data,
beforeSend: function() {
if ( stream.cache[ label ] ) {
this.label = label;
stream.cache[ label ].options.open.call( this );
}
},
success: function( data ) {
var tempdata,
label = options.label,
parsedData = [],
streamData = jQuery.map( data.split("\n\n"), function(sdata, i) {
return !!sdata && sdata;
}),
idx = 0, length = streamData.length,
rretryprefix = /retry/,
retries;
if ( jQuery.isArray( streamData ) ) {
for ( ; idx < length; idx++ ) {
if ( streamData[ idx ] ) {
if ( rretryprefix.test( streamData[ idx ] ) &&
(retries = streamData[ idx ].split("retry: ")).length ) {
if ( retries.length === 2 && !retries[ 0 ] ) {
stream.cache[ label ].retry = stream.cache[ label ].options.retry = +retries[ 1 ];
}
} else {
tempdata = streamData[ idx ].split("data: ")[ 1 ];
// Convert `dataType` here
if ( options.dataType === "json" ) {
tempdata = jQuery.parseJSON( tempdata );
}
parsedData[ parsedData.length ] = tempdata;
}
}
}
}
if ( stream.cache[ label ] ) {
this.label = label;
stream.cache[ label ].lastEventId++;
stream.cache[ label ].history[ stream.cache[ label ].lastEventId ] = parsedData;
stream.cache[ label ].options.message.call(this, parsedData[0] ? parsedData[0] : null, {
data: parsedData,
lastEventId: stream.cache[ label ].lastEventId
});
setTimeout(
function() {
pluginFns._private.openPollingSource.call( this, options );
},
// Use server sent retry time if exists or default retry time if not
( stream.cache[ label ] && stream.cache[ label ].retry ) || 500
);
}
},
cache: false,
timeout: 50000
});
}
return source;
}
}
},
isHostApi = global.EventSource ? true : false;
jQuery.eventsource = function( options ) {
var streamType, opts;
// Plugin sub function
if ( options && !jQuery.isPlainObject( options ) && pluginFns.public[ options ] ) {
// If no label was passed, send message to all streams
return pluginFns.public[ options ](
arguments[1] ?
arguments[1] :
"*"
);
}
// If params were passed in as an object, normalize to a query string
options.data = options.data && jQuery.isPlainObject( options.data ) ?
jQuery.param( options.data ) :
options.data;
// Mimick the host api behavior?
if ( !options.url || typeof options.url !== "string" ) {
throw new SyntaxError("Not enough arguments: Must provide a url");
}
// If no explicit label, set internal label
options.label = !options.label ?
options.url + "?" + options.data :
options.label;
// Create new options object
opts = jQuery.extend({}, stream.defaults, options);
// Create empty object in `stream.cache`
stream.cache[ opts.label ] = {
options: opts
};
// Determine and declare `event stream` source,
// whether will be host api or XHR fallback
streamType = !isHostApi ?
// If not host api, open a polling fallback
pluginFns._private.openPollingSource(opts) :
new EventSource(opts.url + ( opts.data ? "?" + opts.data : "" ) );
// Add to event sources
stream.cache[ opts.label ] = jQuery.extend({}, stream.setup, {
stream: streamType,
isHostApi: isHostApi,
options: opts
});
if ( isHostApi ) {
pluginFns._private.openEventSource(opts);
}
return stream.cache;
};
jQuery.each( [ "close", "streams" ], function( idx, name ) {
jQuery.eventsource[ name ] = function( arg ) {
return jQuery.eventsource( name, arg || "*" );
};
});
})(jQuery, window);