Files
Momento/memento-note/app/api/mobile/ai/improve/route.ts
Antigravity a84c7e80d6
All checks were successful
CI / Lint, Unit Tests & Build (push) Successful in 6m13s
CI / Deploy production (on server) (push) Successful in 24s
fix(critique): 2 régressions introduites par les fixes précédents
Bug #1 — Memory Echo cassé (runtime crash):
- lib/ai/services/memory-echo.service.ts: lignes adjustedThreshold restaurées
- Cause: sed console.log avait supprimé les lignes de définition
- Effet: findConnections() crashait (ReferenceError)

Bug #2 — Auth mobile totalement cassée (sécurité):
- 14 routes app/api/mobile/*/: getMobileUserId(req) → await getMobileUserId(req)
- Cause: verifyMobileToken devenu async mais callers non mis à jour
- Effet: auth bypassée (Promise truthy au lieu de string)

i18n:
- searchModal.* + insightsView.* propagés dans 13 locales (EN fallback)
2026-07-05 16:53:36 +00:00

41 lines
1.5 KiB
TypeScript

import { NextRequest, NextResponse } from 'next/server'
import { getMobileUserId } from '@/lib/mobile-auth'
import { paragraphRefactorService } from '@/lib/ai/services/paragraph-refactor.service'
import { reserveUsageOrThrow, QuotaExceededError } from '@/lib/entitlements'
const MODE_MAP: Record<string, 'clarify' | 'shorten' | 'improveStyle' | 'fix_grammar'> = {
improve: 'improveStyle',
shorten: 'shorten',
clarify: 'clarify',
fix_grammar: 'fix_grammar',
}
export async function POST(req: NextRequest) {
const userId = await getMobileUserId(req)
if (!userId) return NextResponse.json({ error: 'Non autorisé' }, { status: 401 })
const { text, mode = 'improve' } = await req.json().catch(() => ({}))
if (!text?.trim()) return NextResponse.json({ error: 'Texte requis' }, { status: 400 })
const refactorMode = MODE_MAP[mode]
if (!refactorMode) {
return NextResponse.json({ error: 'Mode invalide. Valeurs: improve, shorten, clarify, fix_grammar' }, { status: 400 })
}
const validation = paragraphRefactorService.validateWordCount(text)
if (!validation.valid) return NextResponse.json({ error: validation.error }, { status: 400 })
try {
await reserveUsageOrThrow(userId, 'reformulate')
} catch (err) {
if (err instanceof QuotaExceededError) {
return NextResponse.json({ error: 'quota_exceeded' }, { status: 402 })
}
throw err
}
const result = await paragraphRefactorService.refactor(text, refactorMode, 'markdown', undefined)
return NextResponse.json({ improved: result.refactored, original: result.original })
}