72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import { UserPermissionRole } from "@prisma/client";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import { z } from "zod";
|
|
|
|
import { symmetricDecrypt } from "@calcom/lib/crypto";
|
|
import { defaultResponder } from "@calcom/lib/server";
|
|
import prisma from "@calcom/prisma";
|
|
import { TRPCError } from "@calcom/trpc/server";
|
|
import { createContext } from "@calcom/trpc/server/createContext";
|
|
import { viewerRouter } from "@calcom/trpc/server/routers/viewer";
|
|
|
|
enum DirectAction {
|
|
ACCEPT = "accept",
|
|
REJECT = "reject",
|
|
}
|
|
|
|
const querySchema = z.object({
|
|
action: z.nativeEnum(DirectAction),
|
|
token: z.string(),
|
|
reason: z.string().optional(),
|
|
});
|
|
|
|
const decryptedSchema = z.object({
|
|
bookingUid: z.string(),
|
|
userId: z.number().int(),
|
|
});
|
|
|
|
async function handler(req: NextApiRequest, res: NextApiResponse<Response>) {
|
|
const { action, token, reason } = querySchema.parse(req.query);
|
|
const { bookingUid, userId } = decryptedSchema.parse(
|
|
JSON.parse(symmetricDecrypt(decodeURIComponent(token), process.env.CALENDSO_ENCRYPTION_KEY || ""))
|
|
);
|
|
|
|
/** We shape the session as required by tRPC router */
|
|
async function sessionGetter() {
|
|
return {
|
|
user: {
|
|
id: userId,
|
|
username: "" /* Not used in this context */,
|
|
role: UserPermissionRole.USER,
|
|
},
|
|
hasValidLicense: true,
|
|
expires: "" /* Not used in this context */,
|
|
};
|
|
}
|
|
|
|
const booking = await prisma.booking.findUniqueOrThrow({
|
|
where: { uid: bookingUid },
|
|
});
|
|
|
|
try {
|
|
/** @see https://trpc.io/docs/server-side-calls */
|
|
const ctx = await createContext({ req, res }, sessionGetter);
|
|
const caller = viewerRouter.createCaller(ctx);
|
|
await caller.bookings.confirm({
|
|
bookingId: booking.id,
|
|
recurringEventId: booking.recurringEventId || undefined,
|
|
confirmed: action === DirectAction.ACCEPT,
|
|
reason,
|
|
});
|
|
} catch (e) {
|
|
let message = "Error confirming booking";
|
|
if (e instanceof TRPCError) message = e.message;
|
|
res.redirect(`/booking/${bookingUid}?error=${encodeURIComponent(message)}`);
|
|
return;
|
|
}
|
|
|
|
res.redirect(`/booking/${bookingUid}`);
|
|
}
|
|
|
|
export default defaultResponder(handler);
|