import { createLogger } from '@sim/logger' import { getErrorMessage, toError } from '@sim/utils/errors' import { type NextRequest, NextResponse } from 'next/server' import { jsmCommentContract } from '@/lib/api/contracts/selectors/jsm' import { parseRequest } from '@/lib/api/server' import { checkInternalAuth } from '@/lib/auth/hybrid' import { validateJiraCloudId, validateJiraIssueKey } from '@/lib/core/security/input-validation' import { withRouteHandler } from '@/lib/core/utils/with-route-handler' import { getJiraCloudId, parseAtlassianErrorMessage } from '@/tools/jira/utils' import { getJsmApiBaseUrl, getJsmHeaders } from '@/tools/jsm/utils' export const dynamic = 'force-dynamic' const logger = createLogger('JsmCommentAPI') export const POST = withRouteHandler(async (request: NextRequest) => { const auth = await checkInternalAuth(request) if (!auth.success || !auth.userId) { return NextResponse.json({ error: auth.error || 'Unauthorized' }, { status: 401 }) } try { const parsed = await parseRequest(jsmCommentContract, request, {}) if (!parsed.success) return parsed.response const { domain, accessToken, cloudId: providedCloudId, issueIdOrKey, body: commentBody, isPublic, } = parsed.data.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 }) } if (!commentBody) { logger.error('Missing comment body in request') return NextResponse.json({ error: 'Comment body is required' }, { status: 400 }) } const cloudId = providedCloudId || (await getJiraCloudId(domain, accessToken)) const cloudIdValidation = validateJiraCloudId(cloudId, 'cloudId') if (!cloudIdValidation.isValid) { return NextResponse.json({ error: cloudIdValidation.error }, { status: 400 }) } const issueIdOrKeyValidation = validateJiraIssueKey(issueIdOrKey, 'issueIdOrKey') if (!issueIdOrKeyValidation.isValid) { return NextResponse.json({ error: issueIdOrKeyValidation.error }, { status: 400 }) } const baseUrl = getJsmApiBaseUrl(cloudId) const url = `${baseUrl}/request/${issueIdOrKey}/comment` logger.info('Adding comment to:', url) const response = await fetch(url, { method: 'POST', headers: getJsmHeaders(accessToken), body: JSON.stringify({ body: commentBody, public: isPublic ?? true, }), }) 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: parseAtlassianErrorMessage(response.status, response.statusText, errorText), details: errorText, }, { status: response.status } ) } const data = await response.json() return NextResponse.json({ success: true, output: { ts: new Date().toISOString(), issueIdOrKey, commentId: data.id, body: data.body, isPublic: data.public, author: data.author ? { accountId: data.author.accountId ?? null, displayName: data.author.displayName ?? null, emailAddress: data.author.emailAddress ?? null, } : null, createdDate: data.created ?? null, success: true, }, }) } catch (error) { logger.error('Error adding comment:', { error: toError(error).message, stack: error instanceof Error ? error.stack : undefined, }) return NextResponse.json( { error: getErrorMessage(error, 'Internal server error'), success: false, }, { status: 500 } ) } })