personal_website/miscellaneous/checkAuthenticated.ts
2024-07-16 14:24:01 +02:00

20 lines
633 B
TypeScript

import { type Express, type NextFunction, type Request, type Response } from "express";
import UserModel from '../models/userModel';
async function checkAuthenticated(req: Request, res: Response, next: NextFunction) {
try {
const password = req.body.pass;
const userFound = await UserModel.findOne({ pass: password });
if (!userFound) {
return res.status(404).json({ message: 'Wrong password' });
}
req.user = userFound;
return next();
} catch (err) {
console.log(err);
return res.status(500).json({ message: 'Error when getting transactions.' });
}
}
export default checkAuthenticated;