Files
calendar/packages/lib/server/repository/PrismaApiKeyRepository.ts
T
Syed Ali ShahbazandGitHub a2bee76da6 feat: Add spam blocker DI structure (#24040)
* --init

* --

* replace old structure with new DI

* fix type

* --

* moving stuff around

* moving stuff around again

* minor clean up

* --

* resolve conflict

* clea up

* old schema clean up

* further clean up

* removing unwanted merged responsibilities

* --

* improve DI and SOLID

* some type fixes

* --1

* clean up --cont

* fix DI in facade for test

* more fix

* fix

* checking

* o.o

* fix import

* fix failing test --2

* fix failing test --3

* fix failing test --4

* normalization use

* introduce facade container injection

* uniform async telemetry spans

* further improvements

* replace prismock with repo mocks

* ensure we don't pass prisma outside of repo

* fix import

* remove try catch from repo calls

* async await fixes

* using deps pattern

* more clean up and fixes

* more clean up

* address feedback --1

* separation of concern

* clean up

* test clean up

* feedback --2

* remove extra fetch

* remove await

* migrate _post test from prismock

* fix type

* --

* fix tokens path

* rename AuditRepo

* test --1

* update _post to integration test

* fix test

* fix test

* test fix maybe?

* --

* feedback

* feedback

* fixes

* more feedback

* NIT

* use sentry and logger imports as planned

* assertion in test

* add missing test case

* add tests for controllers and services

* NITs

* fix domain normalisation
2025-10-14 10:16:18 +03:00

87 lines
1.9 KiB
TypeScript

import { v4 as uuidv4 } from "uuid";
import { generateUniqueAPIKey as generateHashedApiKey } from "@calcom/ee/api-keys/lib/apiKeys";
import type { PrismaClient } from "@calcom/prisma";
export class PrismaApiKeyRepository {
constructor(private prismaClient: PrismaClient) {}
static async withGlobalPrisma() {
return new PrismaApiKeyRepository((await import("@calcom/prisma")).prisma);
}
async findByHashedKey(hashedKey: string) {
return this.prismaClient.apiKey.findUnique({
where: { hashedKey },
select: {
id: true,
hashedKey: true,
userId: true,
expiresAt: true,
user: {
select: {
role: true,
locked: true,
email: true,
},
},
},
});
}
async findApiKeysFromUserId({ userId }: { userId: number }) {
const apiKeys = await this.prismaClient.apiKey.findMany({
where: {
userId,
OR: [
{
NOT: {
appId: "zapier",
},
},
{
appId: null,
},
],
},
orderBy: { createdAt: "desc" },
});
return apiKeys.filter((apiKey) => {
if (apiKey.note?.startsWith("Cal AI Phone API Key")) {
return false;
}
return true;
});
}
async createApiKey({
userId,
teamId,
note,
expiresAt,
}: {
userId: number;
teamId?: number;
note?: string;
expiresAt?: Date | null;
}) {
const [hashedApiKey, apiKey] = generateHashedApiKey();
await this.prismaClient.apiKey.create({
data: {
id: uuidv4(),
userId,
teamId,
expiresAt,
hashedKey: hashedApiKey,
note: note,
},
});
const apiKeyPrefix = process.env.API_KEY_PREFIX ?? "cal_";
const prefixedApiKey = `${apiKeyPrefix}${apiKey}`;
return prefixedApiKey;
}
}