-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
402 lines (331 loc) · 11.4 KB
/
index.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
require('dotenv').config();
const path = require('path');
const bodyParser = require('body-parser');
const express = require('express');
const cors = require('cors');
const csrf = require('csurf');
const geolaocation = require('geolocation');
const expressSession = require('express-session');
const nodemailer = require('nodemailer');
const authRoutes = require('./routes/auth.routes');
const app = express();
const http = require('http');
const server = http.createServer(app);
const WebSocket = require('ws');
const wss = new WebSocket.Server({ server });
const db = require('./data/database');
const huntinfoController = require('./controllers/huntinfo.controller');
const upcomingsController = require('./controllers/upcomings.controller');
const addCsrfTokenMiddleware = require('./middlewares/csrf-token');
const createSessionConfig = require('./config/session');
const errorHandler = require('./middlewares/error-handler');
const checkAuthStatus = require('./middlewares/check-auth');
const team_membersController = require('./controllers/team.controller');
const authController = require('./controllers/auth.controller');
const startHuntController = require('./controllers/starthunt.controller');
const enterHuntController = require('./controllers/enterhunt.controller');
const editHuntController = require('./controllers/edithunt.controller');
const Oauthroutes = require('./routes/Oauth.routes');
app.use(cors({
// origin: utils.allowedDomains(),
origin: false,
referer: "*",
allowedHeaders: [
"Content-Type",
"Authorization",
"Access-Control-Allow-Origin"
]
}));
const sessionConfig = createSessionConfig();
app.use(expressSession(sessionConfig));
app.use(authRoutes);
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(express.static('public'));
app.post('/sendMail', bodyParser.json(), (req, res) => {
const mailOptions = req.body;
console.log(mailOptions);
let transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: '[email protected]',
pass: 'guup ogjx azxs xurd'
}
})
transporter.sendMail(mailOptions, function (err, data) {
if (err) {
console.log('Error Occurs ' + err);
} else {
console.log('Email sent!!!');
}
});
});
app.post('/rm_strtd_hunt_data', (req, res) => {
console.log(req.body.huntname);
db.getDb().collection('startedHunts').drop().then(function () {
console.log('done');
}).catch(function (err) {
console.log(err);
});
db.getDb().collection('upcominghunts').deleteOne({ huntname: req.body.huntname })
.then(() => {
console.log('also done')
})
.catch((err) => {
console.log(err);
})
});
app.use(csrf());
app.use(addCsrfTokenMiddleware);
app.use(express.urlencoded({ extended: true }));
app.use(checkAuthStatus);
app.use(Oauthroutes);
app.get('/', (req, res) => {
if (res.locals.isAuth) {
res.redirect('/identity');
} else {
res.redirect('/index');
}
});
app.get('/index', (req, res) => {
res.render('index');
});
// app.get('/admin', (req, res) => {
// let inputData = req.session.inputData || {}; // Get inputData from the session
// res.render('admin', { inputData: inputData }); // Pass inputData to the EJS template
// });
app.get('/identity', (req, res) => {
res.render('Identity');
});
app.get('/menu', (req, res) => {
if (res.locals.isAuth) {
res.render('menu');
} else {
res.redirect('/index');
}
});
app.get('/huntinfo', (req, res) => {
if (res.locals.isAuth) {
db.getDb().collection('hunts').find().toArray().then(function (hunts) {
const huntNames = hunts.map(hunt => hunt.huntname);
console.log(huntNames);
res.render('huntinfo', {
hunt: {
huntname: '',
data: []
},
huntNames: huntNames // This is the array of hunt names
});
});
} else {
res.redirect('/index');
}
});
app.get('/starter', bodyParser.urlencoded(), startHuntController.loadnames);
app.get('/starter2', bodyParser.urlencoded(), enterHuntController.loadnames);
app.post('/strthunt', bodyParser.urlencoded(), startHuntController.loadHunt);
app.post('/strthunt2', bodyParser.urlencoded(), enterHuntController.enterHunt);
app.post('/savehunt', bodyParser.urlencoded(), huntinfoController.storeData);
app.post('/registerteam', bodyParser.urlencoded(), team_membersController.storeData);
app.get('/upcomings', bodyParser.urlencoded(), upcomingsController.showhunts);
app.get('/upcomings_adrights', bodyParser.urlencoded(), upcomingsController.showhunts2);
app.post('/starthunt', bodyParser.urlencoded(), startHuntController.startHunt);
app.get('/start', (req, res) => {
res.render('start');
});
app.get('/bstart', (req, res) => {
res.render('beforestart1');
});
app.post('/logout', authController.logout);
app.get('/menu_client', (req, res) => {
if (res.locals.isAuth) {
res.render('menu_client');
} else {
res.redirect('/index');
}
});
app.get('/edit', bodyParser.urlencoded(), editHuntController.loadnames);
app.post('/edthunt', bodyParser.urlencoded(), editHuntController.loadhunt);
app.post('/editing', bodyParser.urlencoded(), editHuntController.completeEdit);
app.post('/appending', bodyParser.urlencoded(), editHuntController.addClues);
app.post('/deleting', bodyParser.urlencoded(), editHuntController.deleteClues);
app.post('/deleting2', bodyParser.urlencoded(), editHuntController.deleteHunt);
app.post('/modifying', bodyParser.urlencoded(), editHuntController.modify);
app.get('/addClues', (req, res) => {
if (res.locals.isAuth) {
res.render('addClues');
} else {
res.redirect('/index');
}
});
app.get('/deleteClues', (req, res) => {
if (res.locals.isAuth) {
res.render('deleteClues');
} else {
res.redirect('/index');
}
});
app.get('/modify', (req, res) => {
if (res.locals.isAuth) {
res.render('modify');
} else {
res.redirect('/index');
}
});
app.get('/hunt2', (req, res) => {
if (res.locals.isAuth) {
res.render('hunt2');
} else {
res.redirect('/index');
}
});
app.get('/clues', (req, res) => {
if (res.locals.isAuth) {
res.render('clues');
} else {
res.redirect('/index');
}
});
app.get('/alregis', (req, res) => {
if (res.locals.isAuth) {
res.render('already_registered');
} else {
res.redirect('/index');
}
});
app.get('/unreg', (req, res) => {
if (res.locals.isAuth) {
res.render('unregistered');
}
else {
res.redirect('/index');
}
});
app.post('/endHunt', (req, res) => {
db.collection('startedHunts').drop()
.then(() => {
res.send('Collection dropped successfully');
})
.catch(err => {
console.error(err);
res.status(500).send('Error dropping collection');
});
});
app.get('/team_members', bodyParser.urlencoded(), team_membersController.loadnames);
app.get('/upcomings_client', bodyParser.urlencoded(), upcomingsController.showhunts3);
app.use(errorHandler);
db.connectToDatabase().then(function () {
server.listen(3000, () => {
console.log('App listening on port 3000!');
});
})
.catch(function (err) {
console.log("Error connecting to database" + err);
});
let lastMessage = null;
let isStarted;
let isFinished;
let scores = [];
let adminScores = [];
wss.on('connection', (ws) => {
console.log('A user connected');
ws.send('Welcome new client');
if (isStarted == true && isFinished == false) {
ws.send(lastMessage);
}
ws.on('message', (message) => {
console.log(`Received message: ${message}`);
if (message != 'requestLeaderboard' && message != 'requestLeaderboardForAdmin' && message != 'endHunt' && message != 'resume' && message != 'pause') {
message = JSON.parse(message);
}
// console.log(message[1]);
if (message[0] == 'Serve') {
console.log('Starting admin pages');
// Broadcast a message to all clients to start serving admin pages
wss.clients.forEach((client) => {
console.log('client')
let data = ['startedAdminPages', message[1]];
client.send(JSON.stringify(data));
lastMessage = JSON.stringify(data);
isStarted = true;
isFinished = false;
});
}
if (message == 'requestLeaderboard') {
console.log('requesting leaderboard');
// Broadcast a message to all clients to start serving admin pages
wss.clients.forEach((client) => {
console.log('client')
client.send('giveScores');
});
}
if (message == 'endHunt') {
console.log('ending hunt');
isFinished = true;
wss.clients.forEach((client) => {
console.log('client')
client.send('endHunt');
});
}
if (message == 'resume') {
console.log('resuming hunt');
wss.clients.forEach((client) => {
console.log('client')
client.send('resume');
});
}
if (message == 'pause') {
console.log('pausing hunt');
wss.clients.forEach((client) => {
console.log('client')
client.send('pause');
});
}
if (message == 'requestLeaderboardForAdmin') {
console.log('requesting leaderboard');
// Broadcast a message to all clients to start serving admin pages
wss.clients.forEach((client) => {
console.log('client')
client.send('giveScoresToAdmin');
});
}
if (message[0] == 'Score') {
console.log('Scores found');
scores.push([message[1], message[2]]);
if (scores.length == wss.clients.size) {
scores.sort((a, b) => b[0] - a[0]);
console.log(scores);
console.log('All scores received, sending scores to all clients');
wss.clients.forEach((client) => {
let data = ['scores', scores];
client.send(JSON.stringify(data));
});
scores = [];
}
}
if (message[0] == 'AdminScore') {
console.log('Admin Scores found');
adminScores.push([message[1], message[2]]);
if (adminScores.length == wss.clients.size) {
adminScores.sort((a, b) => b[0] - a[0]);
console.log(adminScores);
console.log('All scores received, sending scores to all clients');
wss.clients.forEach((client) => {
let data = ['Adminscores', adminScores];
client.send(JSON.stringify(data));
});
adminScores = [];
}
}
});
ws.on('close', () => {
console.log('User disconnected');
wss.clients.forEach((client) => {
client.send('stoppedAdminPages');
// lastMessage = '';
});
});
});
// channel i authentication // edit hunt