2022-05-31 14:46:06 +00:00
|
|
|
import { database } from "../../../utils/prismaClient";
|
2022-05-31 14:35:13 +00:00
|
|
|
import { NextApiRequest, NextApiResponse } from "next";
|
2022-06-11 03:08:49 +00:00
|
|
|
import { Event, Prisma } from "@prisma/client";
|
|
|
|
import { festaNoConfig } from "../../../utils/api/configurator";
|
|
|
|
import { festaBearerAuthRequired, FestaToken } from "../../../utils/api/authenticator";
|
|
|
|
import { festaAPI } from "../../../utils/api";
|
|
|
|
import { festaNoQuery } from "../../../utils/api/queryValidator";
|
|
|
|
import { festaJsonSchemaBody, festaNoBody } from "../../../utils/api/bodyValidator";
|
|
|
|
import { festaRESTGeneric } from "../../../utils/api/executor";
|
|
|
|
import { Response } from "../../../utils/api/throwables";
|
|
|
|
|
|
|
|
|
|
|
|
type Config = {}
|
|
|
|
|
|
|
|
type Auth = FestaToken
|
|
|
|
|
|
|
|
type Query = {}
|
|
|
|
|
|
|
|
type Body = {}
|
|
|
|
|
|
|
|
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
|
|
await festaAPI(req, res, {
|
|
|
|
|
|
|
|
configurator: festaNoConfig,
|
|
|
|
|
|
|
|
authenticator: festaBearerAuthRequired,
|
|
|
|
|
|
|
|
queryValidator: festaNoQuery,
|
|
|
|
|
|
|
|
bodyValidator: festaNoBody,
|
|
|
|
|
|
|
|
executor: festaRESTGeneric<Config, Auth, Query, Body, Event, Prisma.EventDelegate<any>, Prisma.EventFindManyArgs, Prisma.EventCreateArgs>({
|
|
|
|
delegate: database.event,
|
|
|
|
|
|
|
|
getListArgs: async ({ auth }) => {
|
|
|
|
return {
|
|
|
|
where: {
|
|
|
|
creatorId: auth.userId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getCreateArgs: async ({ }) => {
|
|
|
|
throw Response.error({ status: 405, message: "This route cannot be used to create new events" })
|
|
|
|
},
|
|
|
|
}),
|
2022-05-31 14:35:13 +00:00
|
|
|
})
|
2022-06-11 03:08:49 +00:00
|
|
|
}
|