51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
|
import type { NextApiRequest, NextApiResponse } from "next";
|
||
|
|
||
|
import { getSession } from "@lib/auth";
|
||
|
import prisma from "@lib/prisma";
|
||
|
|
||
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
||
|
if (!["GET", "DELETE"].includes(req.method!)) {
|
||
|
return res.status(405).end();
|
||
|
}
|
||
|
|
||
|
// Check that user is authenticated
|
||
|
const session = await getSession({ req });
|
||
|
|
||
|
if (!session) {
|
||
|
res.status(401).json({ message: "You must be logged in to do this" });
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (req.method === "GET") {
|
||
|
const credentials = await prisma.credential.findMany({
|
||
|
where: {
|
||
|
userId: session.user?.id,
|
||
|
},
|
||
|
select: {
|
||
|
type: true,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
res.status(200).json(credentials);
|
||
|
}
|
||
|
|
||
|
if (req.method == "DELETE") {
|
||
|
const id = req.body.id;
|
||
|
|
||
|
await prisma.user.update({
|
||
|
where: {
|
||
|
id: session?.user?.id,
|
||
|
},
|
||
|
data: {
|
||
|
credentials: {
|
||
|
delete: {
|
||
|
id,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
|
||
|
res.status(200).json({ message: "Integration deleted successfully" });
|
||
|
}
|
||
|
}
|