-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
79 lines (66 loc) · 2.22 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
import WebSocket, { WebSocketServer } from 'ws';
import { PrismaClient } from '@prisma/client';
import { validateEvent } from 'nostr-tools';
const prisma = new PrismaClient();
const wss = new WebSocketServer({ port: 8080 });
const subscriptions = {};
wss.on('connection', ws => {
let subscriptionId;
ws.on('message', async message => {
try {
const [action, ...args] = JSON.parse(message);
switch (action) {
case 'EVENT':
const eventData = args[0];
console.log('EVENT: ', eventData);
// Validate the event before accepting it
if (!validateEvent(eventData)) {
throw new Error('Invalid event data');
}
// Store the event in the database.
await prisma.event.create({
data: {
sig: eventData.sig,
payload: eventData.content,
},
});
// Forward the event to all connected clients.
for (const subscriptionId in subscriptions) {
const client = subscriptions[subscriptionId];
if (client.readyState === WebSocket.OPEN) {
try {
client.send(message);
console.log(
`Message sent to client with subscriptionId: ${subscriptionId}`
);
} catch (err) {
console.error(
`Failed to send message to client with subscriptionId: ${subscriptionId}, error: ${err}`
);
}
}
}
break;
case 'REQ':
subscriptionId = args[0];
console.log('REQ: from ', subscriptionId);
subscriptions[subscriptionId] = ws;
break;
case 'CLOSE':
const closeSubscriptionId = args[0];
if (args[0] === subscriptionId) {
subscriptionId = null;
if (subscriptions[closeSubscriptionId]) {
delete subscriptions[closeSubscriptionId];
}
}
break;
default:
throw new Error('Unknown action');
}
} catch (err) {
console.error(`Failed to process message: ${err}`);
}
});
});
console.log('WebSocket server started on ws://localhost:8080');