-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
503 lines (432 loc) · 15.3 KB
/
index.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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
const express = require("express");
const { createServer } = require("http");
const { Server } = require("socket.io");
const { Sequelize } = require("sequelize");
const { Diff, AgentSyncState, initDatabase, AgentStatus, AgentExpression } = require("./db.js");
const onlineAgents = new Map();
async function startSocketServer() {
await initDatabase();
const app = express();
app.use(express.json());
const server = createServer(app);
const io = new Server(server, {
cors: {
origin: "*",
},
});
app.get("/", (req, res) => {
res.send("<h1>Hello world</h1>");
});
app.get("/agent", async (req, res) => {
const did = req.query.did;
try {
const { Expression } = await AgentExpression.findOne({
where: {
DID: did
}
});
if (Expression) {
return res.json({ expression: Expression })
} else {
return res.json({ expression: null })
}
} catch (e) {
console.error("Error getting agent expression:", e);
return res.json({ status: "Error" });
}
})
app.post('/agent', async (req, res) => {
try {
const did = req.body.data.did;
const expression = req.body.data.expression;
const results = await AgentExpression.upsert({
DID: did,
Expression: expression,
Timestamp: Date.now()
})
console.log("Added or Updated Agent Expression", results);
return res.json({ status: "Ok" });
} catch (e) {
console.error("Error setting agent expression:", e);
return res.json({ status: "Error" });
}
})
app.post("/currentRevision", (req, res) => {
//Fetch the agents SyncState given the DID and LinkLanguageUUID
//If there is no record, return null
//If there is a record, return timestamp
//Get did and linkLanguageUuid from posted json
const did = req.body.did;
const linkLanguageUUID = req.body.linkLanguageUUID;
AgentSyncState.findOne({
where: {
DID: did,
LinkLanguageUUID: linkLanguageUUID,
},
}).then((syncState) => {
if (syncState) {
return res.json({ currentRevision: syncState.Timestamp });
} else {
return res.json({ currentRevision: null });
}
});
});
//Returns all agents who have ever interacted in a given link language uuid
app.get("/getOthers", (req, res) => {
//Get linkLanguageUUID from query params
const linkLanguageUUID = req.query.linkLanguageUUID;
//Get all agents in the link language
//Return an array of all agents in the link language
AgentSyncState.findAll({
where: {
LinkLanguageUUID: linkLanguageUUID,
},
}).then((syncStates) => {
const others = syncStates.map((syncState) => syncState.DID);
return res.json(others);
});
});
//Sets the status for some given agent in a given link language
app.post("/setAgentStatus", async (req, res) => {
try {
//Get did and linkLanguageUuid from posted json
const did = req.body.did;
const linkLanguageUUID = req.body.linkLanguageUUID;
const status = req.body.status;
const existingRecord = await AgentStatus.findOne({
where: {
DID: did,
LinkLanguageUUID: linkLanguageUUID,
},
});
if (existingRecord) {
// Update the existing record
await existingRecord.update({
Status: status,
});
console.log("Record updated:", did, linkLanguageUUID, status);
} else {
const results = await AgentStatus.upsert({
DID: did,
LinkLanguageUUID: linkLanguageUUID,
Status: status,
});
console.log("updated agent status with result", results);
};
return res.json({ status: "Ok" });
} catch (e) {
console.error("Error setting agent status:", e);
return res.json({ status: "Error" });
}
});
//Gets the status for all agents online from Map and their saved status from the database
app.get("/getOnlineAgents", async (req, res) => {
try {
//Get linkLanguageUUID from query params
const linkLanguageUUID = req.query.linkLanguageUUID;
const requestAgentsDid = req.query.did;
//Get all agents in the link language
//Return an array of all agents in the link language
const onlineAgentsInLinkLanguage = onlineAgents.get(linkLanguageUUID);
if (!onlineAgentsInLinkLanguage) {
return res.json([]);
}
//Filter out the agent who made the request
const onlineAgentsInLinkLanguageFiltered = Array.from(onlineAgentsInLinkLanguage).filter((agent) => agent.did !== requestAgentsDid);
//For each onlineAgent, get their status or if no status have status has null
const onlineAgentsWithStatus = [];
for (const onlineAgent of onlineAgentsInLinkLanguageFiltered) {
const did = onlineAgent.did;
const agentStatus = await AgentStatus.findOne({
where: {
DID: did,
LinkLanguageUUID: linkLanguageUUID,
},
});
if (agentStatus) {
onlineAgentsWithStatus.push({
did: did,
status: agentStatus.Status,
});
} else {
onlineAgentsWithStatus.push({
did: did,
status: null,
});
}
}
//Return the array of online agents with status
return res.json(onlineAgentsWithStatus);
} catch (e) {
console.error("Error getting online agents:", e);
return res.json({ status: "Error" });
}
});
// Set up a simple timestamp function for prettier logs
const timestamp = () => `[${new Date().toISOString()}]`;
io.on("connection", function (socket) {
const did = socket.handshake.query.did;
const linkLanguageUUID = socket.handshake.query.linkLanguageUUID;
console.log(`${timestamp()} New connection: ${socket.id}; who has did: ${did}; who is connected on linkLanguageUUID: ${linkLanguageUUID}`);
// If this linkLanguageUUID is not yet in the map, add it with an empty Set
if (did && linkLanguageUUID) {
if (!onlineAgents.has(linkLanguageUUID)) {
onlineAgents.set(linkLanguageUUID, new Set());
}
// Add the DID to the Set for this linkLanguageUUID
onlineAgents.get(linkLanguageUUID).add({did, socketId: socket.id});
}
socket.on("disconnect", (reason) => {
console.log(
`${timestamp()} Socket ${socket.id}; (${did}), (${linkLanguageUUID}); disconnected. Reason: ${reason}`
);
if (did && linkLanguageUUID) {
// Remove the DID from the Set
onlineAgents.get(linkLanguageUUID)?.delete({did, socketId: socket.id});
// Optionally, if the Set is now empty, you can delete the linkLanguageUUID key from the map
if (onlineAgents.get(linkLanguageUUID)?.size === 0) {
onlineAgents.delete(linkLanguageUUID);
}
}
});
socket.on("error", (error) => {
console.error(`${timestamp()} Error on socket ${socket.id}: `, error);
});
// Join a specific room (Subscribe to a unique ID)
socket.on("join-room", function (roomId) {
socket.join(roomId);
console.log(`Socket ${socket.id} joined room ${roomId}`);
});
// Leave a specific room (Unsubscribe from a unique ID)
socket.on("leave-room", function (roomId) {
socket.leave(roomId);
console.log(`Socket ${socket.id} left room ${roomId}`);
});
// Broadcast a message to a specific room (unique ID)
socket.on("broadcast", function ({ roomId, signal }) {
console.log(`Broadcasting to room ${roomId}: ${signal}`);
io.to(roomId).emit("signal", signal);
});
// Telepresence handler for sending a signal to a remote agent by did & link language
socket.on("send-signal", async ({ remoteAgentDid, linkLanguageUUID, payload }, cb) => {
try {
//Get socket id for remote agent given the linkLanguageUUID
const onlineAgentsInLinkLanguage = onlineAgents.get(linkLanguageUUID);
//For the given set find the object which contains the remoteAgentDid
const remoteAgent = Array.from(onlineAgentsInLinkLanguage).find((agent) => agent.did === remoteAgentDid);
if (!remoteAgent) {
return cb("Remote agent not found", null);
}
//Get the socket id for the remote agent
const remoteAgentSocketId = remoteAgent.socketId;
//Send signal to remote agent
io.to(remoteAgentSocketId).emit("telepresence-signal", payload);
//Notify the client of the successful update using the callback
cb(null, {
status: "Ok",
});
} catch (e) {
console.error("Error sending signal:", e);
cb(e, null);
}
});
// Telepresence handler for sending a broadcast to all agents in a link language
socket.on("send-broadcast", async ({linkLanguageUUID, payload}, cb) => {
try {
//Get all agents in the link language
const onlineAgentsInLinkLanguage = onlineAgents.get(linkLanguageUUID);
//For each online agent, send the broadcast
for (const onlineAgent of onlineAgentsInLinkLanguage) {
const remoteAgentSocketId = onlineAgent.socketId;
io.to(remoteAgentSocketId).emit("telepresence-signal", payload);
};
//Notify the client of the successful update using the callback
cb(null, {
status: "Ok",
});
} catch (e) {
console.error("Error sending broadcast:", e);
cb(e, null);
}
});
//Allows for the client to tell the server that it received some data; and it can update its sync state to a given timestamp
socket.on(
"update-sync-state",
async ({ did, date, linkLanguageUUID }, cb) => {
try {
const existingRecord = await AgentSyncState.findOne({
where: {
DID: did,
LinkLanguageUUID: linkLanguageUUID,
},
});
if (existingRecord) {
// Update the existing record
await existingRecord.update({
Timestamp: date,
});
console.log("Record updated:", did, linkLanguageUUID, date);
} else {
const results = await AgentSyncState.upsert(
{ DID: did, LinkLanguageUUID: linkLanguageUUID, Timestamp: date },
{
fields: ["DID", "LinkLanguageUUID", "Timestamp"],
}
);
console.log("updated sync state with result", results);
}
cb(null, {
status: "Ok",
});
} catch (error) {
cb(error, null);
}
}
);
//Allows the client to save a commit to the server; and have that commit be signaled to all agents in the room
socket.on(
"commit",
async ({ additions, removals, linkLanguageUUID, did }, cb) => {
let serverRecordTimestamp = new Date();
try {
const results = await Diff.create({
LinkLanguageUUID: linkLanguageUUID,
DID: did,
Diff: {
additions: JSON.stringify(additions),
removals: JSON.stringify(removals),
},
ServerRecordTimestamp: serverRecordTimestamp,
});
let onlineAgentsInLinkLanguage = onlineAgents.get(linkLanguageUUID);
if (!onlineAgentsInLinkLanguage) {
onlineAgentsInLinkLanguageFiltered = [];
}
//For each online agent, send the broadcast
for (const onlineAgent of Array.from(onlineAgentsInLinkLanguage)) {
if (onlineAgent.did !== did) {
//Send a signal to all agents online in the link language with the commit data
io.to(onlineAgent.socketId).emit("signal-emit", {
payload: {
additions,
removals,
},
serverRecordTimestamp,
});
}
};
// //Send a signal to all agents online in the link language with the commit data
// io.to(linkLanguageUUID).emit("signal-emit", {
// payload: {
// additions,
// removals,
// },
// serverRecordTimestamp,
// });
// Notify the client of the successful update using the callback
cb(null, {
status: "Ok",
payload: {
additions,
removals,
},
serverRecordTimestamp,
});
} catch (error) {
console.error("Error updating diff records:", error);
// Notify the client of the error using the callback
cb(error, null);
}
}
);
//Allows an agent to sync the links since the last timestamp where they received links from
socket.on("sync", async ({ linkLanguageUUID, did, timestamp }, cb) => {
try {
// If timestamp is not provided, retrieve it from AgentSyncState
if (!timestamp) {
const agentSyncStateResult = await AgentSyncState.findAll({
where: {
DID: did,
LinkLanguageUUID: linkLanguageUUID,
},
});
timestamp = agentSyncStateResult[0]?.Timestamp;
}
if (!timestamp) {
timestamp = 0;
};
// Retrieve records from Links
const results = await Diff.findAll({
where: {
LinkLanguageUUID: linkLanguageUUID,
ServerRecordTimestamp: {
[Sequelize.Op.gt]: timestamp,
},
},
order: [["ServerRecordTimestamp", "DESC"]],
});
const value = {
additions: [],
removals: [],
};
for (const result of results) {
value.additions.push(...JSON.parse(result.Diff.additions));
value.removals.push(...JSON.parse(result.Diff.removals));
}
let serverRecordTimestamp;
if (results.length > 0) {
serverRecordTimestamp = results[0]?.ServerRecordTimestamp;
} else {
serverRecordTimestamp = new Date();
}
cb(null, {
status: "Ok",
payload: value,
serverRecordTimestamp,
});
} catch (error) {
console.error("Error on sync:", error);
cb(error, null);
}
});
socket.on("render", async ({ linkLanguageUUID }, cb) => {
try {
const results = await Diff.findAll({
where: {
LinkLanguageUUID: linkLanguageUUID,
},
});
const value = {
additions: [],
removals: [],
};
for (const result of results) {
value.additions.push(...JSON.parse(result.Diff.additions));
value.removals.push(...JSON.parse(result.Diff.removals));
}
let serverRecordTimestamp;
if (results.length > 0) {
serverRecordTimestamp = results[0]?.ServerRecordTimestamp;
} else {
serverRecordTimestamp = null;
}
cb(null, {
status: "Ok",
payload: value,
serverRecordTimestamp,
});
} catch (error) {
console.error("Error on render:", error);
cb(error, null);
}
});
});
server.listen(3000, () => {
console.log("server running at http://localhost:3000");
});
return io;
}
module.exports = startSocketServer;
if (require.main === module) {
startSocketServer();
}