feat: adds users/id/availability endpoint

pull/9078/head
Agusti Fernandez Pardo 2022-06-16 00:04:04 +02:00
parent bcb61ab280
commit 4389288e69
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,29 @@
import type { NextApiRequest } from "next";
import { z } from "zod";
import { getUserAvailability } from "@calcom/core/getUserAvailability";
import { defaultResponder } from "@calcom/lib/server";
import { stringOrNumber } from "@calcom/prisma/zod-utils";
const availabilitySchema = z
.object({
id: stringOrNumber,
username: z.string().optional(),
dateFrom: z.string(),
dateTo: z.string(),
eventTypeId: stringOrNumber.optional(),
})
.refine((data) => !!data.username || !!data.id, "Either username or userId should be filled in.");
async function handler(req: NextApiRequest) {
const { username, id, eventTypeId, dateTo, dateFrom } = availabilitySchema.parse(req.query);
return getUserAvailability({
username,
dateFrom,
dateTo,
eventTypeId,
userId: id,
});
}
export default defaultResponder(handler);

View File

@ -0,0 +1,9 @@
import { defaultHandler } from "@calcom/lib/server";
import { withMiddleware } from "@lib/helpers/withMiddleware";
export default withMiddleware("HTTP_GET")(
defaultHandler({
GET: import("./_get"),
})
);