kutt/server/handlers/helpers.handler.js

142 lines
3.0 KiB
JavaScript
Raw Normal View History

2024-08-21 21:22:59 +03:30
const { validationResult } = require("express-validator");
const signale = require("signale");
const { logger } = require("../config/winston");
2024-08-31 12:19:39 +03:30
const { CustomError, sanitize } = require("../utils");
const query = require("../queries")
2024-08-21 21:22:59 +03:30
const env = require("../env");
// export const ip: Handler = (req, res, next) => {
// req.realIP =
// (req.headers["x-real-ip"] as string) || req.connection.remoteAddress || "";
// return next();
// };
/**
* @type {import("express").Handler}
*/
function isHTML(req, res, next) {
const accepts = req.accepts(["json", "html"]);
req.isHTML = accepts === "html";
next();
}
2024-08-31 12:19:39 +03:30
function addNoLayoutLocals(req, res, next) {
2024-08-21 21:22:59 +03:30
/**
* @type {import("express").Handler}
*/
res.locals.layout = null;
next();
}
function viewTemplate(template) {
return function (req, res, next) {
req.viewTemplate = template;
next();
}
}
2024-08-31 12:19:39 +03:30
/**
* @type {import("express").Handler}
*/
function addConfigLocals(req, res, next) {
res.locals.default_domain = env.DEFAULT_DOMAIN;
next();
}
/**
* @type {import("express").Handler}
*/
async function addUserLocals(req, res, next) {
const user = req.user;
res.locals.user = user;
res.locals.domains = user && (await query.domain.get({ user_id: user.id })).map(sanitize.domain);
next();
}
2024-08-21 21:22:59 +03:30
/**
* @type {import("express").ErrorRequestHandler}
*/
function error(error, req, res, _next) {
if (env.isDev) {
signale.fatal(error);
}
const message = error instanceof CustomError ? error.message : "An error occurred.";
const statusCode = error.statusCode ?? 500;
if (req.isHTML && req.viewTemplate) {
res.render(req.viewTemplate, { error: message });
return;
}
2024-08-31 12:19:39 +03:30
return res.status(statusCode).json({ error: message });
2024-08-21 21:22:59 +03:30
};
/**
* @type {import("express").Handler}
*/
function verify(req, res, next) {
const result = validationResult(req);
if (result.isEmpty()) return next();
const errors = result.array();
const error = errors[0].msg;
res.locals.errors = {};
errors.forEach(e => {
if (res.locals.errors[e.param]) return;
res.locals.errors[e.param] = e.msg;
});
throw new CustomError(error, 400);
}
2024-08-31 12:19:39 +03:30
function parseQuery(req, res, next) {
2024-08-21 21:22:59 +03:30
const { admin } = req.user || {};
if (
typeof req.query.limit !== "undefined" &&
typeof req.query.limit !== "string"
) {
return res.status(400).json({ error: "limit query is not valid." });
}
if (
typeof req.query.skip !== "undefined" &&
typeof req.query.skip !== "string"
) {
return res.status(400).json({ error: "skip query is not valid." });
}
if (
typeof req.query.search !== "undefined" &&
typeof req.query.search !== "string"
) {
return res.status(400).json({ error: "search query is not valid." });
}
const limit = parseInt(req.query.limit) || 10;
const skip = parseInt(req.query.skip) || 0;
req.context = {
limit: limit > 50 ? 50 : limit,
skip,
all: admin ? req.query.all === "true" : false
};
next();
};
module.exports = {
2024-08-31 12:19:39 +03:30
addConfigLocals,
addNoLayoutLocals,
addUserLocals,
2024-08-21 21:22:59 +03:30
error,
isHTML,
2024-08-31 12:19:39 +03:30
parseQuery,
2024-08-21 21:22:59 +03:30
verify,
viewTemplate,
}