2014-09-25 10:27:33 -04:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
2014-09-18 12:21:07 -04:00
|
|
|
var express = require('express.io'),
|
|
|
|
|
2014-09-22 16:11:13 -04:00
|
|
|
app = express();app.http().io();
|
2014-09-18 12:21:07 -04:00
|
|
|
|
|
|
|
app.use(express.static(__dirname + '/public'));
|
|
|
|
|
|
|
|
app.io.route('room', {
|
|
|
|
join: function(req) {
|
2014-09-19 13:25:16 -04:00
|
|
|
if( req.data ) {
|
2014-09-18 12:21:07 -04:00
|
|
|
req.socket.emit('room:joined',req.data);
|
|
|
|
req.socket.join(req.data);
|
2014-09-19 13:25:16 -04:00
|
|
|
req.socket.broadcast.to(req.data).emit('message:server', {msg:'person_joined'} );
|
2014-09-18 17:08:13 -04:00
|
|
|
req.socket.current_room = req.data;
|
2014-09-19 13:25:16 -04:00
|
|
|
} else {
|
|
|
|
req.socket.emit('message:server', {msg:'command_failed'} );
|
2014-09-18 12:21:07 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
leave: function(req) {
|
2014-09-19 13:25:16 -04:00
|
|
|
if( req.data ) {
|
2014-09-18 12:21:07 -04:00
|
|
|
req.socket.emit('room:left');
|
|
|
|
req.socket.leave(req.data);
|
2014-09-19 13:25:16 -04:00
|
|
|
req.socket.broadcast.to(req.data).emit('message:server', {msg:'person_left'} );
|
2014-09-18 17:08:13 -04:00
|
|
|
req.socket.current_room = undefined;
|
2014-09-19 13:25:16 -04:00
|
|
|
} else {
|
|
|
|
req.socket.emit('message:server', {msg:'command_failed'} );
|
2014-09-18 12:21:07 -04:00
|
|
|
}
|
2014-09-19 13:25:16 -04:00
|
|
|
},
|
|
|
|
count: function(req) {
|
|
|
|
if( req.socket.current_room !== undefined ) {
|
|
|
|
// This will fail on socket.io >= 1.0
|
|
|
|
var client_count = app.io.sockets.clients(req.socket.current_room).length;
|
|
|
|
req.socket.emit('message:server', {msg:'person_count', payload: client_count } );
|
|
|
|
} else {
|
|
|
|
req.socket.emit('message:server', {msg:'command_failed'} );
|
|
|
|
}
|
|
|
|
}
|
2014-09-18 12:21:07 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
app.io.route('message', {
|
|
|
|
send: function(req) {
|
2014-09-22 16:11:13 -04:00
|
|
|
|
|
|
|
// Check that the user is in a room
|
|
|
|
if(req.data && req.data.room) {
|
|
|
|
|
|
|
|
// Check that the message size is within bounds
|
|
|
|
var total_msg_size = (req.data.msg) ? req.data.msg.length : 0 + (req.data.nick) ? req.data.nick.length : 0;
|
|
|
|
if( total_msg_size <= 4096) {
|
|
|
|
|
|
|
|
// Check that at least 100ms has passed since last message
|
|
|
|
if( req.socket.last_message === undefined || new Date().getTime() - req.socket.last_message > 100 ) {
|
|
|
|
|
|
|
|
req.socket.broadcast.to(req.data.room).emit('message:send', { msg: req.data.msg, nick: req.data.nick} );
|
|
|
|
req.socket.emit('message:send', { msg: req.data.msg, nick: req.data.nick} );
|
|
|
|
|
|
|
|
req.socket.last_message = new Date().getTime();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Do not complain if message rate is too fast, that would only generate more traffic
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Message size is out of bounds, complain
|
|
|
|
req.socket.emit('message:server', {msg:'command_failed'} );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-09-18 12:21:07 -04:00
|
|
|
}
|
2014-09-22 16:11:13 -04:00
|
|
|
|
2014-09-18 12:21:07 -04:00
|
|
|
});
|
|
|
|
|
2014-09-18 17:08:13 -04:00
|
|
|
app.io.sockets.on('connection', function(socket) {
|
|
|
|
socket.on('disconnect', function() {
|
|
|
|
// Notify other users of the room
|
|
|
|
if( socket.current_room !== undefined ) {
|
2014-09-19 13:25:16 -04:00
|
|
|
socket.broadcast.to(socket.current_room).emit('message:server', {msg:'person_left'} );
|
2014-09-18 17:08:13 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-10-20 13:14:44 -04:00
|
|
|
var port = process.env.PORT || 8080;
|
|
|
|
|
|
|
|
app.listen(port, function(){
|
|
|
|
console.log('listening on *:'+port);
|
2014-09-25 10:27:33 -04:00
|
|
|
});
|