first commit
This commit is contained in:
29
calcom/packages/app-store/closecom/api/_postCheck.ts
Normal file
29
calcom/packages/app-store/closecom/api/_postCheck.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import type { NextApiRequest, NextApiResponse } from "next";
|
||||
|
||||
import CloseCom from "@calcom/lib/CloseCom";
|
||||
import { HttpError } from "@calcom/lib/http-error";
|
||||
import { defaultResponder } from "@calcom/lib/server";
|
||||
|
||||
import checkSession from "../../_utils/auth";
|
||||
|
||||
export async function getHandler(req: NextApiRequest, res: NextApiResponse) {
|
||||
const { api_key } = req.body;
|
||||
if (!api_key) throw new HttpError({ statusCode: 400, message: "No Api Key provoided to check" });
|
||||
|
||||
checkSession(req);
|
||||
|
||||
const closeCom: CloseCom = new CloseCom(api_key);
|
||||
|
||||
try {
|
||||
const userInfo = await closeCom.me();
|
||||
if (userInfo.first_name) {
|
||||
return res.status(200).end();
|
||||
} else {
|
||||
return res.status(404).end();
|
||||
}
|
||||
} catch (e) {
|
||||
return res.status(500).json({ message: e });
|
||||
}
|
||||
}
|
||||
|
||||
export default defaultResponder(getHandler);
|
||||
Reference in New Issue
Block a user