forked from tegioz/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatServer.js
executable file
·276 lines (231 loc) · 10.2 KB
/
chatServer.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// Author: Sergio Castaño Arteaga
// Email: [email protected]
// ***************************************************************************
// General
// ***************************************************************************
var conf = {
port: 8885,
debug: false,
dbPort: 6379,
dbHost: '127.0.0.1',
dbOptions: {},
mainroom: 'MainRoom'
};
// External dependencies
var express = require('express'),
http = require('http'),
socketio = require('socket.io'),
events = require('events'),
_ = require('underscore'),
redis = require('redis'),
sanitize = require('validator').sanitize;
// HTTP Server configuration & launch
var app = express(),
server = http.createServer(app),
io = socketio.listen(server);
server.listen(conf.port);
// Express app configuration
app.configure(function() {
app.use(express.bodyParser());
app.use(express.static(__dirname + '/static'));
});
// Socket.io store configuration
var RedisStore = require('socket.io/lib/stores/redis'),
pub = redis.createClient(conf.dbPort, conf.dbHost, conf.dbOptions),
sub = redis.createClient(conf.dbPort, conf.dbHost, conf.dbOptions),
db = redis.createClient(conf.dbPort, conf.dbHost, conf.dbOptions);
io.set('store', new RedisStore({
redisPub: pub,
redisSub: sub,
redisClient: db
}));
io.set('log level', 1);
// Logger configuration
var logger = new events.EventEmitter();
logger.on('newEvent', function(event, data) {
// Console log
console.log('%s: %s', event, JSON.stringify(data));
// Persistent log storage too?
// TODO
});
// ***************************************************************************
// Express routes helpers
// ***************************************************************************
// Only authenticated users should be able to use protected methods
var requireAuthentication = function(req, res, next) {
// TODO
next();
};
// Sanitize message to avoid security problems
var sanitizeMessage = function(req, res, next) {
if (req.body.msg) {
req.sanitizedMessage = sanitize(req.body.msg).xss();
next();
} else {
res.send(400, "No message provided");
}
};
// Send a message to all active rooms
var sendBroadcast = function(text) {
_.each(_.keys(io.sockets.manager.rooms), function(room) {
room = room.substr(1); // Forward slash before room name (socket.io)
// Don't send messages to default "" room
if (room) {
var message = {'room':room, 'username':'ServerBot', 'msg':text, 'date':new Date()};
io.sockets.in(room).emit('newMessage', message);
}
});
logger.emit('newEvent', 'newBroadcastMessage', {'msg':text});
};
// ***************************************************************************
// Express routes
// ***************************************************************************
// Welcome message
app.get('/', function(req, res) {
res.send(200, "Welcome to chat server");
});
// Broadcast message to all connected users
app.post('/api/broadcast/', requireAuthentication, sanitizeMessage, function(req, res) {
sendBroadcast(req.sanitizedMessage);
res.send(201, "Message sent to all rooms");
});
// ***************************************************************************
// Socket.io events
// ***************************************************************************
io.sockets.on('connection', function(socket) {
// Welcome message on connection
socket.emit('connected', 'Welcome to the chat server');
logger.emit('newEvent', 'userConnected', {'socket':socket.id});
// Store user data in db
db.hset([socket.id, 'connectionDate', new Date()], redis.print);
db.hset([socket.id, 'socketID', socket.id], redis.print);
//db.hset([socket.id, 'username' ], redis.print);
// Join user to 'MainRoom'
//socket.join(conf.mainroom);
//logger.emit('newEvent', 'userJoinsRoom', {'socket':socket.id, 'room':conf.mainroom});
// Confirm subscription to user
//socket.emit('subscriptionConfirmed', {'room':conf.mainroom});
// Notify subscription to all users in room
//var data = {'room':conf.mainroom, 'username':'anonymous', 'msg':'----- Joined the room -----', 'id':socket.id};
//io.sockets.in(conf.mainroom).emit('userJoinsRoom', data);
// User wants to change his nickname
/*socket.on('setNickname', function(data) {
// Store user data in db
//db.hset([socket.id, 'username', data.username], redis.print);
logger.emit('newEvent', 'userSetsNickname', {'socket':socket.id, 'newUsername':data.username});
// Notify all users who belong to the same rooms that this one
_.each(_.keys(io.sockets.manager.roomClients[socket.id]), function(room) {
room = room.substr(1); // Forward slash before room name (socket.io)
if (room) {
var info = {'room':room, 'Username':data.username, 'id':socket.id};
io.sockets.in(room).emit('userNicknameUpdated', info);
}
});
});*/
// User wants to subscribe to [data.rooms]
socket.on('subscribe', function(data) {
// Store user data in db
db.hset([socket.id, 'username', data.username], redis.print);
logger.emit('newEvent', 'userSetsNickname', {'socket':socket.id, 'newUsername':data.username});
// Notify all users who belong to the same rooms that this one
_.each(_.keys(io.sockets.manager.roomClients[socket.id]), function(room) {
room = room.substr(1); // Forward slash before room name (socket.io)
if (room) {
var info = {'room':room, 'Username':data.username, 'id':socket.id};
io.sockets.in(room).emit('userNicknameUpdated', info);
}
});
// Get user info from db
db.hget([socket.id, 'username'], function(err, username) {
// Subscribe user to chosen rooms
_.each(data.rooms, function(room) {
room = room.replace(" ","");
socket.join(room);
logger.emit('newEvent', 'userJoinsRoom', {'socket':socket.id, 'username':username, 'room':room});
// Confirm subscription to user
socket.emit('subscriptionConfirmed', {'room': room});
db.hset([socket.id, 'room', room], redis.print);
// Notify subscription to all users in room
var message = {'username':username, 'msg':'----- Joined the room -----', 'id':socket.id};
io.sockets.in(room).emit('userJoinsRoom', message);
});
});
});
// User wants to unsubscribe from [data.rooms]
socket.on('unsubscribe', function(data) {
// Get user info from db
db.hget([socket.id, 'username'], function(err, username) {
// Unsubscribe user from chosen rooms
_.each(data.rooms, function(room) {
if (room != conf.mainroom) {
socket.leave(room);
logger.emit('newEvent', 'userLeavesRoom', {'socket':socket.id, 'username':username, 'room':room});
// Confirm unsubscription to user
socket.emit('unsubscriptionConfirmed', {'room': room});
// Notify unsubscription to all users in room
var message = {'room':room, 'username':username, 'msg':'----- Left the room -----', 'id': socket.id};
io.sockets.in(room).emit('userLeavesRoom', message);
}
});
});
});
// User wants to know what rooms he has joined
socket.on('getRooms', function(data) {
socket.emit('roomsReceived', io.sockets.manager.roomClients[socket.id]);
logger.emit('newEvent', 'userGetsRooms', {'socket':socket.id});
});
// Get users in given room
socket.on('getUsersInRoom', function(data) {
var usersInRoom = [];
var socketsInRoom = io.sockets.clients(data.room);
for (var i=0; i<socketsInRoom.length; i++) {
db.hgetall(socketsInRoom[i].id, function(err, obj) {
usersInRoom.push({'room':data.room, 'username':obj.username, 'id':obj.socketID});
// When we've finished with the last one, notify user
if (usersInRoom.length == socketsInRoom.length) {
socket.emit('usersInRoom', {'users':usersInRoom});
}
});
}
});
// New message sent to group
socket.on('newMessage', function(data) {
db.hgetall(socket.id, function(err, obj) {
if (err) return logger.emit('newEvent', 'error', err);
// Check if user is subscribed to room before sending his message
if (_.has(io.sockets.manager.roomClients[socket.id], "/"+data.room)) {
var message = {'room':data.room, 'username':obj.username, 'msg':data.msg, 'date':new Date()};
// Send message to room
io.sockets.in(data.room).emit('newMessage', message);
logger.emit('newEvent', 'newMessage', message);
}
});
});
// Clean up on disconnect
socket.on('disconnect', function() {
// Get current rooms of user
var rooms = _.clone(io.sockets.manager.roomClients[socket.id]);
// Get user info from db
db.hgetall(socket.id, function(err, obj) {
if (err) return logger.emit('newEvent', 'error', err);
logger.emit('newEvent', 'userDisconnected', {'socket':socket.id, 'username':obj.username});
// Notify all users who belong to the same rooms that this one
_.each(_.keys(rooms), function(room) {
room = room.substr(1); // Forward slash before room name (socket.io)
if (room) {
var message = {'room':room, 'username':obj.username, 'msg':'----- Left the room -----', 'id':obj.socketID};
io.sockets.in(room).emit('userLeavesRoom', message);
}
});
});
// Delete user from db
db.del(socket.id, redis.print);
});
});
// Automatic message generation (for testing purposes)
if (conf.debug) {
setInterval(function() {
var text = 'Testing rooms';
sendBroadcast(text);
}, 60000);
}