mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
100 lines
2.9 KiB
TypeScript
100 lines
2.9 KiB
TypeScript
/*
|
|
* This file is part of a proprietary work.
|
|
*
|
|
* Copyright (c) 2025 Fossorial, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This file is licensed under the Fossorial Commercial License.
|
|
* You may not use this file except in compliance with the License.
|
|
* Unauthorized use, copying, modification, or distribution is strictly prohibited.
|
|
*
|
|
* This file is not licensed under the AGPLv3.
|
|
*/
|
|
|
|
import { Request, Response, NextFunction } from "express";
|
|
import { z } from "zod";
|
|
import { db } from "@server/db";
|
|
import response from "@server/lib/response";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import createHttpError from "http-errors";
|
|
import logger from "@server/logger";
|
|
import { fromError } from "zod-validation-error";
|
|
import { idp, idpOidcConfig, idpOrg } from "@server/db";
|
|
import { eq } from "drizzle-orm";
|
|
import { OpenAPITags, registry } from "@server/openApi";
|
|
|
|
const paramsSchema = z
|
|
.object({
|
|
orgId: z.string().optional(), // Optional; used with org idp in saas
|
|
idpId: z.coerce.number<number>()
|
|
})
|
|
.strict();
|
|
|
|
registry.registerPath({
|
|
method: "delete",
|
|
path: "/org/{orgId}/idp/{idpId}",
|
|
description: "Delete IDP for a specific organization.",
|
|
tags: [OpenAPITags.Idp, OpenAPITags.Org],
|
|
request: {
|
|
params: paramsSchema
|
|
},
|
|
responses: {}
|
|
});
|
|
|
|
export async function deleteOrgIdp(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedParams = paramsSchema.safeParse(req.params);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const { idpId } = parsedParams.data;
|
|
|
|
// Check if IDP exists
|
|
const [existingIdp] = await db
|
|
.select()
|
|
.from(idp)
|
|
.where(eq(idp.idpId, idpId));
|
|
|
|
if (!existingIdp) {
|
|
return next(createHttpError(HttpCode.NOT_FOUND, "IdP not found"));
|
|
}
|
|
|
|
// Delete the IDP and its related records in a transaction
|
|
await db.transaction(async (trx) => {
|
|
// Delete OIDC config if it exists
|
|
await trx
|
|
.delete(idpOidcConfig)
|
|
.where(eq(idpOidcConfig.idpId, idpId));
|
|
|
|
// Delete IDP-org mappings
|
|
await trx.delete(idpOrg).where(eq(idpOrg.idpId, idpId));
|
|
|
|
// Delete the IDP itself
|
|
await trx.delete(idp).where(eq(idp.idpId, idpId));
|
|
});
|
|
|
|
return response<null>(res, {
|
|
data: null,
|
|
success: true,
|
|
error: false,
|
|
message: "IdP deleted successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
}
|