-
Notifications
You must be signed in to change notification settings - Fork 613
/
signalling-server.js
104 lines (83 loc) · 2.74 KB
/
signalling-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
/**
* A simple signalling server implementation using socket.io.
* This socket connection is used a signalling server as WebRTC does not support discovery of other peers.
* User's audio, video or chat messages does not use this socket.
*/
const channels = {};
const sockets = {};
const peers = {};
const signallingServer = (socket) => {
const clientAddress = socket.handshake.address;
socket.channels = {};
sockets[socket.id] = socket;
console.log("[" + socket.id + "] connection accepted");
socket.on("disconnect", () => {
for (const channel in socket.channels) {
part(channel);
}
console.log("[" + socket.id + "] disconnected");
delete sockets[socket.id];
});
socket.on("join", (config) => {
console.log("[" + socket.id + "] joined. Channel: ", config.channel);
const channel = config.channel;
// Already Joined
if (channel in socket.channels) return;
if (!(channel in channels)) channels[channel] = {};
if (!(channel in peers)) peers[channel] = {};
peers[channel][socket.id] = { userData: config.userData };
for (const id in channels[channel]) {
channels[channel][id].emit("addPeer", {
peer_id: socket.id,
should_create_offer: false,
channel: peers[channel],
});
socket.emit("addPeer", { peer_id: id, should_create_offer: true, channel: peers[channel] });
}
channels[channel][socket.id] = socket;
socket.channels[channel] = channel;
});
socket.on("updateUserData", async (config) => {
const channel = clientAddress + config.channel;
const key = config.key;
const value = config.value;
for (let id in peers[channel]) {
if (id == socket.id) {
peers[channel][id]["userData"][key] = value;
}
}
});
const part = (channel) => {
// Socket not in channel
if (!(channel in socket.channels)) return;
delete socket.channels[channel];
delete channels[channel][socket.id];
delete peers[channel][socket.id];
if (Object.keys(peers[channel]).length == 0) {
// last peer disconnected from the channel
delete peers[channel];
}
for (const id in channels[channel]) {
channels[channel][id].emit("removePeer", { peer_id: socket.id });
socket.emit("removePeer", { peer_id: id });
}
};
socket.on("relayICECandidate", (config) => {
let peer_id = config.peer_id;
let ice_candidate = config.ice_candidate;
if (peer_id in sockets) {
sockets[peer_id].emit("iceCandidate", { peer_id: socket.id, ice_candidate: ice_candidate });
}
});
socket.on("relaySessionDescription", (config) => {
let peer_id = config.peer_id;
let session_description = config.session_description;
if (peer_id in sockets) {
sockets[peer_id].emit("sessionDescription", {
peer_id: socket.id,
session_description: session_description,
});
}
});
};
module.exports = signallingServer;