2022-03-21 23:53:22 +03:00
|
|
|
const { Router } = require("express");
|
|
|
|
const app = Router();
|
|
|
|
|
2022-08-29 16:16:44 +03:00
|
|
|
const { ThreadModel, MessageModel } = require("../models")
|
2022-03-21 23:53:22 +03:00
|
|
|
|
|
|
|
|
2022-04-06 21:14:46 +03:00
|
|
|
app.get("/", async (req, res) => {
|
2022-03-21 23:53:22 +03:00
|
|
|
|
2022-08-28 15:00:53 +03:00
|
|
|
const threads = await ThreadModel.find(req.user?.admin ? {} : { deleted: false })//.limit(10);
|
2022-03-21 23:53:22 +03:00
|
|
|
|
2022-08-27 10:31:16 +03:00
|
|
|
return res.reply("threads", { threads });
|
2022-03-21 23:53:22 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2022-08-29 21:32:57 +03:00
|
|
|
app.get("/create/", (req, res) => res.reply("create_thread"));
|
2022-04-03 21:39:26 +03:00
|
|
|
|
2022-08-29 16:16:44 +03:00
|
|
|
app.get("/:id/", async (req, res) => {
|
2022-03-21 23:53:22 +03:00
|
|
|
|
2022-08-29 16:16:44 +03:00
|
|
|
const { user, params: { id } } = req
|
2022-04-06 21:14:46 +03:00
|
|
|
|
2022-08-29 19:31:59 +03:00
|
|
|
let page = Number(req.query.page || 0);
|
|
|
|
|
2022-08-29 16:16:44 +03:00
|
|
|
const thread = await ThreadModel.get(id)
|
2022-08-29 19:31:59 +03:00
|
|
|
thread.count = await thread.messageCount(user?.admin);
|
|
|
|
thread.pages = Math.ceil(thread.count / 10);
|
2022-08-29 16:16:44 +03:00
|
|
|
if (thread && (user?.admin || !thread.deleted)) {
|
|
|
|
thread.views++;
|
2022-08-29 19:31:59 +03:00
|
|
|
const query = { threadID: id };
|
2022-08-29 16:16:44 +03:00
|
|
|
if (!user || !user.admin) query.deleted = false;
|
|
|
|
|
2022-08-29 16:43:57 +03:00
|
|
|
const messages = await MessageModel.find(query).sort({ time: 1 }).limit(10).skip(page * 10)
|
2022-08-29 16:16:44 +03:00
|
|
|
.then(messages => messages.map(message => {
|
|
|
|
message.content = message.content.replaceAll("&", "&")
|
|
|
|
.replaceAll("<", "<").replaceAll(">", ">")
|
|
|
|
.replaceAll("\"", """).replaceAll("'", "'")
|
|
|
|
.replaceAll("\n", "<br>");
|
|
|
|
return message.toObject({ virtuals: true });
|
|
|
|
}))
|
|
|
|
|
|
|
|
res.reply("thread", { page, thread, messages, scroll: req.query.scroll || thread.messages[0].id });
|
|
|
|
|
|
|
|
thread.save();
|
2022-08-28 18:19:03 +03:00
|
|
|
|
|
|
|
} else
|
2022-08-29 19:31:59 +03:00
|
|
|
res.error(404, `We don't have any thread with id ${id}.`);
|
2022-03-21 23:53:22 +03:00
|
|
|
});
|
|
|
|
|
2022-04-03 21:01:55 +03:00
|
|
|
|
2022-03-21 23:53:22 +03:00
|
|
|
module.exports = app;
|