Merge pull request #158 from calcom/feat/me-endpoint

feat: adds me endpoint that returns session info
pull/9078/head
Omar López 2022-09-05 14:07:51 -06:00 committed by GitHub
commit ddc084044a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

21
pages/api/me/_get.ts Normal file
View File

@ -0,0 +1,21 @@
import type { NextApiRequest } from "next";
import { defaultHandler, defaultResponder } from "@calcom/lib/server";
import { schemaUserReadPublic } from "@lib/validations/user";
import { User } from ".prisma/client";
async function handler(req: NextApiRequest): Promise<{ error?: string; user?: Partial<User> }> {
if (!prisma) return { error: "Cant connect to database" };
console.log(req);
if (!req.userId) return { error: "No user id found" };
const data = await prisma.user.findUniqueOrThrow({ where: { id: req.userId } });
if (!data) return { error: "You need to pass apiKey" };
const user = schemaUserReadPublic.parse(data);
return { user };
}
export default defaultHandler({
GET: Promise.resolve({ default: defaultResponder(handler) }),
});

9
pages/api/me/index.ts Normal file
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"),
})
);