import { StopQueryExecutionCommand } from '@aws-sdk/client-athena' import { createLogger } from '@sim/logger' import { getErrorMessage } from '@sim/utils/errors' import { type NextRequest, NextResponse } from 'next/server' import { awsAthenaStopQueryContract } from '@/lib/api/contracts/tools/aws/athena-stop-query' import { parseToolRequest } from '@/lib/api/server' import { checkInternalAuth } from '@/lib/auth/hybrid' import { withRouteHandler } from '@/lib/core/utils/with-route-handler' import { createAthenaClient } from '@/app/api/tools/athena/utils' const logger = createLogger('AthenaStopQuery') export const POST = withRouteHandler(async (request: NextRequest) => { try { const auth = await checkInternalAuth(request) if (!auth.success || !auth.userId) { return NextResponse.json({ error: auth.error || 'Unauthorized' }, { status: 401 }) } const parsed = await parseToolRequest(awsAthenaStopQueryContract, request, { errorFormat: 'details', logger, }) if (!parsed.success) return parsed.response const data = parsed.data.body const client = createAthenaClient({ region: data.region, accessKeyId: data.accessKeyId, secretAccessKey: data.secretAccessKey, }) const command = new StopQueryExecutionCommand({ QueryExecutionId: data.queryExecutionId, }) await client.send(command) return NextResponse.json({ success: true, output: { success: true, }, }) } catch (error) { const errorMessage = getErrorMessage(error, 'Failed to stop Athena query') logger.error('StopQuery failed', { error: errorMessage }) return NextResponse.json({ error: errorMessage }, { status: 500 }) } })