-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
executable file
·68 lines (54 loc) · 1.47 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
/**
* Module dependencies
*/
const express = require('express');
const app = express();
const server = require('http').Server(app);
const io = require('socket.io')(server);
/**
* App routes
*/
app.get('/', function(req, res) {
res.sendFile(__dirname + '/index.html');
});
app.get('/other-page', function(req, res) {
res.sendFile(__dirname + '/other-page.html');
});
app.use(express.static(__dirname + '/public'));
app.set('views', __dirname);
/**
* App listen
*/
const port = process.env.PORT || 3000;
server.listen(port, function() {
// console.log(this.address());
const addr = this.address();
console.log('ESFA chat app listening on port ' + addr.port);
});
/**
* Socket.IO server
*/
const nicknames = {};
// io.set('transports', ['xhr-polling']);
io.set('polling duration', 20);
io.on('connection', function(socket) {
socket.on('user message', function(msg) {
socket.broadcast.emit('user message', socket.nickname, msg);
});
socket.on('nickname', function(nick, fn) {
if (nicknames[nick]) {
fn(true);
} else {
fn(false);
nicknames[nick] = socket.nickname = nick;
socket.broadcast.emit('announcement', nick + ' connected');
io.emit('nicknames', nicknames);
}
});
socket.on('disconnect', function() {
if (!socket.nickname) return;
delete nicknames[socket.nickname];
socket.broadcast.emit('announcement', socket.nickname + ' disconnected');
socket.broadcast.emit('nicknames', nicknames);
});
});