* WIP * warnings and errors, and working app * Refresh token now usable * Correcting env.appStore.example * Reverting changes that will come from Sendgrid App PR * Resetting with main * Renaming all othercalendars * Fixing types * Renaming leftovers * More renaming stuff * Format readme * Adds prettier override for website wordlist * Omit salesforce app in this PR * Cleanup * Update AppSettings.tsx * Revert "Cleanup" This reverts commit 41f94c52c3a34ce8ae6047ce9d4c187722343d7e. * Update yarn.lock Co-authored-by: Leo Giovanetti <hello@leog.me> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
30 lines
837 B
TypeScript
30 lines
837 B
TypeScript
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);
|