d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
290 lines
8.7 KiB
TypeScript
290 lines
8.7 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { getErrorMessage } from '@sim/utils/errors'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { mistralParseContract } from '@/lib/api/contracts/tools/media/document-parse'
|
|
import { getValidationErrorMessage, parseRequest } from '@/lib/api/server'
|
|
import { checkInternalAuth } from '@/lib/auth/hybrid'
|
|
import {
|
|
secureFetchWithPinnedIP,
|
|
validateUrlWithDNS,
|
|
} from '@/lib/core/security/input-validation.server'
|
|
import { generateRequestId } from '@/lib/core/utils/request'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
import { isInternalFileUrl, processSingleFileToUserFile } from '@/lib/uploads/utils/file-utils'
|
|
import {
|
|
downloadServableFileFromStorage,
|
|
resolveInternalFileUrl,
|
|
} from '@/lib/uploads/utils/file-utils.server'
|
|
import { docNotReadyResponse } from '@/lib/uploads/utils/servable-file-response'
|
|
import { assertToolFileAccess } from '@/app/api/files/authorization'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
const logger = createLogger('MistralParseAPI')
|
|
|
|
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 Mistral parse attempt`, {
|
|
error: authResult.error || 'Missing userId',
|
|
})
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: authResult.error || 'Unauthorized',
|
|
},
|
|
{ status: 401 }
|
|
)
|
|
}
|
|
|
|
const userId = authResult.userId
|
|
|
|
const parsed = await parseRequest(
|
|
mistralParseContract,
|
|
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 validatedData = parsed.data.body
|
|
|
|
const fileData = validatedData.file || validatedData.fileData
|
|
const filePath = typeof fileData === 'string' ? fileData : validatedData.filePath
|
|
|
|
if (!fileData && (!filePath || filePath.trim() === '')) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: 'File input is required',
|
|
},
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
|
|
logger.info(`[${requestId}] Mistral parse request`, {
|
|
hasFileData: Boolean(fileData),
|
|
filePath,
|
|
isWorkspaceFile: filePath ? isInternalFileUrl(filePath) : false,
|
|
userId,
|
|
})
|
|
|
|
const mistralBody: any = {
|
|
model: 'mistral-ocr-latest',
|
|
}
|
|
|
|
if (fileData && typeof fileData === 'object') {
|
|
const rawFile = fileData
|
|
let userFile
|
|
try {
|
|
userFile = processSingleFileToUserFile(rawFile, requestId, logger)
|
|
} catch (error) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: getErrorMessage(error, 'Failed to process file'),
|
|
},
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
|
|
let mimeType = userFile.type
|
|
if (!mimeType || mimeType === 'application/octet-stream') {
|
|
const filename = userFile.name?.toLowerCase() || ''
|
|
if (filename.endsWith('.pdf')) {
|
|
mimeType = 'application/pdf'
|
|
} else if (filename.endsWith('.png')) {
|
|
mimeType = 'image/png'
|
|
} else if (filename.endsWith('.jpg') || filename.endsWith('.jpeg')) {
|
|
mimeType = 'image/jpeg'
|
|
} else if (filename.endsWith('.gif')) {
|
|
mimeType = 'image/gif'
|
|
} else if (filename.endsWith('.webp')) {
|
|
mimeType = 'image/webp'
|
|
} else {
|
|
mimeType = 'application/pdf'
|
|
}
|
|
}
|
|
let base64 = userFile.base64
|
|
if (!base64) {
|
|
const denied = await assertToolFileAccess(userFile.key, userId, requestId, logger)
|
|
if (denied) return denied
|
|
const { buffer, contentType } = await downloadServableFileFromStorage(
|
|
userFile,
|
|
requestId,
|
|
logger
|
|
)
|
|
base64 = buffer.toString('base64')
|
|
if (contentType && contentType !== 'application/octet-stream') {
|
|
mimeType = contentType
|
|
}
|
|
}
|
|
const base64Payload = base64.startsWith('data:')
|
|
? base64
|
|
: `data:${mimeType};base64,${base64}`
|
|
|
|
// Mistral API uses different document types for images vs documents
|
|
const isImage = mimeType.startsWith('image/')
|
|
if (isImage) {
|
|
mistralBody.document = {
|
|
type: 'image_url',
|
|
image_url: base64Payload,
|
|
}
|
|
} else {
|
|
mistralBody.document = {
|
|
type: 'document_url',
|
|
document_url: base64Payload,
|
|
}
|
|
}
|
|
} else if (filePath) {
|
|
let fileUrl = filePath
|
|
|
|
const isInternalFilePath = isInternalFileUrl(filePath)
|
|
if (isInternalFilePath) {
|
|
const resolution = await resolveInternalFileUrl(filePath, userId, requestId, logger)
|
|
if (resolution.error) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: resolution.error.message,
|
|
},
|
|
{ status: resolution.error.status }
|
|
)
|
|
}
|
|
fileUrl = resolution.fileUrl || fileUrl
|
|
} else if (filePath.startsWith('/')) {
|
|
logger.warn(`[${requestId}] Invalid internal path`, {
|
|
userId,
|
|
path: filePath.substring(0, 50),
|
|
})
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: 'Invalid file path. Only uploaded files are supported for internal paths.',
|
|
},
|
|
{ status: 400 }
|
|
)
|
|
} else {
|
|
const urlValidation = await validateUrlWithDNS(fileUrl, 'filePath')
|
|
if (!urlValidation.isValid) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: urlValidation.error,
|
|
},
|
|
{ status: 400 }
|
|
)
|
|
}
|
|
}
|
|
|
|
const imageExtensions = ['.png', '.jpg', '.jpeg', '.gif', '.webp', '.avif']
|
|
const pathname = new URL(fileUrl).pathname.toLowerCase()
|
|
const isImageUrl = imageExtensions.some((ext) => pathname.endsWith(ext))
|
|
|
|
if (isImageUrl) {
|
|
mistralBody.document = {
|
|
type: 'image_url',
|
|
image_url: fileUrl,
|
|
}
|
|
} else {
|
|
mistralBody.document = {
|
|
type: 'document_url',
|
|
document_url: fileUrl,
|
|
}
|
|
}
|
|
}
|
|
|
|
if (validatedData.pages) {
|
|
mistralBody.pages = validatedData.pages
|
|
}
|
|
if (validatedData.includeImageBase64 !== undefined) {
|
|
mistralBody.include_image_base64 = validatedData.includeImageBase64
|
|
}
|
|
if (validatedData.imageLimit) {
|
|
mistralBody.image_limit = validatedData.imageLimit
|
|
}
|
|
if (validatedData.imageMinSize) {
|
|
mistralBody.image_min_size = validatedData.imageMinSize
|
|
}
|
|
|
|
const mistralEndpoint = 'https://api.mistral.ai/v1/ocr'
|
|
const mistralValidation = await validateUrlWithDNS(mistralEndpoint, 'Mistral API URL')
|
|
if (!mistralValidation.isValid) {
|
|
logger.error(`[${requestId}] Mistral API URL validation failed`, {
|
|
error: mistralValidation.error,
|
|
})
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: 'Failed to reach Mistral API',
|
|
},
|
|
{ status: 502 }
|
|
)
|
|
}
|
|
|
|
const mistralResponse = await secureFetchWithPinnedIP(
|
|
mistralEndpoint,
|
|
mistralValidation.resolvedIP!,
|
|
{
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
Authorization: `Bearer ${validatedData.apiKey}`,
|
|
},
|
|
body: JSON.stringify(mistralBody),
|
|
}
|
|
)
|
|
|
|
if (!mistralResponse.ok) {
|
|
const errorText = await mistralResponse.text()
|
|
logger.error(`[${requestId}] Mistral API error:`, errorText)
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: `Mistral API error: ${mistralResponse.statusText}`,
|
|
},
|
|
{ status: mistralResponse.status }
|
|
)
|
|
}
|
|
|
|
const mistralData = await mistralResponse.json()
|
|
|
|
logger.info(`[${requestId}] Mistral parse successful`)
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
output: mistralData,
|
|
})
|
|
} catch (error) {
|
|
const notReady = docNotReadyResponse(error)
|
|
if (notReady) return notReady
|
|
|
|
logger.error(`[${requestId}] Error in Mistral parse:`, error)
|
|
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: getErrorMessage(error, 'Internal server error'),
|
|
},
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
})
|