-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
95 lines (79 loc) · 2.62 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
// server.js
// set up ========================
var express = require('express');
var app = express(); // create our app w/ express
var mongoose = require('mongoose'); // mongoose for mongodb
var http = require('http');
var server = http.createServer(app);
var io = require('socket.io').listen(server);
// configuration =================
mongoose.connect('mongodb://localhost/follow-along'); // connect to mongoDB database on localhost
app.configure(function() {
app.use(express.static(__dirname + '/public')); // set the static files location /public/img will be /img for users
app.use(express.logger('dev')); // log every request to the console
app.use(express.bodyParser()); // pull information from html in POST
app.use(express.methodOverride()); // simulate DELETE and PUT
});
// define model =================
var State = mongoose.model('State', {
room: String,
json: String
});
function saveState(room, data, callback) {
State.update(
{room: room},
{room: room, json: JSON.stringify(data)},
{upsert: true},
callback || function() { }
);
}
function getState(room, callback) {
State.findOne(
{room: room},
{json: 1},
function(err, document) {
if (err == null && document && document.json) {
callback(null, JSON.parse(document.json));
} else {
callback(err, null);
}
}
);
}
// application -------------------------------------------------------------
app.get('*', function(req, res) {
res.sendfile('./public/index.html'); // load the single view file (angular will handle the page changes on the front-end)
});
// listen (start app with node server.js) ======================================
server.listen(8000);
console.log("Server listening on port 8000");
io.sockets.on('connection', function (socket) {
socket.on('subscribe', function(data) {
socket.join(data.room);
io.sockets.in(data.room).emit('room-count-update', io.sockets.clients(data.room).length);
if (data.role == 'follower') {
getState(data.room, function(err, state) {
if (err == null) {
socket.json.emit('state-update', state);
}
});
}
});
socket.on('unsubscribe', function(data) {
socket.leave(data.room);
io.sockets.in(data.room).emit('room-count-update', io.sockets.clients(data.room).length);
});
socket.on('state-update', function(data) {
if (data.role == 'leader') {
saveState(data.room, data);
socket.broadcast.json.to(data.room).emit('state-update', data);
}
});
socket.on('restore-session', function(data) {
getState(data.room, function(err, state) {
if (err == null) {
socket.emit('restore-session', state);
}
});
});
});