-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserver.js
386 lines (346 loc) · 9.81 KB
/
server.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
const express = require("express");
const fs = require("fs");
const bodyParser = require("body-parser");
const app = express();
const appPort = process.env.PORT || 3000;
const mongoose = require("mongoose");
const db = require("./db.js");
const session = require("express-session");
const auth = require("./auth.js");
const ejs = require("ejs");
const Account = mongoose.model("Account");
const Report = mongoose.model("Report");
const Post = mongoose.model("Post");
const Reply = mongoose.model("Reply");
const { spawn } = require("child_process");
app.disable("x-powered-by");
/**
* The following are middlewares.
*/
app.use(express.static("views"));
app.set("view engine", "ejs");
app.set("views", "./views");
app.use("/libs", express.static("bower_components"));
app.use(express.static("public"));
app.use(
bodyParser({
limit: "1mb",
})
);
app.use(bodyParser.json()); // for parsing application/json
app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
app.use(
session({
secret: "this is top secret",
resave: true,
saveUninitialized: false,
cookie: {
httpOnly: true,
maxAge: 60 * 1000,
},
rolling: true,
})
);
app.use(auth.authRequired(["/post-public"]));
app.use((req, res, next) => {
res.locals.user = req.session.user;
next();
});
/**
* The following are routes to render the html files
*/
app.get("/index", function (req, res) {
res.sendFile(__dirname + "/public/index.html");
});
app.get("/client", function (req, res) {
res.sendFile(__dirname + "/public/client.html");
});
app.get("/education", function (req, res) {
res.sendFile(__dirname + "/public/education.html");
});
app.get("/forum-view", function (req, res) {
res.sendFile(__dirname + "/public/forumView.html");
});
app.get("/forum", function (req, res) {
if (req.session.user) res.sendFile(__dirname + "/public/forum.html");
else {
res.redirect("/login");
}
});
/**
* The following are routes for depression diagnosis feature.
*/
// image upload
app.post("/upload", (req, res) => {
console.log("upload...");
if (req.body.theFile !== "") {
console.log("received uploaded image!!");
let theFileString = req.body.theFile;
let theFileName = req.body.name;
theFileString = theFileString.replace(/data:image\/(png|jpeg);base64,/, "");
// console.log('the file string ' + theFileString);
fs.writeFileSync("images/" + theFileName, theFileString, {
encoding: "base64",
});
}
res.send("UPLOADED");
});
// image upload instant removal
app.post("/img-instant-removal", (req, res) => {
if (req.body.content !== "") {
console.log("received image instant removal request!!");
var filePath = "images/" + req.body.name;
fs.unlinkSync(filePath);
}
res.send("IMAGEREMOVED1");
});
app.post("/diagnosis", (req, res) => {
if (req.body.content !== "") {
console.log("received diagnosis request!!");
var filePath = "images/" + req.body.name;
console.log("the file for diganosis: " + filePath);
}
if (fs.existsSync(filePath)) {
var dataToSend;
// spawn new child process to call the python script
// !! IMPORTANT !! To run Python script with arguments
// refer to https://stackoverflow.com/questions/62450826/run-python-script-from-node-js-child-process-with-named-arguments
const python = spawn("python", ["getScore.py"]);
// collect data from script
python.stdout.on("data", function (data) {
console.log("Pipe data from python script ...");
dataToSend = data.toString().trim();
});
// in close event we are sure that stream from child process is closed
python.on("close", async (code) => {
console.log(`child process close all stdio with code ${code}`);
console.log(typeof dataToSend);
// send data to browser
// save to database if session exists
if (req.session.user) {
// save to database
try {
const report = new Report({
account: req.session.user._id,
score: parseInt(dataToSend),
});
const savedReport = await report.save();
} catch (err) {
console.log("Could not save to database");
}
}
res.send(JSON.stringify(dataToSend));
});
} else {
res.send("NOSCORE");
}
});
// end of image upload
/**
* The following are routes for communication platform.
*/
// forum view
app.post("/forum", async (req, res) => {
let searchBy = req.body.searchBy;
let keyWord = req.body.keyWord;
console.log(searchBy + " " + keyWord);
// const posts = await Post.find({}).sort("-updatedAt");
if (searchBy == "title") {
const posts = await Post.find({ title: { $regex: keyWord } })
.populate("account")
.sort("-updatedAt");
res.json({
posts: posts,
});
} else if (searchBy == "author") {
const posts = await Post.find({ name: { $regex: keyWord } })
.populate("account")
.sort("-updatedAt");
res.json({
posts: posts,
});
} else if (searchBy == "content") {
const posts = await Post.find({ content: { $regex: keyWord } })
.populate("account")
.sort("-updatedAt");
res.json({
posts: posts,
});
} else {
const posts = await Post.find().populate("account").sort("-updatedAt");
res.json({
posts: posts,
});
}
});
// end of forum view
// forum
app.post("/post-public", async (req, res) => {
console.log("taking text...");
if (req.body.content !== "") {
console.log("received text!!");
let textContent = req.body.content;
console.log(textContent);
try {
const post = new Post({
account: req.session.user._id,
title: req.body.fname,
content: req.body.content.trim(),
});
await post.save();
} catch (err) {
console.log("could not save to database ", err);
}
// here save the post to the database
res.send("TEXTRECEIVED1");
}
});
app.get("/replies", async (req, res) => {
const replies = await Reply.find({ post: req.query.postId })
.populate("account")
.sort("-createdAt");
res.send(replies);
});
app.post("/reply", async (req, res) => {
if (req.body.content !== "") {
let replyContent = req.body.content;
console.log(replyContent);
try {
const reply = new Reply({
account: req.session.user._id,
post: req.body.post,
content: req.body.content.trim(),
});
await reply.save();
} catch (err) {
console.log("could not save to database ", err);
}
res.send("Received reply!");
}
});
// end of forum
/**
* The following are routes for login and register.
*/
app.get("/register", (req, res) => {
res.render("register", { errMsg: {} });
});
app.post("/register", (req, res) => {
const { email, name, password, re_password } = req.body;
const nameReg = /^[a-zA-Z0-9\u4E00-\u9FA5\uF900-\uFA2D]*$/;
const passwordReg = /^[a-zA-Z0-9_@#.+&]{6,20}$/;
const errMsg = {};
if (!nameReg.test(name)) {
errMsg.nickErr = "Invalid nickname";
}
if (!passwordReg.test(password)) {
errMsg.passwordErr = "Invalid password format (6-20 chars)";
}
if (password !== re_password) {
errMsg.rePasswordErr = "Passwords don't match";
}
if (JSON.stringify(errMsg) !== "{}") {
res.render("register", { errMsg });
return;
}
function success(newUser) {
auth.startAuthenticatedSession(req, newUser, (err) => {
if (!err) {
var email = encodeURIComponent(newUser.email);
res.redirect("/login?email=" + email);
} else {
console.log("session error");
}
});
}
function error(err) {
errMsg.emailErr = err.message ?? "Registration error";
res.render("register", { errMsg });
}
// attempt to register new user
auth.register(
req.body.name,
req.body.password,
req.body.email,
error,
success
);
});
app.get("/login", (req, res) => {
const { email } = req.query;
res.render("login", { errMsg: { email } });
});
app.post("/login", (req, res) => {
const { email, password } = req.body;
const passwordReg = /^[a-zA-Z0-9_@#.+&]{6,20}$/;
const errMsg = {};
if (!passwordReg.test(password)) {
errMsg.passwordErr = "Password format invalid";
}
if (JSON.stringify(errMsg) !== "{}") {
res.render("login", { errMsg });
return;
}
function success(user) {
auth.startAuthenticatedSession(req, user, (err) => {
if (err) {
console.log("error starting auth sess: " + err);
} else {
req.session._id = user._id.toString();
req.session.email = user.email;
res.redirect("./index");
}
});
}
function error(err) {
console.log(err);
errMsg.loginErr = err.message || "Login unsuccessful";
res.render("login", { errMsg });
}
// attempt to login
auth.login(req.body.email, req.body.password, error, success);
});
app.post("/logout", (req, res) => {
auth.endAuthenticatedSession(req, (err) => {
if (err) {
res.json({ message: "error ending auth sess: " + err });
} else {
res.redirect("/");
}
});
});
/**
* The following is the route for the user center.
*/
app.get("/user-center", async (req, res) => {
const { _id } = req.session;
if (_id) {
try {
const user = await Account.findOne({ _id });
if (user) {
const reports = await Report.find({ account: _id }).sort("-createdAt");
console.log(reports);
res.render("userCenter", {
name: user.name,
email: user.email,
reports: reports,
});
}
} catch (error) {
res.redirect("/login");
}
} else {
res.redirect("/login");
}
});
/**
* The following is the route to check the current session user.
*/
app.get("/session", (req, res) => {
if (req.session.user) {
res.send(req.session.user.name);
} else res.send(null);
});
app.listen(appPort, () => {
console.log(`The server is up and running on ${appPort} port.`);
});