akf-forum/routes/threads.js

48 lines
1.6 KiB
JavaScript
Raw Normal View History

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-31 14:44:28 +03:00
let threads = await ThreadModel.find(req.user?.admin ? {} : { deleted: false })//.limit(10);
threads = await Promise.all(threads.map(thread => thread.get_author()));
2022-08-27 10:31:16 +03:00
return res.reply("threads", { threads });
2022-03-21 23:53:22 +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-31 14:44:28 +03:00
const page = Number(req.query.page || 0);
2022-08-29 19:31:59 +03:00
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-31 14:44:28 +03:00
const messages = await Promise.all(await MessageModel.find(query).sort({ time: 1 }).limit(10).skip(page * 10)
.then(messages => messages.map(async message => {
2022-08-29 16:16:44 +03:00
message.content = message.content.replaceAll("&", "&")
.replaceAll("<", "&lt;").replaceAll(">", "&gt;")
.replaceAll("\"", "&quot;").replaceAll("'", "&#39;")
.replaceAll("\n", "<br>");
2022-08-31 14:44:28 +03:00
return await message.get_author();
})));
2022-08-31 15:21:04 +03:00
res.reply("thread", { page, thread, messages, scroll: req.query.scroll || messages[0]?.id });
2022-08-29 16:16:44 +03:00
thread.save();
} 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;