-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
executable file
·134 lines (110 loc) · 3.1 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
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
var express = require('express');
var ipfilter = require('express-ipfilter');
var favicon = require('serve-favicon');
var fs = require('fs');
var _ = require('underscore');
var io = require('socket.io');
var bodyParser = require('body-parser');
var aggregate = require('./backend/aggregate');
var parseIpfilter = require('./backend/parse-ipfilter');
var app = express();
var port = process.env.port || 8081;
var ips = process.env.IPFILTER ? parseIpfilter(process.env.IPFILTER) : null;
if (ips) { // Block ips
app.use(ipfilter(ips, {
mode: 'allow',
allowPrivateIPs: true,
ranges: true
}));
}
// Turn off Varnish cache
app.use(function (req, res, next) {
res.set('X-TTL', '0s');
next();
});
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
// parse application/json
app.use(bodyParser.json())
app.use(favicon(__dirname + '/public/images/favicon.ico'));
app.use(express.static(__dirname + '/public'));
app.use(function(req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET, OPTIONS');
res.header('Access-Control-Allow-Headers', 'Content-Type');
return next();
});
/* Go go go */
var server = app.listen(port);
var io = require('socket.io').listen(server);
console.log('Listening on port ' + port);
exports = module.exports = app;
var connected = 0;
/* Callbacks */
function newVote(voteMsg) {
io.sockets.emit('vote', voteMsg);
// console.log("Hei");
}
io.on('connection', function(socket){
connected = connected +1;
console.log(connected);
socket.on('sendVote', function(msg){
newVote(msg);
});
socket.on('disconnect', function(){
connected = connected-1;
});
});
setInterval(function() {
io.sockets.emit('aggregate', aggregate.get());
io.sockets.emit('users', connected);
}, 250);
/* Routes */
app.post('/api/vote', function(req, res) {
aggregate.countVote(req.body.name);
var msg = {
type: "vote",
name: req.body.name,
unicodeValue: req.body.unicodeValue
};
newVote(msg);
res.send("OK!");
});
app.get('/api/vote/aggregate', function (req, res) {
var aggregatedVotes = aggregate.get();
res.json(aggregatedVotes);
});
app.get('/api/vote/aggregate/reset', function(req, res) {
aggregate.reset();
res.send("OK");
});
app.get('', function(req, res) {
fs.readFile("./public/views/index.html", function(err, data) {
res.set('Content-Type', 'text/html');
res.send(data);
})
});
app.get('/results', function(req, res) {
fs.readFile("./public/views/results.html", function(err, data) {
res.set('Content-Type', 'text/html');
res.send(data);
})
});
app.get('/eurovision', function(req, res) {
fs.readFile("./public/views/eurovisionresults.html", function(err, data) {
res.set('Content-Type', 'text/html');
res.send(data);
})
});
app.get('/footballvote', function(req, res) {
fs.readFile("./public/views/footballvote.html", function(err, data) {
res.set('Content-Type', 'text/html');
res.send(data);
})
});
app.get('/football', function(req, res) {
fs.readFile("./public/views/football.html", function(err, data) {
res.set('Content-Type', 'text/html');
res.send(data);
})
});