import { createLogger } from '@sim/logger' import { getErrorMessage } from '@sim/utils/errors' import { generateId } from '@sim/utils/id' import { type NextRequest, NextResponse } from 'next/server' import { postgresqlExecuteContract } from '@/lib/api/contracts/tools/databases/postgresql' import { parseToolRequest } from '@/lib/api/server' import { checkInternalAuth } from '@/lib/auth/hybrid' import { withRouteHandler } from '@/lib/core/utils/with-route-handler' import { createPostgresConnection, executeQuery, validateQuery, } from '@/app/api/tools/postgresql/utils' const logger = createLogger('PostgreSQLExecuteAPI') export const POST = withRouteHandler(async (request: NextRequest) => { const requestId = generateId().slice(0, 8) try { const auth = await checkInternalAuth(request) if (!auth.success || !auth.userId) { logger.warn(`[${requestId}] Unauthorized PostgreSQL execute attempt`) return NextResponse.json({ error: auth.error || 'Unauthorized' }, { status: 401 }) } const parsed = await parseToolRequest(postgresqlExecuteContract, request, { logger }) if (!parsed.success) return parsed.response const params = parsed.data.body logger.info( `[${requestId}] Executing raw SQL on ${params.host}:${params.port}/${params.database}` ) const validation = validateQuery(params.query) if (!validation.isValid) { logger.warn(`[${requestId}] Query validation failed: ${validation.error}`) return NextResponse.json( { error: `Query validation failed: ${validation.error}` }, { status: 400 } ) } const sql = await createPostgresConnection({ host: params.host, port: params.port, database: params.database, username: params.username, password: params.password, ssl: params.ssl, }) try { const result = await executeQuery(sql, params.query) logger.info(`[${requestId}] SQL executed successfully, ${result.rowCount} row(s) affected`) return NextResponse.json({ message: `SQL executed successfully. ${result.rowCount} row(s) affected.`, rows: result.rows, rowCount: result.rowCount, }) } finally { await sql.end() } } catch (error) { const errorMessage = getErrorMessage(error, 'Unknown error occurred') logger.error(`[${requestId}] PostgreSQL execute failed:`, error) return NextResponse.json( { error: `PostgreSQL execute failed: ${errorMessage}` }, { status: 500 } ) } })