Files
calendar/packages/lib/server/repository/hashedLinkRepository.ts
T
Syed Ali ShahbazandGitHub 66b52bb19f feat: Enhance private link expiration with usage and date limits (#22304)
* init

* fix type

* fix a re-render infinite loop because of missing readOnly (╯°□°)╯︵ ┻━┻)

* further fixes

* improvement

* fix expiry datetime check

* remove unnecessary prismaMock def

* revert

* fix test

* add test ids

* remove unit tests in favor of e2e

* e2e test update

* fix e2e

* fix e2e

* remove unnecessary change

* abstract into injectable object

* further improvements

* fix label not selecting radio

* fix type

* code improvement

* DI implementation

* fix type

* fix quick copy

* code improvement and a few fixes

* further improvements and NITS

* further into DI

* select

* improve link list sorting

* prep for easier conflict resolution

* add back translations

* using useCopy instead

* improvement

* add index to update salt and have different hash generation

* fix private link description

* fix increment regression in expiry logic

* fixes

* address feedback

* use extractHostTimezone in event type listing

* remove unused function

* remove translationBundler

* -_-

* address feedback

* further changes

* address more feedback

* NIT

* address improvement suggestions

* use extractHostTimezone

* remove console log

* pre update

* code improvement

* further fixes

* cleanup

* -_-
2025-07-24 19:54:44 +01:00

263 lines
5.6 KiB
TypeScript

import type { PrismaClient } from "@calcom/prisma";
import { prisma } from "@calcom/prisma";
import type { Prisma } from "@calcom/prisma/client";
export type HashedLinkInputType = {
link: string;
expiresAt?: Date | null;
maxUsageCount?: number | null;
};
export const hashedLinkSelect = {
id: true,
link: true,
eventTypeId: true,
expiresAt: true,
maxUsageCount: true,
usageCount: true,
eventType: {
select: {
userId: true,
teamId: true,
users: {
select: {
username: true,
profiles: {
select: {
id: true,
organizationId: true,
username: true,
},
},
},
},
team: {
select: {
id: true,
slug: true,
hideBranding: true,
parent: {
select: {
hideBranding: true,
},
},
members: {
select: {
user: {
select: {
timeZone: true,
},
},
},
take: 1,
},
},
},
hosts: {
select: {
user: {
select: {
timeZone: true,
},
},
},
},
profile: {
select: {
user: {
select: {
timeZone: true,
},
},
},
},
owner: {
select: {
timeZone: true,
},
},
},
},
} satisfies Prisma.HashedLinkSelect;
export class HashedLinkRepository {
constructor(private readonly prismaClient: PrismaClient) {}
static create() {
return new HashedLinkRepository(prisma);
}
async deleteLinks(eventTypeId: number, linksToDelete: string[]) {
if (linksToDelete.length === 0) return;
return await this.prismaClient.hashedLink.deleteMany({
where: {
eventTypeId,
link: { in: linksToDelete },
},
});
}
async createLink(
eventTypeId: number,
linkData: { link: string; expiresAt: Date | null; maxUsageCount?: number | null }
) {
const data: Prisma.HashedLinkCreateManyInput = {
eventTypeId,
link: linkData.link,
expiresAt: linkData.expiresAt,
};
if (linkData.maxUsageCount && Number.isFinite(linkData.maxUsageCount)) {
data.maxUsageCount = linkData.maxUsageCount;
}
return await this.prismaClient.hashedLink.create({ data });
}
async updateLink(
eventTypeId: number,
linkData: { link: string; expiresAt: Date | null; maxUsageCount?: number | null }
) {
const updateData: Prisma.HashedLinkUpdateManyMutationInput = {
expiresAt: linkData.expiresAt,
};
if (typeof linkData.maxUsageCount === "number" && linkData.maxUsageCount !== null) {
updateData.maxUsageCount = linkData.maxUsageCount;
}
return await this.prismaClient.hashedLink.updateMany({
where: {
eventTypeId,
link: linkData.link,
},
data: updateData,
});
}
async findLinksByEventTypeId(eventTypeId: number) {
return await this.prismaClient.hashedLink.findMany({
where: {
eventTypeId,
},
select: {
link: true,
expiresAt: true,
maxUsageCount: true,
usageCount: true,
},
});
}
async findLinkWithEventTypeDetails(linkId: string) {
return await this.prismaClient.hashedLink.findUnique({
where: {
link: linkId,
},
select: {
id: true,
link: true,
expiresAt: true,
maxUsageCount: true,
usageCount: true,
eventTypeId: true,
eventType: {
select: {
teamId: true,
userId: true,
},
},
},
});
}
async findLinkWithDetails(linkId: string) {
return await this.prismaClient.hashedLink.findUnique({
where: {
link: linkId,
},
select: hashedLinkSelect,
});
}
async findLinksWithEventTypeDetails(linkIds: string[]) {
return await this.prismaClient.hashedLink.findMany({
where: {
link: {
in: linkIds,
},
},
select: {
id: true,
link: true,
expiresAt: true,
maxUsageCount: true,
usageCount: true,
eventTypeId: true,
eventType: {
select: {
teamId: true,
userId: true,
},
},
},
});
}
async findLinkWithValidationData(linkId: string) {
return await this.prismaClient.hashedLink.findUnique({
where: {
link: linkId,
},
select: {
id: true,
expiresAt: true,
maxUsageCount: true,
usageCount: true,
eventType: {
select: {
userId: true,
teamId: true,
hosts: {
select: {
user: {
select: {
timeZone: true,
},
},
},
},
profile: {
select: {
user: {
select: {
timeZone: true,
},
},
},
},
owner: {
select: {
timeZone: true,
},
},
},
},
},
});
}
async incrementUsage(linkId: number, maxUsageCount: number) {
return await this.prismaClient.hashedLink.update({
where: {
id: linkId,
usageCount: { lt: maxUsageCount },
},
data: {
usageCount: { increment: 1 },
},
});
}
}