refactor: remove unused pages and backends (model-management, OCR legacy, GPU/vast.ai, video-chat, matrix)

Deleted pages:
- /ai/model-management (mock data only, no real backend)
- /ai/ocr-compare (old /vocab/ backend, replaced by ocr-kombi)
- /ai/ocr-pipeline (minimal session browser, redundant)
- /ai/ocr-overlay (legacy monolith, redundant)
- /ai/gpu (vast.ai GPU management, no longer used)
- /infrastructure/gpu (same)
- /communication/video-chat (moved to core)
- /communication/matrix (moved to core)

Deleted backends:
- backend-lehrer/infra/vast_client.py + vast_power.py
- backend-lehrer/meetings_api.py + jitsi_api.py
- website/app/api/admin/gpu/
- edu-search-service/scripts/vast_ai_extractor.py

Total: ~7,800 LOC removed. All code preserved in git history.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-23 13:14:12 +02:00
parent 5abdfa202e
commit f39cbe9283
30 changed files with 1089 additions and 9567 deletions

View File

@@ -1,82 +0,0 @@
/**
* GPU Admin API Route - Secure Proxy
*
* Der vast.ai API-Key wird serverseitig aus der Umgebungsvariable geladen
* und niemals an den Client gesendet.
*/
import { NextRequest, NextResponse } from 'next/server'
// API Key für Backend-Authentifizierung (serverseitig, niemals im Client!)
// CONTROL_API_KEY ist der Backend-API-Key, VAST_API_KEY ist für vast.ai direkt
const BACKEND_API_KEY = process.env.CONTROL_API_KEY || process.env.VAST_API_KEY
// Backend URL
const BACKEND_URL = process.env.BACKEND_URL || 'http://localhost:8000'
export async function GET(request: NextRequest) {
if (!BACKEND_API_KEY) {
return NextResponse.json(
{ error: 'CONTROL_API_KEY nicht konfiguriert' },
{ status: 500 }
)
}
try {
const response = await fetch(`${BACKEND_URL}/infra/vast/status`, {
headers: {
'X-API-Key': BACKEND_API_KEY,
},
})
const data = await response.json()
return NextResponse.json(data, { status: response.status })
} catch (error) {
console.error('GPU Status fetch error:', error)
return NextResponse.json(
{ error: 'Backend nicht erreichbar', status: 'error' },
{ status: 503 }
)
}
}
export async function POST(request: NextRequest) {
if (!BACKEND_API_KEY) {
return NextResponse.json(
{ error: 'CONTROL_API_KEY nicht konfiguriert' },
{ status: 500 }
)
}
try {
const body = await request.json()
const action = body.action // 'on' or 'off'
if (!['on', 'off'].includes(action)) {
return NextResponse.json(
{ error: 'Ungültige Aktion' },
{ status: 400 }
)
}
const endpoint = action === 'on' ? '/infra/vast/power/on' : '/infra/vast/power/off'
const response = await fetch(`${BACKEND_URL}${endpoint}`, {
method: 'POST',
headers: {
'X-API-Key': BACKEND_API_KEY,
'Content-Type': 'application/json',
},
body: JSON.stringify({}),
})
const data = await response.json()
return NextResponse.json(data, { status: response.status })
} catch (error) {
console.error('GPU Power action error:', error)
return NextResponse.json(
{ error: 'Backend nicht erreichbar' },
{ status: 503 }
)
}
}