-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
66 lines (40 loc) · 1.22 KB
/
app.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
const http=require('http');
const express=require('express');
const {Server}=require('socket.io');
const app=express();
const users={};
const server=http.createServer(app);
//!static folder
app.use(express.static('public'));
const io= new Server(server);
server.listen(3000,()=>{
console.log('RUN SERVER');
})
// io.use((socket,next)=>{
// if(socket.handshake.auth.token == 12345) next();
// else console.log('user it not login');
// })
const chatNamespase = io.of('/chat');
chatNamespase.on('connection',(socket)=>{
socket.on('login',(data)=>{
socket.join(data.rumnum);
users[socket.id]={
nikname:data.nikname,
rumnum:data.rumnum
};
chatNamespase.emit('online',users);
})
socket.on('disconnect',()=>{
delete users[socket.id];
chatNamespase.emit('online',users);
});
socket.on('inputemessage',(data)=>{
chatNamespase.to(data.rumnum).emit('chatmessage',{data : data,id:socket.id,user:users});
})
socket.on('typing',(data)=>{
socket.broadcast.in(data.rumnum).emit('typ',data);
})
socket.on('pvchat',(data)=>{
chatNamespase.to(data.to).emit('pvchat',data)
})
})