import { withSentry } from '@sentry/nextjs' import { Prisma } from 'db' import prisma from 'libs/prisma' import { Credentials } from 'models' import { NextApiRequest, NextApiResponse } from 'next' import { getAuthenticatedUser } from 'services/api/utils' import { encrypt, methodNotAllowed, notAuthenticated } from 'utils' const handler = async (req: NextApiRequest, res: NextApiResponse) => { const user = await getAuthenticatedUser(req) if (!user) return notAuthenticated(res) const id = req.query.id.toString() if (user.id !== id) return res.status(401).send({ message: 'Forbidden' }) if (req.method === 'GET') { const credentials = await prisma.credentials.findMany({ where: { ownerId: user.id }, select: { name: true, type: true, ownerId: true, id: true }, }) return res.send({ credentials }) } if (req.method === 'POST') { const data = ( typeof req.body === 'string' ? JSON.parse(req.body) : req.body ) as Omit const { encryptedData, iv } = encrypt(data.data) const credentials = await prisma.credentials.create({ data: { ...data, data: encryptedData, iv, ownerId: user.id, } as Prisma.CredentialsUncheckedCreateInput, }) return res.send({ credentials }) } return methodNotAllowed(res) } export default withSentry(handler)