-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
194 lines (130 loc) · 3.85 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
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
const express = require("express");
const app = express();
const path = require('path');
app.use(express.static(path.join(__dirname, 'public')));
const bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.set('view engine', 'ejs');
const upload = require('express-fileupload');
const { readdirSync, readFileSync } = require("fs");
app.use(upload());
app.get('/', (req, res, next) => {
res.render('landing');
});
let object;
app.post('/text', (req,res,next) => {
let text = req.body.passage;
object = 0;
const spawn = require("child_process").spawn;
const process = spawn('python', ["text.py", text]);
process.stdout.on('data', function(data) {
object = JSON.parse(data);
object.title = req.body.title;
});
function wait(){
if(object == 0){
setTimeout(wait, 100);
} else {
res.redirect('/summary');
}
}
wait();
});
app.post('/audio', (req,res,next) => {
let file = req.files.audio;
let filename = file.name;
file.mv('./uploads/'+filename);
object = 0;
const spawn = require("child_process").spawn;
let audio = "uploads/" + filename;
const process = spawn('python', ["audio.py", audio]);
process.stdout.on('data', function(data) {
object = JSON.parse(data);
object.title = req.body.title;
});
function wait(){
if(object == 0){
setTimeout(wait, 100);
} else {
res.redirect('/summary');
}
}
wait();
});
app.post('/video', (req,res,next) => {
let file = req.files.video;
let filename = file.name;
file.mv('./uploads/'+filename);
object = 0;
const spawn = require("child_process").spawn;
let video = "uploads/" + filename;
const process = spawn('python', ["video.py", video]);
process.stdout.on('data', function(data) {
object = JSON.parse(data);
object.title = req.body.title;
});
function wait(){
if(object == 0){
setTimeout(wait, 100);
} else {
res.redirect('/summary');
}
}
wait();
});
app.get('/summary', (req, res, next)=>{
questionIndex = -1;
checkIndex = -1;
tempArray = []
res.render('summary', { object: object } );
});
app.post('/checkYK-start', (req, res, next) => {
res.render('checkYK-start');
});
let checkIndex = -1;
let checkQuestions = ['1q', '2q'];
app.post('/checkYK', (req, res, next) =>{
checkQuestions = object.checkYK;
checkIndex += 1;
let length2 = checkQuestions.length;
if(checkIndex >= length2){
checkIndex = -1;
res.render('checkYK-over');
}
let question = checkQuestions[ checkIndex ];
res.render('checkYK', {question: question});
});
let rawdata = readFileSync('questions.json');
let object2 = JSON.parse(rawdata);
let questions = object2.questions.slice(0,6);
let questionIndex = -1;
let tempArray;
app.post('/quiz-start', (req, res, next) => {
res.render('quiz-start');
tempArray = [];
questionIndex = -1;
});
app.post('/quiz', (req, res, next) => {
if(questionIndex != -1){
let correct = req.body.userCorrect;
if(correct == 0){
tempArray.push( questions[ questionIndex ] );
}
}
questionIndex += 1;
let length = questions.length;
if(questionIndex >= length){
questionIndex = -1;
if( tempArray.length > 0){
questions = tempArray;
questionIndex = 0;
tempArray = []
} else {
res.render('quiz-over');
}
}
let question = questions[ questionIndex ];
res.render('quiz', {question});
});
app.listen(3000);