-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
79 lines (61 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* Module dependencies.
* External: Express
* Socket.io
* Internal: routes/index.js
*/
var express = require('express'),
routes = require('./routes');
var app = module.exports = express.createServer();
var io = require('socket.io').listen(app);
// Configuration
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
// Routes
app.get('/', routes.index);
app.listen(8888);
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);
// usernames which are currently connected to the chat
var usernames = {};
io.sockets.on('connection', function (socket) {
// Listen for messages on 'sendchat'. When received,
// send the message back to the front-end with a username and message.
socket.on('sendchat', function (data) {
io.sockets.emit('updatechat', socket.username, data);
});
// Listen for messages on 'sendcircle'. When a circle has been received,
// send the username and circle data to the front-end.
socket.on('sendcircle', function (data) {
console.log(data);
io.sockets.emit('updatesocketcircle', socket.username, data);
});
// When a user first connects, they are asked to provide a username.
// Take this username, add it to the username array, send a connection
// message, and update the front-end user list.
socket.on('adduser', function(username){
socket.username = username;
usernames[username] = username;
socket.emit('updatechat', 'SERVER', 'you have connected');
socket.broadcast.emit('updatechat', 'SERVER', username + ' has connected');
io.sockets.emit('updateusers', usernames);
});
// Upon disconnection, remove the username from the usernames array and send
// the front-end a new user list. Finally broadcast a global message the user has disconnected.
socket.on('disconnect', function(){
delete usernames[socket.username];
io.sockets.emit('updateusers', usernames);
socket.broadcast.emit('updatechat', 'SERVER', socket.username + ' has disconnected');
});
});