mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-28 03:00:29 -04: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
78 lines
2.6 KiB
TypeScript
78 lines
2.6 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, executeDelete } from '@/app/api/tools/postgresql/utils'
|
|
|
|
const logger = createLogger('PostgreSQLDeleteAPI')
|
|
|
|
const DeleteSchema = 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'),
|
|
table: z.string().min(1, 'Table name is required'),
|
|
where: z.string().min(1, 'WHERE clause 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 delete attempt`)
|
|
return NextResponse.json({ error: auth.error || 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const body = await request.json()
|
|
const params = DeleteSchema.parse(body)
|
|
|
|
logger.info(
|
|
`[${requestId}] Deleting data from ${params.table} on ${params.host}:${params.port}/${params.database}`
|
|
)
|
|
|
|
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 executeDelete(sql, params.table, params.where)
|
|
|
|
logger.info(`[${requestId}] Delete executed successfully, ${result.rowCount} row(s) deleted`)
|
|
|
|
return NextResponse.json({
|
|
message: `Data deleted 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 delete failed:`, error)
|
|
|
|
return NextResponse.json(
|
|
{ error: `PostgreSQL delete failed: ${errorMessage}` },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|