-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
445 lines (405 loc) · 11.7 KB
/
server.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
const {
isObject,
isString,
loadJson,
saveState,
loadState,
sortKeys,
blockCmp,
} = require("./utils");
const bounds = require("binary-search-bounds");
const cors = require("@koa/cors");
const Koa = require("koa");
const app = new Koa();
app.proxy = true;
const Router = require("koa-router");
const router = new Router();
const logger = require("koa-logger");
const bodyParser = require("koa-bodyparser");
const Receipts = require("./receipts");
const {
buildIndex,
recursiveSet,
mergeData,
recursiveGet,
recursiveCleanup,
recursiveKeys,
getInnerMap,
buildIndexForBlock,
KeysReturnType,
} = require("./social");
const StateFilename = "res/state.json";
const NewStateFilename = "res/state_v2.json";
const SnapshotFilename = "res/snapshot.json";
const Order = {
desc: "desc",
asc: "asc",
};
let blockTimestamps = {};
const runServer = async () => {
console.log("Loading state...");
const state = (await loadState(NewStateFilename, true)) ||
loadJson(StateFilename, true) ||
loadJson(SnapshotFilename, true) || {
data: {},
};
blockTimestamps = state.blockTimes = state.blockTimes || {};
console.log("accounts", Object.keys(state.data).length);
console.log("blockTimestamps", Object.keys(state.blockTimes).length);
const indexObj = {};
console.log("Building index...");
buildIndex(state.data, indexObj);
const oneBlockCache = new Map();
const receiptFetcher = await Receipts.init(state?.lastReceipt);
const addData = (data, blockHeight) => {
recursiveSet(state.data, data, blockHeight);
buildIndexForBlock(data, indexObj, blockHeight);
};
const applyReceipts = (receipts) => {
if (receipts.length === 0) {
return;
}
let aggregatedData = {};
let blockHeight = 0;
receipts.forEach((receipt) => {
let receiptBlockHeight = parseInt(receipt.block_height);
state.blockTimes[receiptBlockHeight] = Math.round(
parseFloat(receipt.block_timestamp) / 1e6
);
if (receiptBlockHeight > blockHeight) {
if (blockHeight) {
addData(aggregatedData, blockHeight);
aggregatedData = {};
}
blockHeight = receiptBlockHeight;
}
mergeData(aggregatedData, receipt.args.data);
});
addData(aggregatedData, blockHeight);
};
const fetchAllReceipts = async () => {
const allReceipts = [];
while (true) {
const receipts = await receiptFetcher.fetchReceipts();
if (receipts.length === 0) {
break;
}
allReceipts.push(...receipts);
}
return allReceipts;
};
const fetchAndApply = async () => {
const newReceipts = await fetchAllReceipts();
if (newReceipts.length) {
console.log(`Fetched ${newReceipts.length} receipts.`);
applyReceipts(newReceipts);
oneBlockCache.forEach((value) => value.clear());
oneBlockCache.clear();
}
state.lastReceipt = receiptFetcher.lastReceipt;
};
console.log("Catching up...");
await fetchAndApply();
saveState(state, NewStateFilename);
const scheduleUpdate = (delay) =>
setTimeout(async () => {
await fetchAndApply();
scheduleUpdate(250);
}, delay);
const keyToPath = (key) => {
if (!isString(key)) {
throw new Error("key is not a string");
}
if (key.endsWith("//")) {
return null;
}
const path = key.split("/");
if (path?.[path.length - 1] === "") {
path.pop();
}
if (path.length === 0) {
throw new Error("key is empty");
}
return path;
};
const stateGet = (keys, b, o) => {
if (!Array.isArray(keys)) {
throw new Error("keys is not an array");
}
b = b !== null && b !== undefined ? parseInt(b) : undefined;
const res = {};
keys.forEach((key) => {
const path = keyToPath(key);
if (path === null) {
return;
}
recursiveGet(res, state.data, b, path, b, {
withBlockHeight: o?.with_block_height ?? o?.withBlockHeight,
withTimestamp: o?.with_timestamp ?? o?.withTimestamp,
returnDeleted: o?.return_deleted ?? o?.returnDeleted,
});
});
return recursiveCleanup(res) || {};
};
const stateKeys = (keys, b, o) => {
if (!Array.isArray(keys)) {
throw new Error("keys is not an array");
}
b = b !== null && b !== undefined ? parseInt(b) : undefined;
const res = {};
keys.forEach((key) => {
const path = keyToPath(key);
if (path === null) {
return;
}
recursiveKeys(res, state.data, path, b, {
returnType:
o?.return_type in KeysReturnType
? o.return_type
: KeysReturnType.True,
returnDeleted: o?.return_deleted ?? o?.returnDeleted,
valuesOnly: o?.values_only ?? o?.valuesOnly,
});
});
return recursiveCleanup(res) || {};
};
const stateIndex = (key, action, options) => {
sortKeys(key);
const indexKey = JSON.stringify({
k: key,
a: action,
});
let values = indexObj[indexKey];
if (!values) {
return [];
}
const accountId = options.accountId;
const accounts = isString(accountId)
? { [accountId]: true }
: Array.isArray(accountId)
? accountId.reduce((acc, a) => {
acc[a] = true;
return acc;
}, {})
: null;
const limit = options.limit || values.length;
if (limit <= 0) {
return [];
}
const result = [];
if (options.order === Order.desc) {
const from = options.from
? bounds.le(values, { b: options.from }, blockCmp)
: values.length - 1;
for (let i = from; i >= 0; i--) {
const v = values[i];
if (result.length >= limit && v.b !== result[result.length - 1]?.b) {
break;
}
if (!accounts || v.a in accounts) {
result.push(v);
}
}
} else {
// Order.asc
const from = options.from
? bounds.lt(values, { b: options.from }, blockCmp) + 1
: 0;
// Copy for performance reasons
for (let i = from; i < values.length; i++) {
const v = values[i];
if (result.length >= limit && v.b !== result[result.length - 1]?.b) {
break;
}
if (!accounts || v.a in accounts) {
result.push(v);
}
}
}
return result.map((v) => ({
accountId: v.a,
blockHeight: v.b,
value: v.v,
}));
};
const stateTime = (blockHeight) => {
return Array.isArray(blockHeight)
? blockHeight.map((bh) => blockTimestamps[parseInt(bh)] ?? null)
: blockTimestamps[parseInt(blockHeight)] ?? null;
};
scheduleUpdate(1);
// Save state once a minute
setInterval(() => {
saveState(state, NewStateFilename);
}, 60000);
const cachedJsonResult = (fn, ...args) => {
const innerMap = getInnerMap(oneBlockCache, fn);
const key = JSON.stringify(args);
if (innerMap.has(key)) {
return innerMap.get(key);
}
const result = JSON.stringify(fn(...args));
innerMap.set(key, result);
return result;
};
router.post("/get", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.body;
const keys = body.keys;
if (!keys) {
throw new Error(`Missing keys`);
}
const blockHeight = body.blockHeight;
const options = body.options;
console.log("POST /get", keys, blockHeight, options);
ctx.body = cachedJsonResult(stateGet, keys, blockHeight, options);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
router.get("/get", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.query;
let keys = body.keys;
if (!keys) {
throw new Error(`Missing keys`);
}
if (typeof keys === "string") {
keys = [keys];
}
const blockHeight = body.blockHeight;
const options = {};
console.log("GET /get", keys, blockHeight, options);
ctx.body = cachedJsonResult(stateGet, keys, blockHeight, options);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
router.post("/keys", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.body;
const keys = body.keys;
if (!keys) {
throw new Error(`Missing keys`);
}
const blockHeight = body.blockHeight;
const options = body.options;
console.log("POST /keys", keys, blockHeight, options);
ctx.body = cachedJsonResult(stateKeys, keys, blockHeight, options);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
router.get("/keys", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.query;
let keys = body.keys;
if (!keys) {
throw new Error(`Missing keys`);
}
if (typeof keys === "string") {
keys = [keys];
}
const blockHeight = body.blockHeight;
const options = {};
console.log("GET /keys", keys, blockHeight, options);
ctx.body = cachedJsonResult(stateKeys, keys, blockHeight, options);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
router.post("/index", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.body;
const key = body.key;
const action = body.action;
if (!key || !action) {
throw new Error(`"key" and "action" are required`);
}
const options = body.options || {};
if (!isObject(options)) {
throw new Error(`"options" is not an object`);
}
if (body.accountId) {
options.accountId = options.accountId ?? body.accountId;
}
console.log("POST /index", key, action, options);
ctx.body = cachedJsonResult(stateIndex, key, action, options);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
router.get("/index", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.query;
const key = body.key;
const action = body.action;
if (!key || !action) {
throw new Error(`"key" and "action" are required`);
}
const options = body.options || {};
if (!isObject(options)) {
throw new Error(`"options" is not an object`);
}
if (body.accountId) {
options.accountId = options.accountId ?? body.accountId;
}
console.log("GET /index", key, action, options);
ctx.body = cachedJsonResult(stateIndex, key, action, options);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
router.get("/time", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.query;
const blockHeight = body.blockHeight;
if (!blockHeight) {
throw new Error(`"blockHeight" is required`);
}
console.log("GET /time", blockHeight);
ctx.body = cachedJsonResult(stateTime, blockHeight);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
router.post("/time", (ctx) => {
ctx.type = "application/json; charset=utf-8";
try {
const body = ctx.request.body;
const blockHeight = body.blockHeight;
if (!blockHeight) {
throw new Error(`"blockHeight" is required`);
}
console.log("POST /time", blockHeight);
ctx.body = cachedJsonResult(stateTime, blockHeight);
} catch (e) {
ctx.status = 400;
ctx.body = `${e}`;
}
});
app
.use(logger("combined"))
.use(cors())
.use(bodyParser())
.use(router.routes())
.use(router.allowedMethods());
const PORT = process.env.PORT || 3000;
app.listen(PORT);
console.log("Listening on http://localhost:%d/", PORT);
};
module.exports = runServer;