34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
import { DelegationCredentialRepository } from "@calcom/features/delegation-credentials/repositories/DelegationCredentialRepository";
|
|
import { encryptedServiceAccountKeySchema } from "@calcom/lib/server/serviceAccountKey";
|
|
import type { PrismaClient } from "@calcom/prisma";
|
|
|
|
import { ensureNoServiceAccountKey } from "./utils";
|
|
|
|
export default async function handler({
|
|
ctx,
|
|
}: {
|
|
ctx: { prisma: PrismaClient; user: { id: number; organization: { id: number | null } } };
|
|
}) {
|
|
const { user } = ctx;
|
|
|
|
const organizationId = user.organization?.id;
|
|
|
|
if (!organizationId) {
|
|
throw new Error("You must be in an organization to list delegation credentials");
|
|
}
|
|
const delegationCredentials =
|
|
await DelegationCredentialRepository.findByOrgIdIncludeSensitiveServiceAccountKey({
|
|
organizationId,
|
|
});
|
|
|
|
return delegationCredentials.map((delegation) => {
|
|
// Let's not parse the service account key here, we should be able to fix the item with the problem, so we always try to return the complete list
|
|
const serviceAccountKey = encryptedServiceAccountKeySchema.safeParse(delegation.serviceAccountKey);
|
|
|
|
return ensureNoServiceAccountKey({
|
|
...delegation,
|
|
serviceAccountClientId: serviceAccountKey.success ? (serviceAccountKey.data?.client_id ?? null) : null,
|
|
});
|
|
});
|
|
}
|