UP checkAuthenticated.js -> ts
This commit is contained in:
20
miscellaneous/checkAuthenticated.ts
Normal file
20
miscellaneous/checkAuthenticated.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
13
miscellaneous/custom.d.ts
vendored
Normal file
13
miscellaneous/custom.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
declare namespace Express {
|
||||
export interface Request {
|
||||
user?: Document<unknown, {}, {
|
||||
pass?: string | undefined;
|
||||
omdb_key?: string | undefined;
|
||||
twitch_client_id?: string | undefined;
|
||||
twitch_client_secret?: string | undefined;
|
||||
mac_address?: string | undefined;
|
||||
}>
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user