-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Expand file tree
/
Copy pathcreate.handler.ts
More file actions
45 lines (35 loc) · 1.43 KB
/
create.handler.ts
File metadata and controls
45 lines (35 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { v4 } from "uuid";
import { generateUniqueAPIKey } from "@calcom/ee/api-keys/lib/apiKeys";
import prisma from "@calcom/prisma";
import { MembershipRole } from "@calcom/prisma/enums";
import type { TrpcSessionUser } from "../../../types";
import { checkPermissions } from "./_auth-middleware";
import type { TCreateInputSchema } from "./create.schema";
type CreateHandlerOptions = {
ctx: {
user: Pick<NonNullable<TrpcSessionUser>, "id">;
};
input: TCreateInputSchema;
};
export const createHandler = async ({ ctx, input }: CreateHandlerOptions) => {
const [hashedApiKey, apiKey] = generateUniqueAPIKey();
// Here we snap never expires before deleting it so it's not passed to prisma create call.
const { neverExpires, teamId, ...rest } = input;
const userId = ctx.user.id;
/** Only admin or owner can create apiKeys of team (if teamId is passed) */
await checkPermissions({ userId, teamId, role: { in: [MembershipRole.OWNER, MembershipRole.ADMIN] } });
await prisma.apiKey.create({
data: {
id: v4(),
userId: ctx.user.id,
teamId,
...rest,
// And here we pass a null to expiresAt if never expires is true. otherwise just pass expiresAt from input
expiresAt: neverExpires ? null : rest.expiresAt,
hashedKey: hashedApiKey,
},
});
const apiKeyPrefix = process.env.API_KEY_PREFIX ?? "cal_";
const prefixedApiKey = `${apiKeyPrefix}${apiKey}`;
return prefixedApiKey;
};