security: re-secure fp-patch
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m21s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 33s
CI / test-python-voice (push) Successful in 32s
CI / test-bqas (push) Successful in 31s

This commit is contained in:
Benjamin Admin
2026-04-23 10:50:12 +02:00
parent ecb704f24e
commit 6565538b3b
2 changed files with 12 additions and 14 deletions

View File

@@ -1,18 +1,17 @@
import { NextResponse } from 'next/server' import { NextRequest, NextResponse } from 'next/server'
import { requireAdmin } from '@/lib/admin-auth'
import pool from '@/lib/db' import pool from '@/lib/db'
import { computeFinanzplan } from '@/lib/finanzplan/engine'
export async function POST() { /** Admin-only: recompute a Finanzplan scenario. */
const BASE = '4b8a6fac-0105-499e-8946-80bc4e3c2476' export async function POST(request: NextRequest) {
const guard = await requireAdmin(request)
if (guard.kind === 'response') return guard.response
// Read exactly what the API would return const body = await request.json().catch(() => ({}))
const { rows: liqRows } = await pool.query( const scenarioId = body.scenarioId || (await pool.query("SELECT id FROM fp_scenarios WHERE is_default = true LIMIT 1")).rows[0]?.id
`SELECT row_label, row_type, if (!scenarioId) return NextResponse.json({ error: 'No scenario found' }, { status: 404 })
(values->>'m8')::numeric as aug26,
(values->>'m12')::numeric as dec26,
(values->>'m24')::numeric as dec27,
(values->>'m36')::numeric as dec28,
(values->>'m60')::numeric as dec30
FROM fp_liquiditaet WHERE scenario_id=$1 ORDER BY sort_order`, [BASE])
return NextResponse.json({ scenario: BASE, rows: liqRows }) const result = await computeFinanzplan(pool, scenarioId)
return NextResponse.json({ success: true, scenarioId, cash_m60: result.liquiditaet?.endstand?.m60 })
} }

View File

@@ -6,7 +6,6 @@ const PUBLIC_PATHS = [
'/auth', // investor login pages '/auth', // investor login pages
'/api/auth', // investor auth API '/api/auth', // investor auth API
'/api/health', '/api/health',
'/api/admin/fp-patch',
'/api/admin-auth', // admin login API '/api/admin-auth', // admin login API
'/pitch-admin/login', // admin login page '/pitch-admin/login', // admin login page
'/_next', '/_next',