mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-26 07:18:38 -05:00
* fix(security): restrict API key access on internal-only routes * test(security): update function execute tests for checkInternalAuth * updated agent handler * move session check higher in checkSessionOrInternalAuth * extracted duplicate code into helper for resolving user from jwt
90 lines
2.8 KiB
TypeScript
90 lines
2.8 KiB
TypeScript
import { randomUUID } from 'crypto'
|
|
import { createLogger } from '@sim/logger'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { z } from 'zod'
|
|
import { checkInternalAuth } from '@/lib/auth/hybrid'
|
|
import {
|
|
createPostgresConnection,
|
|
executeQuery,
|
|
validateQuery,
|
|
} from '@/app/api/tools/postgresql/utils'
|
|
|
|
const logger = createLogger('PostgreSQLExecuteAPI')
|
|
|
|
const ExecuteSchema = z.object({
|
|
host: z.string().min(1, 'Host is required'),
|
|
port: z.coerce.number().int().positive('Port must be a positive integer'),
|
|
database: z.string().min(1, 'Database name is required'),
|
|
username: z.string().min(1, 'Username is required'),
|
|
password: z.string().min(1, 'Password is required'),
|
|
ssl: z.enum(['disabled', 'required', 'preferred']).default('preferred'),
|
|
query: z.string().min(1, 'Query is required'),
|
|
})
|
|
|
|
export async function POST(request: NextRequest) {
|
|
const requestId = randomUUID().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 body = await request.json()
|
|
const params = ExecuteSchema.parse(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 = 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) {
|
|
if (error instanceof z.ZodError) {
|
|
logger.warn(`[${requestId}] Invalid request data`, { errors: error.errors })
|
|
return NextResponse.json(
|
|
{ error: 'Invalid request data', details: error.errors },
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
|
|
const errorMessage = error instanceof Error ? error.message : 'Unknown error occurred'
|
|
logger.error(`[${requestId}] PostgreSQL execute failed:`, error)
|
|
|
|
return NextResponse.json(
|
|
{ error: `PostgreSQL execute failed: ${errorMessage}` },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|