-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
56 lines (44 loc) · 1.28 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
const app = require('express')();
const server = require('http').createServer(app);
const cors = require('cors');
const io = require('socket.io')(server, {
cors: {
origin: '*',
methods: ['GET', 'POST'],
},
});
app.use(cors());
const PORT = process.env.PORT || 5000;
app.get('/', (req, res) => {
res.send('Server is running.');
});
io.on('connection', (socket) => {
socket.emit('me', socket.id);
socket.on('callUser', ({ userToCall, signalData, from, name }) => {
io.to(userToCall).emit('callUser', {
signal: signalData,
from,
name,
});
});
socket.on('updateMyMedia', ({ type, currentMediaStatus }) => {
socket.broadcast.emit('updateUserMedia', { type, currentMediaStatus });
});
socket.on('msgUser', ({ name, to, msg, sender }) => {
io.to(to).emit('msgRcv', { name, msg, sender });
});
socket.on('answerCall', (data) => {
socket.broadcast.emit('updateUserMedia', {
type: data.type,
currentMediaStatus: data.myMediaStatus,
});
io.to(data.to).emit('callAccepted', data);
});
socket.on('declineCall', ({ id }) => {
io.to(id).emit('declineCall');
});
socket.on('endCall', ({ id }) => {
io.to(id).emit('endCall');
});
});
server.listen(PORT, () => console.log(`Server is running on port ${PORT}.`));