-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
88 lines (84 loc) · 2.67 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
80
81
82
83
84
85
86
87
88
const path = require('path')
const http = require('http')
const Koa = require('koa')
const serve = require('koa-static')
const socketIO = require('socket.io')
const hostname = '127.0.0.1'
const port = 3000
const publicPath = path.join(__dirname, 'docs')
// 1.使用socket.io配合koa启动带有websocket的服务
// 创建Koa实例
const app = new Koa()
// 创建http server实例
const server = http.createServer(app.callback())
// 创建socket.io实例
// @ts-ignore
const io = socketIO(server)
// 2.进行登录认证
// 向socket.io实例添加一个中间件 判定用户名是否传入 密码是否为xxx
// 这是一个为了简单起见的设计 实际项目中切忌(密码不可能用明文传输啊!)
io.use((socket, next) => {
const { name,password } = socket.handshake.query
if(!name) {
return next(new Error('INVALID_USERNAME'))
}
if(password !== '123456') {
return next(new Error('INVALID_PASSWORD'))
}
next()
});
// 存储所有在线用户
const users = new Map()
// 存储所有历史消息
const history = []
io.on('connection', (socket) => {
// 3.用户登入
// 监听connection事件处理连入请求
// 保存连入用户信息
// 广播在线用户列表
// 客户端连入
const name = socket.handshake.query.name;// 记录用户
users.set(name, socket)
console.log(`${name} connected`);
// 通知所有客户端更新聊天列表
io.sockets.emit('online', [...users.keys()])
// 4.(广播)发送用户消息
// 监听sendMessage事件处理用户消息
// 将用户消息保存起来
// 广播用户消息
socket.on('sendMessage', (content) => {
console.log(`${name} send a message:${content}`);
// 每发送一条消息,message对象都会广播给所有登录的用户
const message = {
time: Date.now(),
sender: name,
isMsgMe: false,// 判断某一条信息是不是自己发的
content: content,
}
history.push(message)
io.sockets.emit('receiveMessage', message)
})
// 5.用户离线
// 监听disconnect事件处理连接断开
// 将用户从在线列表中删除
// 广播在线用户列表
socket.on('disconnect', (reason) => {
console.log(`${name} disconnected, reason:${reason}`);
users.delete(name)
// 通知所有客户端更新聊天列表
io.sockets.emit('online', [users.keys()])
})
})
// 静态资源路由
app.use(serve(publicPath))
// 6.在用户登录时展示出历史聊天记录~
// 获取所有历史记录的HTTP接口——挂一个Koa中间件上去
app.use((ctx) => {
if(ctx.request.path === '/history') {
// 处理指向/history的请求 直接返回所有历史消息
ctx.body = history
}
})
server.listen(port, hostname, () => {
console.log(`server running at http://${hostname}:${port}`);
});