mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { Request, Response, NextFunction } from "express";
|
|
import createHttpError from "http-errors";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import response from "@server/lib/response";
|
|
import logger from "@server/logger";
|
|
import {
|
|
createBlankSessionTokenCookie,
|
|
invalidateSession,
|
|
SESSION_COOKIE_NAME
|
|
} from "@server/auth/sessions/app";
|
|
|
|
export async function logout(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
const sessionId = req.cookies[SESSION_COOKIE_NAME];
|
|
|
|
if (!sessionId) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
"You must be logged in to sign out"
|
|
)
|
|
);
|
|
}
|
|
|
|
try {
|
|
await invalidateSession(sessionId);
|
|
res.setHeader("Set-Cookie", createBlankSessionTokenCookie());
|
|
|
|
return response<null>(res, {
|
|
data: null,
|
|
success: true,
|
|
error: false,
|
|
message: "Logged out successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "Failed to log out")
|
|
);
|
|
}
|
|
}
|