-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral.js
74 lines (69 loc) · 2.02 KB
/
general.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
// -----------------------------------------------------------------------------
// Name: /handlers/general.js
// Author: Adam Barreiro Costa
// Description: Reunites all the server handlers in one file
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
// Modules
// -----------------------------------------------------------------------------
var get = require('./get.js');
var post = require('./post.js');
var ajax = require('./ajax.js');
// -----------------------------------------------------------------------------
// Functions
// -----------------------------------------------------------------------------
/**
* Sets all the GET request handlers
*/
function setGetHandlers() {
get.getIndex();
get.getLogin();
get.getRegister();
get.getAdmin();
get.getEditor();
get.getGame();
get.getLogout();
//get.initAdmin();
}
exports.setGetHandlers = setGetHandlers;
/**
* Sets all the POST request handlers
*/
function setPostHandlers(){
post.postLogin();
post.postRegister();
post.postAdminCreateGroup();
post.postAdminEditGroup();
post.postAdminDeleteGroup();
post.postAdminAssignGroup();
post.postAdminDisposeGroup();
post.postAdminEraseHistory();
post.postAdminDeleteStudent();
post.postAdminEditAdmin();
}
exports.setPostHandlers = setPostHandlers;
/**
* Sets all the AJAX handlers
*/
function setAjaxHandlers() {
ajax.ajaxGetGroups();
ajax.ajaxGetStudents();
ajax.ajaxGetStudent();
ajax.ajaxGetLevelList();
ajax.ajaxLevelCreate();
ajax.ajaxLevelUpdate();
ajax.ajaxLevelLoad();
ajax.ajaxLevelDelete();
ajax.ajaxLevelMove();
ajax.ajaxSaveGame();
ajax.ajaxLoadGame();
ajax.ajaxGetQuestions();
ajax.ajaxGetTimeouts();
}
exports.setAjaxHandlers = setAjaxHandlers;
function csrf(req, res, next) {
//res.locals.csrftoken = req.csrfToken();
res.cookie('token', res.locals.csrftoken);
next();
}
exports.csrf = csrf;