58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
import { NextApiRequest, NextApiResponse } from 'next'
|
|
import { Prisma } from '@typebot.io/prisma'
|
|
import prisma from '@/lib/prisma'
|
|
import { googleSheetsScopes } from './consent-url'
|
|
import { stringify } from 'querystring'
|
|
import { badRequest, encrypt, notAuthenticated } from '@typebot.io/lib/api'
|
|
import { oauth2Client } from '@/lib/googleSheets'
|
|
import { getAuthenticatedUser } from '@/features/auth/helpers/getAuthenticatedUser'
|
|
import { env } from '@typebot.io/env'
|
|
|
|
const handler = async (req: NextApiRequest, res: NextApiResponse) => {
|
|
const user = await getAuthenticatedUser(req, res)
|
|
if (!user) return notAuthenticated(res)
|
|
const state = req.query.state as string | undefined
|
|
if (!state) return badRequest(res)
|
|
const { redirectUrl, blockId, workspaceId } = JSON.parse(
|
|
Buffer.from(state, 'base64').toString()
|
|
)
|
|
if (req.method === 'GET') {
|
|
const code = req.query.code as string | undefined
|
|
if (!workspaceId) return badRequest(res)
|
|
if (!code)
|
|
return res.status(400).send({ message: "Bad request, couldn't get code" })
|
|
const { tokens } = await oauth2Client.getToken(code)
|
|
if (!tokens?.access_token) {
|
|
console.error('Error getting oAuth tokens:')
|
|
throw new Error('ERROR')
|
|
}
|
|
oauth2Client.setCredentials(tokens)
|
|
const { email, scopes } = await oauth2Client.getTokenInfo(
|
|
tokens.access_token
|
|
)
|
|
if (!email)
|
|
return res
|
|
.status(400)
|
|
.send({ message: "Couldn't get email from getTokenInfo" })
|
|
if (googleSheetsScopes.some((scope) => !scopes.includes(scope)))
|
|
return res
|
|
.status(400)
|
|
.send({ message: "User didn't accepted required scopes" })
|
|
const { encryptedData, iv } = await encrypt(tokens)
|
|
const credentials = {
|
|
name: email,
|
|
type: 'google sheets',
|
|
workspaceId,
|
|
data: encryptedData,
|
|
iv,
|
|
} satisfies Prisma.CredentialsUncheckedCreateInput
|
|
const { id: credentialsId } = await prisma.credentials.create({
|
|
data: credentials,
|
|
})
|
|
const queryParams = stringify({ blockId, credentialsId })
|
|
res.redirect(`${redirectUrl}?${queryParams}` ?? `${env.NEXTAUTH_URL}`)
|
|
}
|
|
}
|
|
|
|
export default handler
|