-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashsocket.js
454 lines (401 loc) · 11.2 KB
/
dashsocket.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
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
(function (exports) {
"use strict";
let Ws = {};
exports.DashSocket = Ws;
exports.DashSightWs = Ws; // deprecated
/**
* @typedef WsOpts
* @prop {String} [baseUrl] - (deprecated by dashsocketBaseUrl) ex: https://insight.dash.org
* @prop {CookieStore} cookieStore - only needed for insight APIs hosted behind an AWS load balancer
* @prop {Boolean} debug
* @prop {Function} onClose
* @prop {Function} onError
* @prop {Function} onMessage
* @prop {String} dashsocketBaseUrl - ex: https://insight.dash.org/socket.io
*/
/**
* @param {WsOpts} opts
*/
Ws.create = function ({
baseUrl,
dashsocketBaseUrl,
cookieStore = null,
debug,
onClose,
onError,
onMessage,
}) {
let wsc = {};
let Eio3 = {};
if (!dashsocketBaseUrl) {
dashsocketBaseUrl = `${baseUrl}/socket.io`;
}
if (dashsocketBaseUrl.endsWith("/")) {
dashsocketBaseUrl = dashsocketBaseUrl.slice(
0,
dashsocketBaseUrl.length - 1,
);
}
// Get `sid` (session id) and ping/pong params
Eio3.connect = async function () {
let now = Date.now();
let sidUrl = `${dashsocketBaseUrl}/?EIO=3&transport=polling&t=${now}`;
let sidResp = await window.fetch(sidUrl, {
mode: "cors",
credentials: "include",
});
if (!sidResp.ok) {
let err = new Error("bad response");
// TODO make error type consistent between browser and node?
err.response = sidResp;
throw err;
}
// ex: `97:0{"sid":"xxxx",...}`
let msg = await sidResp.text();
let session = parseSession(msg);
return session;
};
/**
* @param {String} sid
* @param {String} eventname
* @returns "ok"
* @throws
*/
Eio3.subscribe = async function (sid, eventname) {
let now = Date.now();
let subUrl = `${dashsocketBaseUrl}/?EIO=3&transport=polling&t=${now}&sid=${sid}`;
let body = stringifySub(eventname);
let subResp = await window.fetch(subUrl, {
method: "POST",
mode: "cors",
credentials: "include",
headers: {
"Content-Type": "text/plain;charset=UTF-8",
},
body: body,
});
if (!subResp.ok) {
let err = new Error("bad response");
// TODO make error type consistent between browser and node?
err.response = subResp;
throw err;
}
return await subResp.text();
};
/*
Eio3.poll = async function (sid) {
let now = Date.now();
let pollUrl = `${dashsocketBaseUrl}/?EIO=3&transport=polling&t=${now}&sid=${sid}`;
let cookies = await cookieStore.get(pollUrl);
let pollResp = await request({
//agent: httpAgent,
method: "GET",
url: pollUrl,
headers: Object.assign(
{
Cookie: cookies,
},
defaultHeaders,
),
});
if (!pollResp.ok) {
console.error(pollResp.toJSON());
throw new Error("bad response");
}
await cookieStore.set(pollUrl, pollResp);
return pollResp.body;
};
*/
/**
* @param {String} sid - session id (associated with AWS ALB cookie)
*/
Eio3.connectWs = async function (sid) {
let dashsocketBaseUrlPart = dashsocketBaseUrl.slice(4); // trim leading 'http'
let url = `ws${dashsocketBaseUrlPart}/?EIO=3&transport=websocket&sid=${sid}`;
let ws = new WebSocket(url, []);
let promise = new Promise(function (resolve) {
ws.onopen = function () {
ws.onopen = null;
if (debug) {
console.debug("=> Socket.io Hello ('2probe')");
}
ws.send("2probe");
};
ws.onerror = function (err) {
ws.onerror = null;
if (onError) {
onError(err);
} else {
console.error("WebSocket Error:");
console.error(err);
}
};
ws.onmessage = function (ev) {
let data = ev.data;
ws.onmessage = null;
if ("3probe" === data.toString()) {
if (debug) {
console.debug("<= Socket.io Welcome ('3probe')");
}
ws.send("5"); // no idea, but necessary
if (debug) {
console.debug("=> Socket.io ACK? ('5')");
}
} else {
console.error("Unrecognized WebSocket Hello:");
console.error(data.toString());
// reject()
// TODO surface to the user
window.alert("unrecoverable error. check the console for details");
}
resolve(ws);
};
});
return await promise;
};
/** @type import('ws')? */
wsc._ws = null;
wsc.init = async function () {
let session = await Eio3.connect();
if (debug) {
console.debug("Socket.io Session:");
console.debug(session);
console.debug();
}
let sub = await Eio3.subscribe(session.sid, "inv");
if (debug) {
console.debug("Socket.io Subscription:");
console.debug(sub);
console.debug();
}
/*
let poll = await Eio3.poll(session.sid);
if (debug) {
console.debug("Socket.io Confirm:");
console.debug(poll);
console.debug();
}
*/
let pingTimeout;
let ws = await Eio3.connectWs(session.sid);
wsc._ws = ws;
ws._pingTimeout = null;
setPing();
ws.addEventListener("message", _onMessage);
ws.onclose = _onClose;
function setPing() {
ws._pingTimeout = setTimeout(function () {
//ws.ping(); // standard
ws.send("2"); // socket.io
if (debug) {
console.debug("=> Socket.io Ping");
}
}, session.pingInterval);
}
/**
* See https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/message_event
* @typedef {Object} WsEvent
* @prop {any} data
*/
/**
* @param {WsEvent} ev
*/
function _onMessage(ev) {
let msg = ev.data;
if ("3" === msg) {
if (debug) {
console.debug("<= Socket.io Pong");
console.debug();
}
setPing();
return;
}
if ("42" !== msg.slice(0, 2)) {
console.warn("Unknown message:");
console.warn(msg);
return;
}
/** @type {InsightPush} */
let [evname, data] = JSON.parse(msg.slice(2));
if (onMessage) {
onMessage(evname, data);
}
switch (evname) {
case "tx":
/* falls through */
case "txlock":
/* falls through */
case "block":
/* falls through */
default:
// TODO put check function here
if (debug) {
console.debug(`Received '${evname}':`);
console.debug(data);
console.debug();
}
}
}
function _onClose() {
ws.onclose = null;
ws.removeEventListener("message", _onMessage);
clearTimeout(ws._pingTimeout);
if (debug) {
console.debug("WebSocket Close");
}
if (onClose) {
onClose();
}
}
};
wsc.close = function () {
wsc._ws?.close();
};
return wsc;
};
/**
* TODO share with node version
* @param {String} msg
* @returns {SocketIoHello}
*/
function parseSession(msg) {
let colonIndex = msg.indexOf(":");
// 0 is CONNECT, which will always follow our first message
let start = colonIndex + ":0".length;
let len = parseInt(msg.slice(0, colonIndex), 10);
let json = msg.slice(start, start + (len - 1));
//console.log("Socket.io Connect:");
//console.log(msg);
//console.log(json);
// @type {SocketIoHello}
let session = JSON.parse(json);
return session;
}
/**
* TODO share with node version
* @param {String} msg
* @returns {String}
*/
function stringifySub(eventname) {
let sub = JSON.stringify(["subscribe", eventname]);
// not really sure what this is, couldn't find documentation for it
let typ = 422; // 4 = MESSAGE, 2 = EVENT, 2 = ???
let msg = `${typ}${sub}`;
let len = msg.length;
let body = `${len}:${msg}`;
return body;
}
/**
* @callback Finder
* @param {String} evname
* @param {InsightSocketEventData} data
*/
/**
* @param {String} dashsocketBaseUrl
* @param {Finder} find
* @param {Partial<WsOpts>} [opts]
*/
Ws.listen = async function (dashsocketBaseUrl, find, opts) {
if ("https://insight.dash.org" === dashsocketBaseUrl) {
dashsocketBaseUrl = "https://insight.dash.org/socket.io";
}
let ws;
let p = new Promise(async function (resolve, reject) {
//@ts-ignore
ws = Ws.create(
Object.assign({}, opts, {
dashsocketBaseUrl: dashsocketBaseUrl,
cookieStore: null,
debug: opts?.debug,
onClose: resolve,
onError: reject,
/** @type Finder */
onMessage: async function (evname, data) {
let result;
try {
result = await find(evname, data);
} catch (e) {
reject(e);
return;
}
if (result) {
resolve(result);
}
},
}),
);
await ws.init().catch(reject);
});
let result = await p;
//@ts-ignore
ws.close();
return result;
};
// TODO waitForVouts(baseUrl, [{ address, satoshis }])
/**
* @param {String} dashsocketBaseUrl
* @param {String} addr
* @param {Number} [amount]
* @param {Number} [maxTxLockWait]
* @param {WsOpts} [opts]
* @returns {Promise<SocketPayment>}
*/
Ws.waitForVout = async function (
dashsocketBaseUrl,
addr,
amount = 0,
maxTxLockWait = 3000,
opts = {},
) {
if ("https://insight.dash.org" === dashsocketBaseUrl) {
dashsocketBaseUrl = "https://insight.dash.org/socket.io";
}
// Listen for Response
/** @type SocketPayment */
let mempoolTx;
return await Ws.listen(dashsocketBaseUrl, findResponse, opts);
/**
* @param {String} evname
* @param {InsightSocketEventData} data
*/
function findResponse(evname, data) {
if (!["tx", "txlock"].includes(evname)) {
return;
}
let now = Date.now();
if (mempoolTx?.timestamp) {
// don't wait longer than 3s for a txlock
if (now - mempoolTx.timestamp > maxTxLockWait) {
return mempoolTx;
}
}
let result;
// TODO should fetch tx and match hotwallet as vin
data.vout.some(function (vout) {
if (!(addr in vout)) {
return false;
}
let duffs = vout[addr];
if (amount && duffs !== amount) {
return false;
}
let newTx = {
address: addr,
timestamp: now,
txid: data.txid,
satoshis: duffs,
txlock: data.txlock,
};
if ("txlock" !== evname) {
if (!mempoolTx) {
mempoolTx = newTx;
}
return false;
}
result = newTx;
return true;
});
return result;
}
};
})(("undefined" !== typeof module && module.exports) || window);