summary refs log tree commit diff
path: root/api/src/middlewares/Authentication.ts
blob: 9bd2fcb72e0c47e0bba98a8b78397cf9d1e809e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { NextFunction, Request, Response } from "express";
import { HTTPError } from "lambert-server";
import { checkToken, Config } from "@fosscord/util";

export const NO_AUTHORIZATION_ROUTES = [
	"/auth/login",
	"/auth/register",
	"/webhooks/",
	"/ping",
	"/gateway",
	"/experiments"
	// /^\/api(\/v\d+)?\/guilds\/\d+\/widget\.(json|png)/
];

export const API_PREFIX = /^\/api(\/v\d+)?/;
export const API_PREFIX_TRAILING_SLASH = /^\/api(\/v\d+)?\//;

declare global {
	namespace Express {
		interface Request {
			user_id: any;
			user_bot: boolean;
			token: any;
		}
	}
}
// TODO wenn client offen ist, wird http://localhost:8080/api/v9/users/@me/guild-events blockiert?

export async function Authentication(req: Request, res: Response, next: NextFunction) {
	if (req.method === "OPTIONS") return res.sendStatus(204);
	if (req.url.startsWith("/invites") && req.method === "GET") return next(); // @ts-ignore
	if (NO_AUTHORIZATION_ROUTES.some((x) => req.url.startsWith(x) || x.test?.(req.url))) return next();
	if (!req.headers.authorization) return next(new HTTPError("Missing Authorization Header", 401));

	try {
		const { jwtSecret } = Config.get().security;

		const { decoded, user }: any = await checkToken(req.headers.authorization, jwtSecret);

		req.token = decoded;
		req.user_id = decoded.id;
		req.user_bot = user.bot;
		return next();
	} catch (error) {
		return next(new HTTPError(error.toString(), 400));
	}
}