import { createLogger } from '@sim/logger' import { toError } from '@sim/utils/errors' import { type NextRequest, NextResponse } from 'next/server' import { agiloftSavedSearchContract } from '@/lib/api/contracts/tools/agiloft' import { getValidationErrorMessage, parseRequest } from '@/lib/api/server' import { checkInternalAuth } from '@/lib/auth/hybrid' import { generateRequestId } from '@/lib/core/utils/request' import { withRouteHandler } from '@/lib/core/utils/with-route-handler' import type { AgiloftSavedSearchResponse } from '@/tools/agiloft/types' import { buildSavedSearchUrl } from '@/tools/agiloft/utils' import { executeAgiloftRequest } from '@/tools/agiloft/utils.server' export const dynamic = 'force-dynamic' const logger = createLogger('AgiloftSavedSearchAPI') export const POST = withRouteHandler(async (request: NextRequest) => { const requestId = generateRequestId() try { const authResult = await checkInternalAuth(request, { requireWorkflowId: false }) if (!authResult.success || !authResult.userId) { logger.warn(`[${requestId}] Unauthorized Agiloft saved_search attempt: ${authResult.error}`) return NextResponse.json( { success: false, error: authResult.error || 'Authentication required' }, { status: 401 } ) } const parsed = await parseRequest( agiloftSavedSearchContract, request, {}, { validationErrorResponse: (error) => { logger.warn(`[${requestId}] Invalid request data`, { errors: error.issues }) return NextResponse.json( { success: false, error: getValidationErrorMessage(error, 'Invalid request data'), details: error.issues, }, { status: 400 } ) }, } ) if (!parsed.success) return parsed.response const params = parsed.data.body const result = await executeAgiloftRequest( params, (base) => ({ url: buildSavedSearchUrl(base, params), method: 'GET', }), async (response) => { if (!response.ok) { const errorText = await response.text() return { success: false, output: { searches: [] }, error: `Agiloft error: ${response.status} - ${errorText}`, } } const data = (await response.json()) as Record const result = (data.result ?? data) as Record const searches: Array<{ name: string label: string id: string | number description: string | null }> = [] if (Array.isArray(result)) { for (const item of result as Record[]) { searches.push({ name: (item.name as string) ?? '', label: (item.label as string) ?? (item.name as string) ?? '', id: (item.id as string | number) ?? (item.ID as string | number) ?? '', description: (item.description as string | null) ?? null, }) } } return { success: data.success !== false, output: { searches, }, } } ) return NextResponse.json(result) } catch (error) { logger.error(`[${requestId}] Error listing Agiloft saved searches:`, error) return NextResponse.json({ success: false, error: toError(error).message }, { status: 500 }) } })