26 lines
760 B
TypeScript
26 lines
760 B
TypeScript
import { NextFunction, Request, Response } from "express";
|
|
import { HTTPError } from "lambert-server";
|
|
import { checkToken } from "discord-server-util";
|
|
|
|
export const NO_AUTHORIZATION_ROUTES = ["/api/v8/auth/login", "/api/v8/auth/register"];
|
|
|
|
declare global {
|
|
namespace Express {
|
|
interface Request {
|
|
userid: any;
|
|
token: any;
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function Authentication(req: Request, res: Response, next: NextFunction) {
|
|
if (NO_AUTHORIZATION_ROUTES.includes(req.url)) return next();
|
|
if (!req.headers.authorization) return next(new HTTPError("Missing Authorization Header", 401));
|
|
// TODO: check if user is banned/token expired
|
|
|
|
const decoded: any = await checkToken(req.headers.authorization);
|
|
|
|
req.token = decoded;
|
|
req.userid = decoded.id;
|
|
}
|