mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-22 20:10:40 +03:00
26 lines
983 B
JavaScript
26 lines
983 B
JavaScript
const RL = require('express-rate-limit');
|
|
const nodemailer = require("nodemailer");
|
|
const config = require("./config.json");
|
|
require("dotenv").config();
|
|
module.exports = {
|
|
threadEnum: ["OPEN", "APPROVAL", "DELETED"],
|
|
themes: ["default", "black"],
|
|
RL(windowMs = 60_000, max = 1) {
|
|
return RL({
|
|
windowMs, max, standardHeaders: true, legacyHeaders: false,
|
|
handler: (req, res, next, opts) => !req.user?.admin ? res.error(opts.statusCode, "You are begin ratelimited") : next()
|
|
})
|
|
},
|
|
emailRegEx: /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,
|
|
|
|
|
|
}
|
|
|
|
if (config.email_auth)
|
|
module.exports.transporter = nodemailer.createTransport({
|
|
service: process.env.EMAIL_SERVICE, direct: true, secure: true,
|
|
auth: {
|
|
user: process.env.EMAIL_USER,
|
|
pass: process.env.EMAIL_PASS
|
|
}
|
|
});
|