cal.pub0.org/pages/api/schedules/[id]/_patch.ts

102 lines
3.3 KiB
TypeScript
Raw Normal View History

2022-10-13 20:54:38 +00:00
import type { NextApiRequest } from "next";
2023-02-16 21:01:40 +00:00
import type { z } from "zod";
2022-10-13 20:54:38 +00:00
import { HttpError } from "@calcom/lib/http-error";
2022-10-13 20:54:38 +00:00
import { defaultResponder } from "@calcom/lib/server";
2022-11-25 13:56:58 +00:00
import { schemaSchedulePublic, schemaSingleScheduleBodyParams } from "~/lib/validations/schedule";
import { schemaQueryIdParseInt } from "~/lib/validations/shared/queryIdTransformParseInt";
2022-10-13 20:54:38 +00:00
/**
* @swagger
* /schedules/{id}:
* patch:
* operationId: editScheduleById
* summary: Edit an existing schedule
* parameters:
* - in: path
* name: id
* schema:
* type: integer
* required: true
* description: ID of the schedule to edit
* - in: query
* name: apiKey
* schema:
* type: string
* required: true
* description: Your API Key
* requestBody:
* description: Edit an existing schedule
* required: true
* content:
* application/json:
* schema:
* type: object
* properties:
* name:
* type: string
* description: Name of the schedule
* timeZone:
* type: string
* description: The timezone for this schedule
* examples:
* schedule:
* value:
* {
* "name": "Updated Schedule",
* "timeZone": "Asia/Calcutta"
* }
2022-10-13 20:54:38 +00:00
* tags:
* - schedules
* responses:
* 200:
2022-10-13 20:54:38 +00:00
* description: OK, schedule edited successfully
* content:
* application/json:
* examples:
* schedule:
* value:
* {
* "schedule": {
* "id": 12345,
* "userId": 1,
* "name": "Total Testing Part 2",
* "timeZone": "Asia/Calcutta",
* "availability": [
* {
* "id": 4567,
* "eventTypeId": null,
* "days": [1, 2, 3, 4, 5],
* "startTime": "09:00:00",
* "endTime": "17:00:00"
* }
* ]
* }
* }
2022-10-13 20:54:38 +00:00
* 400:
* description: Bad request. Schedule body is invalid.
* 401:
* description: Authorization information is missing or invalid.
*/
2022-10-13 20:54:38 +00:00
export async function patchHandler(req: NextApiRequest) {
const { prisma, query } = req;
const { id } = schemaQueryIdParseInt.parse(query);
const data = schemaSingleScheduleBodyParams.parse(req.body);
await checkPermissions(req, data);
2022-10-13 20:54:38 +00:00
const result = await prisma.schedule.update({ where: { id }, data, include: { availability: true } });
return { schedule: schemaSchedulePublic.parse(result) };
}
async function checkPermissions(req: NextApiRequest, body: z.infer<typeof schemaSingleScheduleBodyParams>) {
const { isAdmin } = req;
if (isAdmin) return;
if (body.userId) {
throw new HttpError({ statusCode: 403, message: "Non admin cannot change the owner of a schedule" });
}
//_auth-middleware takes care of verifying the ownership of schedule.
}
2022-10-13 20:54:38 +00:00
export default defaultResponder(patchHandler);