litecable 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +40 -0
- data/.rubocop.yml +63 -0
- data/.travis.yml +7 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +128 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/circle.yml +8 -0
- data/examples/sinatra/Gemfile +16 -0
- data/examples/sinatra/Procfile +3 -0
- data/examples/sinatra/README.md +33 -0
- data/examples/sinatra/anycable +18 -0
- data/examples/sinatra/app.rb +52 -0
- data/examples/sinatra/assets/app.css +169 -0
- data/examples/sinatra/assets/cable.js +584 -0
- data/examples/sinatra/assets/reset.css +223 -0
- data/examples/sinatra/bin/anycable-go +0 -0
- data/examples/sinatra/chat.rb +39 -0
- data/examples/sinatra/config.ru +28 -0
- data/examples/sinatra/views/index.slim +8 -0
- data/examples/sinatra/views/layout.slim +15 -0
- data/examples/sinatra/views/login.slim +8 -0
- data/examples/sinatra/views/resetcss.slim +224 -0
- data/examples/sinatra/views/room.slim +68 -0
- data/lib/lite_cable.rb +29 -0
- data/lib/lite_cable/anycable.rb +62 -0
- data/lib/lite_cable/channel.rb +8 -0
- data/lib/lite_cable/channel/base.rb +165 -0
- data/lib/lite_cable/channel/registry.rb +34 -0
- data/lib/lite_cable/channel/streams.rb +56 -0
- data/lib/lite_cable/coders.rb +7 -0
- data/lib/lite_cable/coders/json.rb +19 -0
- data/lib/lite_cable/coders/raw.rb +15 -0
- data/lib/lite_cable/config.rb +18 -0
- data/lib/lite_cable/connection.rb +10 -0
- data/lib/lite_cable/connection/authorization.rb +13 -0
- data/lib/lite_cable/connection/base.rb +131 -0
- data/lib/lite_cable/connection/identification.rb +88 -0
- data/lib/lite_cable/connection/streams.rb +28 -0
- data/lib/lite_cable/connection/subscriptions.rb +108 -0
- data/lib/lite_cable/internal.rb +13 -0
- data/lib/lite_cable/logging.rb +28 -0
- data/lib/lite_cable/server.rb +27 -0
- data/lib/lite_cable/server/client_socket.rb +9 -0
- data/lib/lite_cable/server/client_socket/base.rb +163 -0
- data/lib/lite_cable/server/client_socket/subscriptions.rb +23 -0
- data/lib/lite_cable/server/heart_beat.rb +50 -0
- data/lib/lite_cable/server/middleware.rb +55 -0
- data/lib/lite_cable/server/subscribers_map.rb +67 -0
- data/lib/lite_cable/server/websocket_ext/protocols.rb +45 -0
- data/lib/lite_cable/version.rb +4 -0
- data/lib/litecable.rb +2 -0
- data/litecable.gemspec +33 -0
- metadata +256 -0
@@ -0,0 +1,169 @@
|
|
1
|
+
html, body {
|
2
|
+
height: 100%;
|
3
|
+
width: 100%;
|
4
|
+
min-width: 300px;
|
5
|
+
}
|
6
|
+
|
7
|
+
body {
|
8
|
+
background: #fff;
|
9
|
+
color: #363636;
|
10
|
+
font: 18px/30px "Arial", sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
p, div, span, a, ul, li {
|
14
|
+
box-sizing: border-box;
|
15
|
+
}
|
16
|
+
|
17
|
+
a {
|
18
|
+
text-decoration: none;
|
19
|
+
color: #ff5e5e;
|
20
|
+
|
21
|
+
&:visited,
|
22
|
+
&:active {
|
23
|
+
color: #ff5e5e;
|
24
|
+
}
|
25
|
+
|
26
|
+
&:hover {
|
27
|
+
opacity: 0.8;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
h1 {
|
32
|
+
font-size: 70px;
|
33
|
+
line-height: 90px;
|
34
|
+
letter-spacing: 2px;
|
35
|
+
font-weight: bold;
|
36
|
+
}
|
37
|
+
|
38
|
+
h2 {
|
39
|
+
font-size: 40px;
|
40
|
+
line-height: 50px;
|
41
|
+
letter-spacing: 1.5px;
|
42
|
+
margin: 20px 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
.main {
|
46
|
+
height: 100%;
|
47
|
+
width: 100%;
|
48
|
+
padding: 0 20%;
|
49
|
+
}
|
50
|
+
|
51
|
+
.header {
|
52
|
+
width: 100%;
|
53
|
+
display: flex;
|
54
|
+
justify-content: center;
|
55
|
+
}
|
56
|
+
|
57
|
+
input[type="text"] {
|
58
|
+
width: 100%;
|
59
|
+
height: 40px;
|
60
|
+
line-height: 40px;
|
61
|
+
display: block;
|
62
|
+
margin: 0;
|
63
|
+
font-size: 18px;
|
64
|
+
appearance: none;
|
65
|
+
box-shadow: none;
|
66
|
+
border-radius: none;
|
67
|
+
}
|
68
|
+
|
69
|
+
button:focus, input[type="text"]:focus {
|
70
|
+
outline: none;
|
71
|
+
}
|
72
|
+
|
73
|
+
.btn {
|
74
|
+
cursor: pointer;
|
75
|
+
height: 40px;
|
76
|
+
text-decoration: none;
|
77
|
+
padding: 0 20px;
|
78
|
+
text-align: center;
|
79
|
+
background: #ff5e5e;
|
80
|
+
transition: opacity 200ms;
|
81
|
+
color: white;
|
82
|
+
font-weight: bold;
|
83
|
+
font-size: 16px;
|
84
|
+
letter-spacing: 1.5px;
|
85
|
+
display: flex;
|
86
|
+
align-items: center;
|
87
|
+
justify-content: center;
|
88
|
+
width: 100px;
|
89
|
+
margin-top: 30px;
|
90
|
+
}
|
91
|
+
|
92
|
+
.btn:hover {
|
93
|
+
opacity: 0.8;
|
94
|
+
}
|
95
|
+
|
96
|
+
.message-form {
|
97
|
+
position: fixed;
|
98
|
+
bottom: 0;
|
99
|
+
left: 0;
|
100
|
+
width: 100%;
|
101
|
+
border-top: 1px #e3e3e3 solid;
|
102
|
+
z-index: 10;
|
103
|
+
padding: 20px 20% 20px 20%;
|
104
|
+
background: white;
|
105
|
+
opacity: 0.9;
|
106
|
+
}
|
107
|
+
|
108
|
+
.messages {
|
109
|
+
display: flex;
|
110
|
+
flex-direction: column;
|
111
|
+
padding-bottom: 160px;
|
112
|
+
}
|
113
|
+
|
114
|
+
.message {
|
115
|
+
display: flex;
|
116
|
+
flex-direction: column;
|
117
|
+
}
|
118
|
+
|
119
|
+
.message.me {
|
120
|
+
align-self: flex-end;
|
121
|
+
}
|
122
|
+
|
123
|
+
.messages .message .author {
|
124
|
+
color: #ff5e5e;
|
125
|
+
}
|
126
|
+
|
127
|
+
.messages .message.me .author {
|
128
|
+
align-self: flex-end;
|
129
|
+
color: #7ed321;
|
130
|
+
}
|
131
|
+
|
132
|
+
.messages .message.system .author {
|
133
|
+
color: #9e9e9e;
|
134
|
+
}
|
135
|
+
|
136
|
+
@media (max-width: 800px) and (min-width: 601px) {
|
137
|
+
body {
|
138
|
+
font-size: 3vw;
|
139
|
+
line-height: 5vw;
|
140
|
+
}
|
141
|
+
|
142
|
+
h1 {
|
143
|
+
font-size: 14vw;
|
144
|
+
line-height: 18vw;
|
145
|
+
}
|
146
|
+
|
147
|
+
h2 {
|
148
|
+
font-size: 5vw;
|
149
|
+
line-height: 7vw;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
|
154
|
+
@media (max-width: 600px) {
|
155
|
+
body {
|
156
|
+
font-size: 4vw;
|
157
|
+
line-height: 6vw;
|
158
|
+
}
|
159
|
+
|
160
|
+
h1 {
|
161
|
+
font-size: 14vw;
|
162
|
+
line-height: 18vw;
|
163
|
+
}
|
164
|
+
|
165
|
+
h2 {
|
166
|
+
font-size: 10vw;
|
167
|
+
line-height: 12vw;
|
168
|
+
}
|
169
|
+
}
|
@@ -0,0 +1,584 @@
|
|
1
|
+
(function() {
|
2
|
+
var slice = [].slice;
|
3
|
+
|
4
|
+
this.ActionCable = {
|
5
|
+
INTERNAL: {
|
6
|
+
"message_types": {
|
7
|
+
"welcome": "welcome",
|
8
|
+
"ping": "ping",
|
9
|
+
"confirmation": "confirm_subscription",
|
10
|
+
"rejection": "reject_subscription"
|
11
|
+
},
|
12
|
+
"default_mount_path": "/cable",
|
13
|
+
"protocols": ["actioncable-v1-json", "actioncable-unsupported"]
|
14
|
+
},
|
15
|
+
WebSocket: window.WebSocket,
|
16
|
+
logger: window.console,
|
17
|
+
createConsumer: function(url) {
|
18
|
+
var ref;
|
19
|
+
if (url == null) {
|
20
|
+
url = (ref = this.getConfig("url")) != null ? ref : this.INTERNAL.default_mount_path;
|
21
|
+
}
|
22
|
+
return new ActionCable.Consumer(this.createWebSocketURL(url));
|
23
|
+
},
|
24
|
+
getConfig: function(name) {
|
25
|
+
var element;
|
26
|
+
element = document.head.querySelector("meta[name='action-cable-" + name + "']");
|
27
|
+
return element != null ? element.getAttribute("content") : void 0;
|
28
|
+
},
|
29
|
+
createWebSocketURL: function(url) {
|
30
|
+
var a;
|
31
|
+
if (url && !/^wss?:/i.test(url)) {
|
32
|
+
a = document.createElement("a");
|
33
|
+
a.href = url;
|
34
|
+
a.href = a.href;
|
35
|
+
a.protocol = a.protocol.replace("http", "ws");
|
36
|
+
return a.href;
|
37
|
+
} else {
|
38
|
+
return url;
|
39
|
+
}
|
40
|
+
},
|
41
|
+
startDebugging: function() {
|
42
|
+
return this.debugging = true;
|
43
|
+
},
|
44
|
+
stopDebugging: function() {
|
45
|
+
return this.debugging = null;
|
46
|
+
},
|
47
|
+
log: function() {
|
48
|
+
var messages, ref;
|
49
|
+
messages = 1 <= arguments.length ? slice.call(arguments, 0) : [];
|
50
|
+
if (this.debugging) {
|
51
|
+
messages.push(Date.now());
|
52
|
+
return (ref = this.logger).log.apply(ref, ["[ActionCable]"].concat(slice.call(messages)));
|
53
|
+
}
|
54
|
+
}
|
55
|
+
};
|
56
|
+
|
57
|
+
}).call(this);
|
58
|
+
(function() {
|
59
|
+
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
60
|
+
|
61
|
+
ActionCable.ConnectionMonitor = (function() {
|
62
|
+
var clamp, now, secondsSince;
|
63
|
+
|
64
|
+
ConnectionMonitor.pollInterval = {
|
65
|
+
min: 3,
|
66
|
+
max: 30
|
67
|
+
};
|
68
|
+
|
69
|
+
ConnectionMonitor.staleThreshold = 6;
|
70
|
+
|
71
|
+
function ConnectionMonitor(connection) {
|
72
|
+
this.connection = connection;
|
73
|
+
this.visibilityDidChange = bind(this.visibilityDidChange, this);
|
74
|
+
this.reconnectAttempts = 0;
|
75
|
+
}
|
76
|
+
|
77
|
+
ConnectionMonitor.prototype.start = function() {
|
78
|
+
if (!this.isRunning()) {
|
79
|
+
this.startedAt = now();
|
80
|
+
delete this.stoppedAt;
|
81
|
+
this.startPolling();
|
82
|
+
document.addEventListener("visibilitychange", this.visibilityDidChange);
|
83
|
+
return ActionCable.log("ConnectionMonitor started. pollInterval = " + (this.getPollInterval()) + " ms");
|
84
|
+
}
|
85
|
+
};
|
86
|
+
|
87
|
+
ConnectionMonitor.prototype.stop = function() {
|
88
|
+
if (this.isRunning()) {
|
89
|
+
this.stoppedAt = now();
|
90
|
+
this.stopPolling();
|
91
|
+
document.removeEventListener("visibilitychange", this.visibilityDidChange);
|
92
|
+
return ActionCable.log("ConnectionMonitor stopped");
|
93
|
+
}
|
94
|
+
};
|
95
|
+
|
96
|
+
ConnectionMonitor.prototype.isRunning = function() {
|
97
|
+
return (this.startedAt != null) && (this.stoppedAt == null);
|
98
|
+
};
|
99
|
+
|
100
|
+
ConnectionMonitor.prototype.recordPing = function() {
|
101
|
+
return this.pingedAt = now();
|
102
|
+
};
|
103
|
+
|
104
|
+
ConnectionMonitor.prototype.recordConnect = function() {
|
105
|
+
this.reconnectAttempts = 0;
|
106
|
+
this.recordPing();
|
107
|
+
delete this.disconnectedAt;
|
108
|
+
return ActionCable.log("ConnectionMonitor recorded connect");
|
109
|
+
};
|
110
|
+
|
111
|
+
ConnectionMonitor.prototype.recordDisconnect = function() {
|
112
|
+
this.disconnectedAt = now();
|
113
|
+
return ActionCable.log("ConnectionMonitor recorded disconnect");
|
114
|
+
};
|
115
|
+
|
116
|
+
ConnectionMonitor.prototype.startPolling = function() {
|
117
|
+
this.stopPolling();
|
118
|
+
return this.poll();
|
119
|
+
};
|
120
|
+
|
121
|
+
ConnectionMonitor.prototype.stopPolling = function() {
|
122
|
+
return clearTimeout(this.pollTimeout);
|
123
|
+
};
|
124
|
+
|
125
|
+
ConnectionMonitor.prototype.poll = function() {
|
126
|
+
return this.pollTimeout = setTimeout((function(_this) {
|
127
|
+
return function() {
|
128
|
+
_this.reconnectIfStale();
|
129
|
+
return _this.poll();
|
130
|
+
};
|
131
|
+
})(this), this.getPollInterval());
|
132
|
+
};
|
133
|
+
|
134
|
+
ConnectionMonitor.prototype.getPollInterval = function() {
|
135
|
+
var interval, max, min, ref;
|
136
|
+
ref = this.constructor.pollInterval, min = ref.min, max = ref.max;
|
137
|
+
interval = 5 * Math.log(this.reconnectAttempts + 1);
|
138
|
+
return Math.round(clamp(interval, min, max) * 1000);
|
139
|
+
};
|
140
|
+
|
141
|
+
ConnectionMonitor.prototype.reconnectIfStale = function() {
|
142
|
+
if (this.connectionIsStale()) {
|
143
|
+
ActionCable.log("ConnectionMonitor detected stale connection. reconnectAttempts = " + this.reconnectAttempts + ", pollInterval = " + (this.getPollInterval()) + " ms, time disconnected = " + (secondsSince(this.disconnectedAt)) + " s, stale threshold = " + this.constructor.staleThreshold + " s");
|
144
|
+
this.reconnectAttempts++;
|
145
|
+
if (this.disconnectedRecently()) {
|
146
|
+
return ActionCable.log("ConnectionMonitor skipping reopening recent disconnect");
|
147
|
+
} else {
|
148
|
+
ActionCable.log("ConnectionMonitor reopening");
|
149
|
+
return this.connection.reopen();
|
150
|
+
}
|
151
|
+
}
|
152
|
+
};
|
153
|
+
|
154
|
+
ConnectionMonitor.prototype.connectionIsStale = function() {
|
155
|
+
var ref;
|
156
|
+
return secondsSince((ref = this.pingedAt) != null ? ref : this.startedAt) > this.constructor.staleThreshold;
|
157
|
+
};
|
158
|
+
|
159
|
+
ConnectionMonitor.prototype.disconnectedRecently = function() {
|
160
|
+
return this.disconnectedAt && secondsSince(this.disconnectedAt) < this.constructor.staleThreshold;
|
161
|
+
};
|
162
|
+
|
163
|
+
ConnectionMonitor.prototype.visibilityDidChange = function() {
|
164
|
+
if (document.visibilityState === "visible") {
|
165
|
+
return setTimeout((function(_this) {
|
166
|
+
return function() {
|
167
|
+
if (_this.connectionIsStale() || !_this.connection.isOpen()) {
|
168
|
+
ActionCable.log("ConnectionMonitor reopening stale connection on visibilitychange. visbilityState = " + document.visibilityState);
|
169
|
+
return _this.connection.reopen();
|
170
|
+
}
|
171
|
+
};
|
172
|
+
})(this), 200);
|
173
|
+
}
|
174
|
+
};
|
175
|
+
|
176
|
+
now = function() {
|
177
|
+
return new Date().getTime();
|
178
|
+
};
|
179
|
+
|
180
|
+
secondsSince = function(time) {
|
181
|
+
return (now() - time) / 1000;
|
182
|
+
};
|
183
|
+
|
184
|
+
clamp = function(number, min, max) {
|
185
|
+
return Math.max(min, Math.min(max, number));
|
186
|
+
};
|
187
|
+
|
188
|
+
return ConnectionMonitor;
|
189
|
+
|
190
|
+
})();
|
191
|
+
|
192
|
+
}).call(this);
|
193
|
+
(function() {
|
194
|
+
var i, message_types, protocols, ref, supportedProtocols, unsupportedProtocol,
|
195
|
+
slice = [].slice,
|
196
|
+
bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
197
|
+
indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
|
198
|
+
|
199
|
+
ref = ActionCable.INTERNAL, message_types = ref.message_types, protocols = ref.protocols;
|
200
|
+
|
201
|
+
supportedProtocols = 2 <= protocols.length ? slice.call(protocols, 0, i = protocols.length - 1) : (i = 0, []), unsupportedProtocol = protocols[i++];
|
202
|
+
|
203
|
+
ActionCable.Connection = (function() {
|
204
|
+
Connection.reopenDelay = 500;
|
205
|
+
|
206
|
+
function Connection(consumer) {
|
207
|
+
this.consumer = consumer;
|
208
|
+
this.open = bind(this.open, this);
|
209
|
+
this.subscriptions = this.consumer.subscriptions;
|
210
|
+
this.monitor = new ActionCable.ConnectionMonitor(this);
|
211
|
+
this.disconnected = true;
|
212
|
+
}
|
213
|
+
|
214
|
+
Connection.prototype.send = function(data) {
|
215
|
+
if (this.isOpen()) {
|
216
|
+
this.webSocket.send(JSON.stringify(data));
|
217
|
+
return true;
|
218
|
+
} else {
|
219
|
+
return false;
|
220
|
+
}
|
221
|
+
};
|
222
|
+
|
223
|
+
Connection.prototype.open = function() {
|
224
|
+
if (this.isActive()) {
|
225
|
+
ActionCable.log("Attempted to open WebSocket, but existing socket is " + (this.getState()));
|
226
|
+
return false;
|
227
|
+
} else {
|
228
|
+
ActionCable.log("Opening WebSocket, current state is " + (this.getState()) + ", subprotocols: " + protocols);
|
229
|
+
if (this.webSocket != null) {
|
230
|
+
this.uninstallEventHandlers();
|
231
|
+
}
|
232
|
+
this.webSocket = new ActionCable.WebSocket(this.consumer.url, protocols);
|
233
|
+
this.installEventHandlers();
|
234
|
+
this.monitor.start();
|
235
|
+
return true;
|
236
|
+
}
|
237
|
+
};
|
238
|
+
|
239
|
+
Connection.prototype.close = function(arg) {
|
240
|
+
var allowReconnect, ref1;
|
241
|
+
allowReconnect = (arg != null ? arg : {
|
242
|
+
allowReconnect: true
|
243
|
+
}).allowReconnect;
|
244
|
+
if (!allowReconnect) {
|
245
|
+
this.monitor.stop();
|
246
|
+
}
|
247
|
+
if (this.isActive()) {
|
248
|
+
return (ref1 = this.webSocket) != null ? ref1.close() : void 0;
|
249
|
+
}
|
250
|
+
};
|
251
|
+
|
252
|
+
Connection.prototype.reopen = function() {
|
253
|
+
var error;
|
254
|
+
ActionCable.log("Reopening WebSocket, current state is " + (this.getState()));
|
255
|
+
if (this.isActive()) {
|
256
|
+
try {
|
257
|
+
return this.close();
|
258
|
+
} catch (error1) {
|
259
|
+
error = error1;
|
260
|
+
return ActionCable.log("Failed to reopen WebSocket", error);
|
261
|
+
} finally {
|
262
|
+
ActionCable.log("Reopening WebSocket in " + this.constructor.reopenDelay + "ms");
|
263
|
+
setTimeout(this.open, this.constructor.reopenDelay);
|
264
|
+
}
|
265
|
+
} else {
|
266
|
+
return this.open();
|
267
|
+
}
|
268
|
+
};
|
269
|
+
|
270
|
+
Connection.prototype.getProtocol = function() {
|
271
|
+
var ref1;
|
272
|
+
return (ref1 = this.webSocket) != null ? ref1.protocol : void 0;
|
273
|
+
};
|
274
|
+
|
275
|
+
Connection.prototype.isOpen = function() {
|
276
|
+
return this.isState("open");
|
277
|
+
};
|
278
|
+
|
279
|
+
Connection.prototype.isActive = function() {
|
280
|
+
return this.isState("open", "connecting");
|
281
|
+
};
|
282
|
+
|
283
|
+
Connection.prototype.isProtocolSupported = function() {
|
284
|
+
var ref1;
|
285
|
+
return ref1 = this.getProtocol(), indexOf.call(supportedProtocols, ref1) >= 0;
|
286
|
+
};
|
287
|
+
|
288
|
+
Connection.prototype.isState = function() {
|
289
|
+
var ref1, states;
|
290
|
+
states = 1 <= arguments.length ? slice.call(arguments, 0) : [];
|
291
|
+
return ref1 = this.getState(), indexOf.call(states, ref1) >= 0;
|
292
|
+
};
|
293
|
+
|
294
|
+
Connection.prototype.getState = function() {
|
295
|
+
var ref1, state, value;
|
296
|
+
for (state in WebSocket) {
|
297
|
+
value = WebSocket[state];
|
298
|
+
if (value === ((ref1 = this.webSocket) != null ? ref1.readyState : void 0)) {
|
299
|
+
return state.toLowerCase();
|
300
|
+
}
|
301
|
+
}
|
302
|
+
return null;
|
303
|
+
};
|
304
|
+
|
305
|
+
Connection.prototype.installEventHandlers = function() {
|
306
|
+
var eventName, handler;
|
307
|
+
for (eventName in this.events) {
|
308
|
+
handler = this.events[eventName].bind(this);
|
309
|
+
this.webSocket["on" + eventName] = handler;
|
310
|
+
}
|
311
|
+
};
|
312
|
+
|
313
|
+
Connection.prototype.uninstallEventHandlers = function() {
|
314
|
+
var eventName;
|
315
|
+
for (eventName in this.events) {
|
316
|
+
this.webSocket["on" + eventName] = function() {};
|
317
|
+
}
|
318
|
+
};
|
319
|
+
|
320
|
+
Connection.prototype.events = {
|
321
|
+
message: function(event) {
|
322
|
+
var identifier, message, ref1, type;
|
323
|
+
if (!this.isProtocolSupported()) {
|
324
|
+
return;
|
325
|
+
}
|
326
|
+
ref1 = JSON.parse(event.data), identifier = ref1.identifier, message = ref1.message, type = ref1.type;
|
327
|
+
switch (type) {
|
328
|
+
case message_types.welcome:
|
329
|
+
this.monitor.recordConnect();
|
330
|
+
return this.subscriptions.reload();
|
331
|
+
case message_types.ping:
|
332
|
+
return this.monitor.recordPing();
|
333
|
+
case message_types.confirmation:
|
334
|
+
return this.subscriptions.notify(identifier, "connected");
|
335
|
+
case message_types.rejection:
|
336
|
+
return this.subscriptions.reject(identifier);
|
337
|
+
default:
|
338
|
+
return this.subscriptions.notify(identifier, "received", message);
|
339
|
+
}
|
340
|
+
},
|
341
|
+
open: function() {
|
342
|
+
ActionCable.log("WebSocket onopen event, using '" + (this.getProtocol()) + "' subprotocol");
|
343
|
+
this.disconnected = false;
|
344
|
+
if (!this.isProtocolSupported()) {
|
345
|
+
ActionCable.log("Protocol is unsupported. Stopping monitor and disconnecting.");
|
346
|
+
return this.close({
|
347
|
+
allowReconnect: false
|
348
|
+
});
|
349
|
+
}
|
350
|
+
},
|
351
|
+
close: function(event) {
|
352
|
+
ActionCable.log("WebSocket onclose event");
|
353
|
+
if (this.disconnected) {
|
354
|
+
return;
|
355
|
+
}
|
356
|
+
this.disconnected = true;
|
357
|
+
this.monitor.recordDisconnect();
|
358
|
+
return this.subscriptions.notifyAll("disconnected", {
|
359
|
+
willAttemptReconnect: this.monitor.isRunning()
|
360
|
+
});
|
361
|
+
},
|
362
|
+
error: function() {
|
363
|
+
return ActionCable.log("WebSocket onerror event");
|
364
|
+
}
|
365
|
+
};
|
366
|
+
|
367
|
+
return Connection;
|
368
|
+
|
369
|
+
})();
|
370
|
+
|
371
|
+
}).call(this);
|
372
|
+
(function() {
|
373
|
+
var slice = [].slice;
|
374
|
+
|
375
|
+
ActionCable.Subscriptions = (function() {
|
376
|
+
function Subscriptions(consumer) {
|
377
|
+
this.consumer = consumer;
|
378
|
+
this.subscriptions = [];
|
379
|
+
}
|
380
|
+
|
381
|
+
Subscriptions.prototype.create = function(channelName, mixin) {
|
382
|
+
var channel, params, subscription;
|
383
|
+
channel = channelName;
|
384
|
+
params = typeof channel === "object" ? channel : {
|
385
|
+
channel: channel
|
386
|
+
};
|
387
|
+
subscription = new ActionCable.Subscription(this.consumer, params, mixin);
|
388
|
+
return this.add(subscription);
|
389
|
+
};
|
390
|
+
|
391
|
+
Subscriptions.prototype.add = function(subscription) {
|
392
|
+
this.subscriptions.push(subscription);
|
393
|
+
this.consumer.ensureActiveConnection();
|
394
|
+
this.notify(subscription, "initialized");
|
395
|
+
this.sendCommand(subscription, "subscribe");
|
396
|
+
return subscription;
|
397
|
+
};
|
398
|
+
|
399
|
+
Subscriptions.prototype.remove = function(subscription) {
|
400
|
+
this.forget(subscription);
|
401
|
+
if (!this.findAll(subscription.identifier).length) {
|
402
|
+
this.sendCommand(subscription, "unsubscribe");
|
403
|
+
}
|
404
|
+
return subscription;
|
405
|
+
};
|
406
|
+
|
407
|
+
Subscriptions.prototype.reject = function(identifier) {
|
408
|
+
var i, len, ref, results, subscription;
|
409
|
+
ref = this.findAll(identifier);
|
410
|
+
results = [];
|
411
|
+
for (i = 0, len = ref.length; i < len; i++) {
|
412
|
+
subscription = ref[i];
|
413
|
+
this.forget(subscription);
|
414
|
+
this.notify(subscription, "rejected");
|
415
|
+
results.push(subscription);
|
416
|
+
}
|
417
|
+
return results;
|
418
|
+
};
|
419
|
+
|
420
|
+
Subscriptions.prototype.forget = function(subscription) {
|
421
|
+
var s;
|
422
|
+
this.subscriptions = (function() {
|
423
|
+
var i, len, ref, results;
|
424
|
+
ref = this.subscriptions;
|
425
|
+
results = [];
|
426
|
+
for (i = 0, len = ref.length; i < len; i++) {
|
427
|
+
s = ref[i];
|
428
|
+
if (s !== subscription) {
|
429
|
+
results.push(s);
|
430
|
+
}
|
431
|
+
}
|
432
|
+
return results;
|
433
|
+
}).call(this);
|
434
|
+
return subscription;
|
435
|
+
};
|
436
|
+
|
437
|
+
Subscriptions.prototype.findAll = function(identifier) {
|
438
|
+
var i, len, ref, results, s;
|
439
|
+
ref = this.subscriptions;
|
440
|
+
results = [];
|
441
|
+
for (i = 0, len = ref.length; i < len; i++) {
|
442
|
+
s = ref[i];
|
443
|
+
if (s.identifier === identifier) {
|
444
|
+
results.push(s);
|
445
|
+
}
|
446
|
+
}
|
447
|
+
return results;
|
448
|
+
};
|
449
|
+
|
450
|
+
Subscriptions.prototype.reload = function() {
|
451
|
+
var i, len, ref, results, subscription;
|
452
|
+
ref = this.subscriptions;
|
453
|
+
results = [];
|
454
|
+
for (i = 0, len = ref.length; i < len; i++) {
|
455
|
+
subscription = ref[i];
|
456
|
+
results.push(this.sendCommand(subscription, "subscribe"));
|
457
|
+
}
|
458
|
+
return results;
|
459
|
+
};
|
460
|
+
|
461
|
+
Subscriptions.prototype.notifyAll = function() {
|
462
|
+
var args, callbackName, i, len, ref, results, subscription;
|
463
|
+
callbackName = arguments[0], args = 2 <= arguments.length ? slice.call(arguments, 1) : [];
|
464
|
+
ref = this.subscriptions;
|
465
|
+
results = [];
|
466
|
+
for (i = 0, len = ref.length; i < len; i++) {
|
467
|
+
subscription = ref[i];
|
468
|
+
results.push(this.notify.apply(this, [subscription, callbackName].concat(slice.call(args))));
|
469
|
+
}
|
470
|
+
return results;
|
471
|
+
};
|
472
|
+
|
473
|
+
Subscriptions.prototype.notify = function() {
|
474
|
+
var args, callbackName, i, len, results, subscription, subscriptions;
|
475
|
+
subscription = arguments[0], callbackName = arguments[1], args = 3 <= arguments.length ? slice.call(arguments, 2) : [];
|
476
|
+
if (typeof subscription === "string") {
|
477
|
+
subscriptions = this.findAll(subscription);
|
478
|
+
} else {
|
479
|
+
subscriptions = [subscription];
|
480
|
+
}
|
481
|
+
results = [];
|
482
|
+
for (i = 0, len = subscriptions.length; i < len; i++) {
|
483
|
+
subscription = subscriptions[i];
|
484
|
+
results.push(typeof subscription[callbackName] === "function" ? subscription[callbackName].apply(subscription, args) : void 0);
|
485
|
+
}
|
486
|
+
return results;
|
487
|
+
};
|
488
|
+
|
489
|
+
Subscriptions.prototype.sendCommand = function(subscription, command) {
|
490
|
+
var identifier;
|
491
|
+
identifier = subscription.identifier;
|
492
|
+
return this.consumer.send({
|
493
|
+
command: command,
|
494
|
+
identifier: identifier
|
495
|
+
});
|
496
|
+
};
|
497
|
+
|
498
|
+
return Subscriptions;
|
499
|
+
|
500
|
+
})();
|
501
|
+
|
502
|
+
}).call(this);
|
503
|
+
(function() {
|
504
|
+
ActionCable.Subscription = (function() {
|
505
|
+
var extend;
|
506
|
+
|
507
|
+
function Subscription(consumer, params, mixin) {
|
508
|
+
this.consumer = consumer;
|
509
|
+
if (params == null) {
|
510
|
+
params = {};
|
511
|
+
}
|
512
|
+
this.identifier = JSON.stringify(params);
|
513
|
+
extend(this, mixin);
|
514
|
+
}
|
515
|
+
|
516
|
+
Subscription.prototype.perform = function(action, data) {
|
517
|
+
if (data == null) {
|
518
|
+
data = {};
|
519
|
+
}
|
520
|
+
data.action = action;
|
521
|
+
return this.send(data);
|
522
|
+
};
|
523
|
+
|
524
|
+
Subscription.prototype.send = function(data) {
|
525
|
+
return this.consumer.send({
|
526
|
+
command: "message",
|
527
|
+
identifier: this.identifier,
|
528
|
+
data: JSON.stringify(data)
|
529
|
+
});
|
530
|
+
};
|
531
|
+
|
532
|
+
Subscription.prototype.unsubscribe = function() {
|
533
|
+
return this.consumer.subscriptions.remove(this);
|
534
|
+
};
|
535
|
+
|
536
|
+
extend = function(object, properties) {
|
537
|
+
var key, value;
|
538
|
+
if (properties != null) {
|
539
|
+
for (key in properties) {
|
540
|
+
value = properties[key];
|
541
|
+
object[key] = value;
|
542
|
+
}
|
543
|
+
}
|
544
|
+
return object;
|
545
|
+
};
|
546
|
+
|
547
|
+
return Subscription;
|
548
|
+
|
549
|
+
})();
|
550
|
+
|
551
|
+
}).call(this);
|
552
|
+
(function() {
|
553
|
+
ActionCable.Consumer = (function() {
|
554
|
+
function Consumer(url) {
|
555
|
+
this.url = url;
|
556
|
+
this.subscriptions = new ActionCable.Subscriptions(this);
|
557
|
+
this.connection = new ActionCable.Connection(this);
|
558
|
+
}
|
559
|
+
|
560
|
+
Consumer.prototype.send = function(data) {
|
561
|
+
return this.connection.send(data);
|
562
|
+
};
|
563
|
+
|
564
|
+
Consumer.prototype.connect = function() {
|
565
|
+
return this.connection.open();
|
566
|
+
};
|
567
|
+
|
568
|
+
Consumer.prototype.disconnect = function() {
|
569
|
+
return this.connection.close({
|
570
|
+
allowReconnect: false
|
571
|
+
});
|
572
|
+
};
|
573
|
+
|
574
|
+
Consumer.prototype.ensureActiveConnection = function() {
|
575
|
+
if (!this.connection.isActive()) {
|
576
|
+
return this.connection.open();
|
577
|
+
}
|
578
|
+
};
|
579
|
+
|
580
|
+
return Consumer;
|
581
|
+
|
582
|
+
})();
|
583
|
+
|
584
|
+
}).call(this);
|