78f4aa83e0
- Extract API helpers from UploadZone into lib/upload-api.ts (FormData builder, checkFolderDiffs, uploadDrive, uploadGit)
- Extract upload orchestration into hooks/useUploadOrchestrator.ts (UploadZone: 489 → 162 lines)
- Extract file diff classification into lib/diff-files.ts (from git route)
- Extract shared SVG icons into components/ui/icons.tsx (7 icons, 0 duplication)
- Extract shared modal wrapper into components/ui/Modal.tsx + ModalActions
- Extract DriveStatusLine sub-component from FolderCard
- Fix checkFolderDiffs silently swallowing auth/network errors (now throws)
- Fix type safety: remove as never casts, add isHttpError type guard, use discriminated union for validateFolder
- Fix nextcloud: cache getConfig, add max bound to findNextVersion, optimize mkdirRecursive (skip PROPFIND)
- Fix drive route: remove req.clone(), extend parseMultiUpload to return extra fields
- Fix commit message: model shown as unchanged with ↔️ on updates (not falsely marked as modified)
- Clean dead code: unused folderExists import, FileStatus/DriveStatus exports, ParsedFile.textureName, getConfig basePath
- Add security headers in next.config.ts (HSTS, X-Content-Type-Options, X-Frame-Options, etc.)
- Update README with new project structure
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server'
|
|
import { validateUploadSecret } from '@/lib/auth'
|
|
import { sanitizeFilename } from '@/lib/sanitize'
|
|
import { VALID_DESTINATIONS } from '@/lib/constants'
|
|
import { getRemoteFolder } from '@/lib/github'
|
|
|
|
export const runtime = 'nodejs'
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
/**
|
|
* GET /api/upload/check?destination=...&folderName=...
|
|
* Check if a folder already exists on the remote repo and return file SHAs.
|
|
*/
|
|
export async function GET(req: NextRequest) {
|
|
const authError = validateUploadSecret(req)
|
|
if (authError) return authError
|
|
|
|
const { searchParams } = new URL(req.url)
|
|
const destination = searchParams.get('destination')?.trim()
|
|
const folderName = searchParams.get('folderName')?.trim()
|
|
|
|
if (!destination || !folderName) {
|
|
return NextResponse.json({ success: false, error: 'Parametres manquants' }, { status: 400 })
|
|
}
|
|
|
|
if (!VALID_DESTINATIONS.has(destination)) {
|
|
return NextResponse.json({ success: false, error: 'Destination invalide' }, { status: 400 })
|
|
}
|
|
|
|
const safeFolderName = sanitizeFilename(folderName).replace(/[^a-zA-Z0-9-_]/g, '-')
|
|
const folderPath = `public/models/${destination}/${safeFolderName}`
|
|
|
|
try {
|
|
const { exists, files } = await getRemoteFolder(folderPath)
|
|
|
|
if (exists) {
|
|
return NextResponse.json({
|
|
success: true,
|
|
exists: true,
|
|
path: folderPath,
|
|
files,
|
|
})
|
|
}
|
|
|
|
return NextResponse.json({ success: true, exists: false })
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : 'Erreur inconnue'
|
|
return NextResponse.json({ success: false, error: message }, { status: 500 })
|
|
}
|
|
}
|