forked from m1k1o/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
executable file
·105 lines (84 loc) · 2.19 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const express = require('express')
const app = express()
const path = require('path')
const html = path.join(__dirname, '/html');
app.use(express.static(html))
const port = process.argv[2] || 8090;
const http = require("http").Server(app)
const io = require("socket.io")(http);
http.listen(port, function () {
console.log("Starting server on port %s", port);
});
const users = [];
let msg_id = 1;
io.sockets.on("connection", function(socket) {
console.log("New connection!");
var nick = null;
socket.on("login", function(data) {
// Security checks
data.nick = data.nick.trim();
// If is empty
if(data.nick == ""){
socket.emit("force-login", "Nick can't be empty.");
nick = null;
return ;
}
// If is already in
if(users.indexOf(data.nick) != -1){
socket.emit("force-login", "This nick is already in chat.");
nick = null;
return ;
}
// Save nick
nick = data.nick;
users.push(data.nick);
console.log("User %s joined.", nick.replace(/(<([^>]+)>)/ig,""));
socket.join("main");
// Tell everyone, that user joined
io.to("main").emit("ue", {
"nick": nick
});
// Tell this user who is already in
socket.emit("start", {
"users": users
});
});
socket.on("send-msg", function(data){
// If is logged in
if(nick == null){
socket.emit("force-login", "You need to be logged in to send message.");
return ;
}
// Send everyone message
io.to("main").emit("new-msg", {
"f": nick,
"m": data.m,
"id": "msg_"+(msg_id++)
});
console.log("User %s sent message.", nick.replace(/(<([^>]+)>)/ig,""));
});
socket.on("typing", function(typing){
// Only logged in users
if(nick != null){
socket.broadcast.to("main").emit("typing", {
status: typing,
nick: nick
});
console.log("%s %s typing.", nick.replace(/(<([^>]+)>)/ig,""), typing ? "is" : "is not");
}
});
socket.on("disconnect", function() {
console.log("Got disconnect!");
if(nick != null){
// Remove user from users
users.splice(users.indexOf(nick), 1);
// Tell everyone user left
io.to("main").emit("ul", {
"nick": nick
});
console.log("User %s left.", nick.replace(/(<([^>]+)>)/ig,""));
socket.leave("main");
nick = null;
}
});
});