* feat: optimize Prisma queries by replacing findFirst with findUnique where applicable - Replace findFirst/findFirstOrThrow with findUnique/findUniqueOrThrow for queries using unique constraints - Maintain existing functionality and error handling behavior - Focus on queries using primary keys and unique index fields from schema - Revert problematic changes that caused test failures to maintain stability Co-Authored-By: benny@cal.com <benny@cal.com> * revert: exclude API files from Prisma query optimizations per user request - Reverted all 55 API-related files to their original state - Kept all non-API Prisma query optimizations intact - API files include apps/api/v1, apps/api/v2, apps/web/app/api, and packages/app-store/*/api - Non-API optimizations remain for packages/lib, packages/features, apps/web (non-api), etc. Co-Authored-By: benny@cal.com <benny@cal.com> * feat: optimize membership query in attributeUtils to use findUnique with userId_teamId constraint Co-Authored-By: benny@cal.com <benny@cal.com> * revert: exclude test files from Prisma query optimizations per user request Co-Authored-By: benny@cal.com <benny@cal.com> * revert: revert attributeUtils.ts to use findFirst for test compatibility Co-Authored-By: benny@cal.com <benny@cal.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: benny@cal.com <benny@cal.com> Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com>
79 lines
1.9 KiB
TypeScript
79 lines
1.9 KiB
TypeScript
import { randomBytes } from "crypto";
|
|
|
|
import dayjs from "@calcom/dayjs";
|
|
import { prisma } from "@calcom/prisma";
|
|
import type { AccessScope } from "@calcom/prisma/enums";
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/types";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
import type { TGenerateAuthCodeInputSchema } from "./generateAuthCode.schema";
|
|
|
|
type AddClientOptions = {
|
|
ctx: {
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
input: TGenerateAuthCodeInputSchema;
|
|
};
|
|
|
|
export const generateAuthCodeHandler = async ({ ctx, input }: AddClientOptions) => {
|
|
const { clientId, scopes, teamSlug } = input;
|
|
const client = await prisma.oAuthClient.findUnique({
|
|
where: {
|
|
clientId,
|
|
},
|
|
select: {
|
|
clientId: true,
|
|
redirectUri: true,
|
|
name: true,
|
|
},
|
|
});
|
|
|
|
if (!client) {
|
|
throw new TRPCError({ code: "UNAUTHORIZED", message: "Client ID not valid" });
|
|
}
|
|
const authorizationCode = generateAuthorizationCode();
|
|
|
|
const team = teamSlug
|
|
? await prisma.team.findFirst({
|
|
where: {
|
|
slug: teamSlug,
|
|
members: {
|
|
some: {
|
|
userId: ctx.user.id,
|
|
role: {
|
|
in: ["OWNER", "ADMIN"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
: undefined;
|
|
|
|
if (teamSlug && !team) {
|
|
throw new TRPCError({ code: "UNAUTHORIZED" });
|
|
}
|
|
|
|
await prisma.accessCode.create({
|
|
data: {
|
|
code: authorizationCode,
|
|
clientId,
|
|
userId: !teamSlug ? ctx.user.id : undefined,
|
|
teamId: team ? team.id : undefined,
|
|
expiresAt: dayjs().add(10, "minutes").toDate(),
|
|
scopes: scopes as [AccessScope],
|
|
},
|
|
});
|
|
return { client, authorizationCode };
|
|
};
|
|
|
|
function generateAuthorizationCode() {
|
|
const randomBytesValue = randomBytes(40);
|
|
const authorizationCode = randomBytesValue
|
|
.toString("base64")
|
|
.replace(/=/g, "")
|
|
.replace(/\+/g, "-")
|
|
.replace(/\//g, "_");
|
|
return authorizationCode;
|
|
}
|