mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-07 22:24:06 -05:00
86 lines
2.5 KiB
TypeScript
86 lines
2.5 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { NextResponse } from 'next/server'
|
|
import { getJiraCloudId, getJsmApiBaseUrl, getJsmHeaders } from '@/tools/jsm/utils'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
const logger = createLogger('JsmSlaAPI')
|
|
|
|
export async function POST(request: Request) {
|
|
try {
|
|
const body = await request.json()
|
|
const { domain, accessToken, cloudId: cloudIdParam, issueIdOrKey, start, limit } = body
|
|
|
|
if (!domain) {
|
|
logger.error('Missing domain in request')
|
|
return NextResponse.json({ error: 'Domain is required' }, { status: 400 })
|
|
}
|
|
|
|
if (!accessToken) {
|
|
logger.error('Missing access token in request')
|
|
return NextResponse.json({ error: 'Access token is required' }, { status: 400 })
|
|
}
|
|
|
|
if (!issueIdOrKey) {
|
|
logger.error('Missing issueIdOrKey in request')
|
|
return NextResponse.json({ error: 'Issue ID or key is required' }, { status: 400 })
|
|
}
|
|
|
|
const cloudId = cloudIdParam || (await getJiraCloudId(domain, accessToken))
|
|
const baseUrl = getJsmApiBaseUrl(cloudId)
|
|
|
|
const params = new URLSearchParams()
|
|
if (start) params.append('start', start)
|
|
if (limit) params.append('limit', limit)
|
|
|
|
const url = `${baseUrl}/request/${issueIdOrKey}/sla${params.toString() ? `?${params.toString()}` : ''}`
|
|
|
|
logger.info('Fetching SLA info from:', url)
|
|
|
|
const response = await fetch(url, {
|
|
method: 'GET',
|
|
headers: getJsmHeaders(accessToken),
|
|
})
|
|
|
|
if (!response.ok) {
|
|
const errorText = await response.text()
|
|
logger.error('JSM API error:', {
|
|
status: response.status,
|
|
statusText: response.statusText,
|
|
error: errorText,
|
|
})
|
|
|
|
return NextResponse.json(
|
|
{ error: `JSM API error: ${response.status} ${response.statusText}`, details: errorText },
|
|
{ status: response.status }
|
|
)
|
|
}
|
|
|
|
const data = await response.json()
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
output: {
|
|
ts: new Date().toISOString(),
|
|
issueIdOrKey,
|
|
slas: data.values || [],
|
|
total: data.size || 0,
|
|
isLastPage: data.isLastPage ?? true,
|
|
},
|
|
})
|
|
} catch (error) {
|
|
logger.error('Error fetching SLA info:', {
|
|
error: error instanceof Error ? error.message : String(error),
|
|
stack: error instanceof Error ? error.stack : undefined,
|
|
})
|
|
|
|
return NextResponse.json(
|
|
{
|
|
error: error instanceof Error ? error.message : 'Internal server error',
|
|
success: false,
|
|
},
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|