2022-08-27 10:31:16 +03:00
|
|
|
const { def_theme } = require("./config.json"),
|
2022-08-29 19:31:59 +03:00
|
|
|
ipBlock = require('express-ip-block'),
|
|
|
|
session = require('express-session'),
|
|
|
|
{ UserModel, BanModel } = require("./models"),
|
|
|
|
bodyParser = require('body-parser'),
|
|
|
|
port = process.env.PORT || 3000,
|
|
|
|
mongoose = require("mongoose"),
|
|
|
|
express = require('express'),
|
|
|
|
fs = require("fs"),
|
|
|
|
app = express();
|
|
|
|
app.ips = [];
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-08-09 19:16:34 +03:00
|
|
|
require("dotenv").config();
|
2022-08-29 19:31:59 +03:00
|
|
|
mongoose.connect(process.env.MONGO_DB_URL,
|
|
|
|
async () => console.log("Connected to mongoDB with", app.ips = await BanModel.find({}).select("ip"), "banned IPs"));
|
2022-04-06 21:14:46 +03:00
|
|
|
|
2022-03-13 16:16:46 +03:00
|
|
|
app.set("view engine", "ejs");
|
2022-08-29 19:31:59 +03:00
|
|
|
|
|
|
|
app.use(session({ secret: 'secret', resave: true, saveUninitialized: true }),
|
|
|
|
bodyParser.urlencoded({ extended: true }),
|
|
|
|
express.static("public"), express.json(), ipBlock(app.ips),
|
|
|
|
async (req, res, next) => {
|
2022-08-11 03:12:40 +03:00
|
|
|
req.user = await UserModel.get(req.session.userid);
|
2022-08-27 10:31:16 +03:00
|
|
|
res.reply = (page, options = {}, status = 200) => res.status(status)
|
2022-08-29 19:31:59 +03:00
|
|
|
.render(page, { user: req.user, theme: req.user?.theme || def_theme, ...options });
|
2022-08-27 10:31:16 +03:00
|
|
|
|
|
|
|
res.error = (type, error) => res.reply("error", { type, error }, type);
|
|
|
|
|
2022-08-24 22:10:23 +03:00
|
|
|
if (req.user?.deleted) {
|
2022-08-29 19:31:59 +03:00
|
|
|
req.session.destroy();
|
|
|
|
return res.error(403, "Your account has been deleted.");
|
2022-08-24 22:09:21 +03:00
|
|
|
}
|
2022-08-11 03:12:40 +03:00
|
|
|
next();
|
2022-08-29 19:31:59 +03:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2022-03-13 16:16:46 +03:00
|
|
|
|
2022-03-22 00:10:29 +03:00
|
|
|
for (const file of fs.readdirSync("./routes"))
|
2022-08-29 19:31:59 +03:00
|
|
|
app.use("/" + file.replace(".js", ""), require(`./routes/${file}`));
|
2022-03-21 23:53:22 +03:00
|
|
|
|
2022-08-11 03:12:40 +03:00
|
|
|
app.all("*", (req, res) => res.error(404, "We have not got this page."));
|
2022-03-21 23:53:22 +03:00
|
|
|
|
2022-08-11 00:38:44 +03:00
|
|
|
app.listen(port, () => console.log("akf-forum on port:", port));
|