mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
150 lines
4.3 KiB
TypeScript
150 lines
4.3 KiB
TypeScript
import { verify } from "@node-rs/argon2";
|
|
import { generateSessionToken } from "@server/auth/sessions/app";
|
|
import db from "@server/db";
|
|
import { orgs, resourcePassword, resources } from "@server/db/schemas";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import response from "@server/lib/response";
|
|
import { eq } from "drizzle-orm";
|
|
import { NextFunction, Request, Response } from "express";
|
|
import createHttpError from "http-errors";
|
|
import { z } from "zod";
|
|
import { fromError } from "zod-validation-error";
|
|
import { createResourceSession } from "@server/auth/sessions/resource";
|
|
import logger from "@server/logger";
|
|
import { verifyPassword } from "@server/auth/password";
|
|
import config from "@server/lib/config";
|
|
|
|
export const authWithPasswordBodySchema = z
|
|
.object({
|
|
password: z.string()
|
|
})
|
|
.strict();
|
|
|
|
export const authWithPasswordParamsSchema = z
|
|
.object({
|
|
resourceId: z
|
|
.string()
|
|
.transform(Number)
|
|
.pipe(z.number().int().positive())
|
|
})
|
|
.strict();
|
|
|
|
export type AuthWithPasswordResponse = {
|
|
session?: string;
|
|
};
|
|
|
|
export async function authWithPassword(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
const parsedBody = authWithPasswordBodySchema.safeParse(req.body);
|
|
|
|
if (!parsedBody.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedBody.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const parsedParams = authWithPasswordParamsSchema.safeParse(req.params);
|
|
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const { resourceId } = parsedParams.data;
|
|
const { password } = parsedBody.data;
|
|
|
|
try {
|
|
const [result] = await db
|
|
.select()
|
|
.from(resources)
|
|
.leftJoin(
|
|
resourcePassword,
|
|
eq(resourcePassword.resourceId, resources.resourceId)
|
|
)
|
|
.leftJoin(orgs, eq(orgs.orgId, resources.orgId))
|
|
.where(eq(resources.resourceId, resourceId))
|
|
.limit(1);
|
|
|
|
const resource = result?.resources;
|
|
const org = result?.orgs;
|
|
const definedPassword = result?.resourcePassword;
|
|
|
|
if (!org) {
|
|
return next(
|
|
createHttpError(HttpCode.BAD_REQUEST, "Org does not exist")
|
|
);
|
|
}
|
|
|
|
if (!resource) {
|
|
return next(
|
|
createHttpError(HttpCode.BAD_REQUEST, "Resource does not exist")
|
|
);
|
|
}
|
|
|
|
if (!definedPassword) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.UNAUTHORIZED,
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
"Resource has no password protection"
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
const validPassword = await verifyPassword(
|
|
password,
|
|
definedPassword.passwordHash
|
|
);
|
|
if (!validPassword) {
|
|
if (config.getRawConfig().app.log_failed_attempts) {
|
|
logger.info(
|
|
`Resource password incorrect. Resource ID: ${resource.resourceId}. IP: ${req.ip}.`
|
|
);
|
|
}
|
|
return next(
|
|
createHttpError(HttpCode.UNAUTHORIZED, "Incorrect password")
|
|
);
|
|
}
|
|
|
|
const token = generateSessionToken();
|
|
await createResourceSession({
|
|
resourceId,
|
|
token,
|
|
passwordId: definedPassword.passwordId,
|
|
isRequestToken: true,
|
|
expiresAt: Date.now() + 1000 * 30, // 30 seconds
|
|
sessionLength: 1000 * 30,
|
|
doNotExtend: true
|
|
});
|
|
|
|
return response<AuthWithPasswordResponse>(res, {
|
|
data: {
|
|
session: token
|
|
},
|
|
success: true,
|
|
error: false,
|
|
message: "Authenticated with resource successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (e) {
|
|
logger.error(e);
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.INTERNAL_SERVER_ERROR,
|
|
"Failed to authenticate with resource"
|
|
)
|
|
);
|
|
}
|
|
}
|