35 lines
928 B
TypeScript
35 lines
928 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { getSession } from "@lib/auth";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
req.session = await getSession({ req });
|
|
if (req.method === "GET" && req.session && req.session.user.id && req.query) {
|
|
const { "app-credential-type": appCredentialType } = req.query;
|
|
if (!appCredentialType && Array.isArray(appCredentialType)) {
|
|
return res.status(400);
|
|
}
|
|
|
|
const userId = req.session.user.id;
|
|
try {
|
|
const installedApp = await prisma?.credential.findFirst({
|
|
where: {
|
|
type: appCredentialType as string,
|
|
userId: userId,
|
|
},
|
|
});
|
|
|
|
if (installedApp && !!installedApp.key) {
|
|
res.status(200);
|
|
} else {
|
|
res.status(404);
|
|
}
|
|
} catch (error) {
|
|
res.status(500);
|
|
}
|
|
} else {
|
|
res.status(400);
|
|
}
|
|
res.end();
|
|
}
|