67 lines
2.2 KiB
TypeScript
67 lines
2.2 KiB
TypeScript
import type { Prisma } from "@prisma/client";
|
|
import type { NextApiRequest } from "next";
|
|
|
|
import { HttpError } from "@calcom/lib/http-error";
|
|
import { defaultResponder } from "@calcom/lib/server";
|
|
|
|
import {
|
|
schemaSelectedCalendarPublic,
|
|
schemaSelectedCalendarUpdateBodyParams,
|
|
selectedCalendarIdSchema,
|
|
} from "@lib/validations/selected-calendar";
|
|
|
|
/**
|
|
* @swagger
|
|
* /selected-calendars/{userId}_{integration}_{externalId}:
|
|
* patch:
|
|
* operationId: editSelectedCalendarById
|
|
* summary: Edit a selected calendar
|
|
* parameters:
|
|
* - in: path
|
|
* name: userId
|
|
* schema:
|
|
* type: integer
|
|
* required: true
|
|
* description: userId of the selected calendar to get
|
|
* - in: path
|
|
* name: externalId
|
|
* schema:
|
|
* type: string
|
|
* required: true
|
|
* description: externalId of the selected calendar to get
|
|
* - in: path
|
|
* name: integration
|
|
* schema:
|
|
* type: string
|
|
* required: true
|
|
* description: integration of the selected calendar to get
|
|
* tags:
|
|
* - selected-calendars
|
|
* responses:
|
|
* 201:
|
|
* description: OK, selected-calendar edited successfully
|
|
* 400:
|
|
* description: Bad request. SelectedCalendar body is invalid.
|
|
* 401:
|
|
* description: Authorization information is missing or invalid.
|
|
*/
|
|
export async function patchHandler(req: NextApiRequest) {
|
|
const { prisma, query, userId, isAdmin } = req;
|
|
const userId_integration_externalId = selectedCalendarIdSchema.parse(query);
|
|
const { userId: bodyUserId, ...data } = schemaSelectedCalendarUpdateBodyParams.parse(req.body);
|
|
const args: Prisma.SelectedCalendarUpdateArgs = { where: { userId_integration_externalId }, data };
|
|
|
|
if (!isAdmin && bodyUserId) throw new HttpError({ statusCode: 403, message: `ADMIN required for userId` });
|
|
|
|
if (isAdmin && bodyUserId) {
|
|
const where: Prisma.UserWhereInput = { id: bodyUserId };
|
|
await prisma.user.findFirstOrThrow({ where });
|
|
args.data.userId = bodyUserId;
|
|
}
|
|
|
|
const result = await prisma.selectedCalendar.update(args);
|
|
return { selected_calendar: schemaSelectedCalendarPublic.parse(result) };
|
|
}
|
|
|
|
export default defaultResponder(patchHandler);
|