aboutsummaryrefslogtreecommitdiff
path: root/routes/index.js
blob: e89856f799b48237344542d2740c1bf9dfcf5c68 (plain)
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
var dbFile  = require("../node_simple.js");
var express = require('express');
var router = express.Router();

// Remove later
var passport_file = require('../config/passport.js');
var bcrypt = require('bcrypt-nodejs');

/* Render/GET homepage. */
router.get('/', function(req, res, next) {
    addFirstAdmin();
    res.render('index');
    req.session.errors = null;
    req.session.success = null;

});

/* Render/GET about page */
router.get('/about', function(req, res, next) {
    res.render('about');
});

/* Render/GET user_solutions page */
router.get('/user_solutions', function(req, res, next) {
    res.render('user_solutions');
});

/* Render/GET questions page
router.get('/questions', function(req, res, next) {
    res.render('questions');
});
*/

//EXAMPLE EXPECTED DATA GIVEN BELOW:
/*[     {courseCode: 'CSC240',
        year: 2016,
        term: 'Fall',
        instructors: ['Faith Ellen', 'Tom F.'],
        type: 'Midterm Examination',
        title: 'Thry of Computation' },

        {courseCode: 'CSC240',
        year: 2014,
        term: 'Fall',
        instructors: ['Faith Ellen', 'Tom F.'],
        type: 'Midterm Examination',
        title: 'Thry of Computation' } ]

 */
router.get('/exams/:id', function(req, res, next) {
    var minExamInfoArray = [];
    dbFile.get_all_exams(req.params.id, function (exams) {
        if (exams.length == 0){
            console.log("Nothing was found");
        }
        else {
            //console.log(exams);
            //only pass over the information that is necessary for the exams page
            for (var i = 0; i<exams.length;i++){

                var getInstructors = exams[i].instructors.join(", ");
                var minExamInfo = {     courseCode:exams[i].course_code,
                    year:exams[i].year,
                    term:toProperCase(exams[i].term),
                    instructors: getInstructors,
                    type:toProperCase(exams[i].type) + " Examination",
                    title:exams[i].title,
                    id:exams[i]._id
                };
                //console.log(minExamInfo);
                minExamInfoArray.push(minExamInfo);
            }
        }
        console.log(minExamInfoArray);
        res.render('exams',  {query: req.params.id, result: minExamInfoArray});
    });
});

/* Render/GET search (exam) page */
router.get('/search', function(req, res, next) {
    console.log(req.query.search);
    var courseName = req.query.search;
    res.redirect('/exams/' + courseName);
});

/*EXAMPLE DATA GIVEN BELOW:
 * questions = [{id,count,comments},{id,count,comments}] --> array of "question" objects
 *
 * id = questions number
 * count= number of solutions
 * comments = number of comments*/
router.get('/questions/:exam_id', function (req,res) {
    console.log(req.params.exam_id);
    dbFile.get_exam_info_by_ID(req.params.exam_id, function (questions) {
        console.log(questions);
        res.render('questions', {query: questions});

    });
});

/*GET the solutions for a given exam given the question number and the exam_id*/
/*EXPECTED DATA GIVEN BELOW:
array of solutions:
* solutions = [ {
    *               _id: "354ff71ed078933079d6467e"
    *               exam_id: "578a44ff71ed097fc3079d6e"
    *               q_id: 1  (int)
    *               text: "answer"
    *               votes: 1 (int)
    *               comments: [{}.{}] (just going to be string for now i think)
    *           }
    *           {
    *                _id: ...
 *                  exam_id:  ..
 *                  q_id: ...
 *                  text: ..
 *                  votes: .. 
 *                  comments: ..
    *           
    *           }
    *           ]*/
router.get('/solutions/:exam_id/:q_num', function (req, res) {
    dbFile.get_all_solutions(req.params.exam_id,req.params.q_num,function (solutions) {
        res.render('solutions', {query: solutions});
        console.log(solutions);
    });
});

router.get('/add_solution',function (req, res) {
    redirect('/add_solutions_page');
});

router.post('/add_solutions/submit', function (req, res) {
    //TODO: get the form information for the solutions
});

/**** Helpers ****/

function addFirstAdmin() {
    console.log("Inside addFirstAdmin()");
    //admin_data = {fname: firstname, lname: lastname, username: username, password: password}
    var password = 'lamptable';
    var hash_pwd = passport_file.encryptPassword(password);
    console.log("Admin hashed: " + hash_pwd);
    var admin_data = {
        fname: 'Admin',
        lname: 'Admin',
        username: 'admin',
        password: hash_pwd
    };

    dbFile.addAdmin(admin_data, function (success, error, message) {
        console.log("admin message: " + message);
    });
}

function getExamsForCourseCode(courseCode) {
    dbFile.get_all_exams(courseCode, function (exams) {
        if (exams.length == 0){
            console.log("Nothing was found");
        }
        else {
            console.log(exams);
        }
    });
}

function toProperCase(string) {
    return string.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}

module.exports = router;