mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
48 lines
No EOL
1.6 KiB
JavaScript
48 lines
No EOL
1.6 KiB
JavaScript
const { UserModel, SecretModel } = require("../models");
|
|
const { Router } = require("express")
|
|
const bcrypt = require("bcrypt");
|
|
const rateLimit = require('express-rate-limit');
|
|
const app = Router();
|
|
|
|
app.get("/", (req, res) => res.reply("register", { user: null }));
|
|
|
|
app.post("/", rateLimit({
|
|
windowMs: 24 * 60 * 60_000, max: 5, standardHeaders: true, legacyHeaders: false,
|
|
handler: (_r, response, _n, options) => response.error(options.statusCode, "You are begin ratelimited")
|
|
}), async (req, res) => {
|
|
|
|
req.session.userID = null;
|
|
|
|
let { username = null, password: body_pass = null, about } = req.body;
|
|
|
|
if (!username || !body_pass) return res.error(400, "You forgot entering some values");
|
|
if (username.length < 3 || username.length > 25) return res.error(400, "Username must be between 3 - 25 characters");
|
|
if (body_pass.length < 3 || body_pass.length > 25) return res.error(400, "Password must be between 3 - 25 characters");
|
|
|
|
const user = await SecretModel.findOne({ username });
|
|
|
|
if (user) return res.error(400, `We have got an user named ${username}!`)
|
|
|
|
const user2 = new UserModel({ name: username })
|
|
|
|
if (about) {
|
|
if (about.length > 256) return res.error(400, "about must be under 256 characters");
|
|
user2.about = about;
|
|
}
|
|
|
|
await user2.takeId()
|
|
await user2.save();
|
|
|
|
const salt = await bcrypt.genSalt(10);
|
|
const password = await bcrypt.hash(body_pass, salt);
|
|
await SecretModel.create({ username, password, id: user2.id })
|
|
req.session.userID = user2.id;
|
|
|
|
res.redirect('/');
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
module.exports = app; |