mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-09-13 14:18:57 +02:00
fix: close account authorization gaps (#755)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import * as express from "express";
|
||||
|
||||
export function isDisabledAccount(
|
||||
status: string | undefined
|
||||
): status is "banned" | "removed" {
|
||||
return status === "banned" || status === "removed";
|
||||
}
|
||||
|
||||
export function getLoginToken(
|
||||
req: Pick<express.Request, "headers" | "body">
|
||||
): string | null {
|
||||
const authorization = req.headers.authorization;
|
||||
if (typeof authorization === "string") {
|
||||
const match = authorization.match(/^Bearer\s+(.+)$/i);
|
||||
if (match) return match[1].trim();
|
||||
}
|
||||
|
||||
if (req.body && typeof req.body.token === "string") {
|
||||
return req.body.token.trim() || null;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
Reference in New Issue
Block a user