mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-23 04:10:40 +03:00
23 lines
No EOL
748 B
JavaScript
23 lines
No EOL
748 B
JavaScript
const { Thread, Message, User } = require("../../classes/index");
|
|
const db = require("quick.db");
|
|
|
|
const error = require("../../errors/error.js")
|
|
|
|
module.exports = (req,res) =>{
|
|
if (!req.session.loggedin) return res.redirect('/login');
|
|
|
|
const id = req.url.slice(9);
|
|
const user = new User().getId(req.session.userid);
|
|
|
|
if (!id) {
|
|
const threads = db.get("threads").slice(0, 10)
|
|
const links = threads.map(thread => "/threads/" + threads.indexOf(thread))
|
|
return res.render("threads", { threads, links, user })
|
|
}
|
|
const thread = new Thread().getId(id);
|
|
|
|
if (thread)
|
|
res.render("thread", { thread, user })
|
|
else
|
|
error(res, 404, "We have not got this thread.");
|
|
} |