mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-22 20:10:40 +03:00
47 lines
No EOL
1.4 KiB
JavaScript
47 lines
No EOL
1.4 KiB
JavaScript
const { Router } = require("express");
|
|
const app = Router();
|
|
|
|
const { ThreadModel, MessageModel } = require("../models")
|
|
|
|
|
|
app.get("/", async (req, res) => {
|
|
|
|
const threads = await ThreadModel.find(req.user?.admin ? {} : { deleted: false })//.limit(10);
|
|
|
|
return res.reply("threads", { threads });
|
|
});
|
|
|
|
|
|
app.get("/create*", (req, res) => res.reply("create_thread"));
|
|
|
|
app.get("/:id/", async (req, res) => {
|
|
|
|
const { user, params: { id } } = req
|
|
|
|
const page = Number(req.query.page || 0);
|
|
const thread = await ThreadModel.get(id)
|
|
if (thread && (user?.admin || !thread.deleted)) {
|
|
thread.views++;
|
|
const query = { threadID: id };
|
|
if (!user || !user.admin) query.deleted = false;
|
|
|
|
const messages = await MessageModel.find(query).sort({ time: 1 }).skip(page * 10).limit(page * 10 + 10)
|
|
.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();
|
|
|
|
} else
|
|
res.error(404, "We have not got this thread.");
|
|
});
|
|
|
|
|
|
module.exports = app; |