import { NextRequest, NextResponse } from 'next/server' import { writeFile, mkdir } from 'fs/promises' import path from 'path' import { randomUUID } from 'crypto' import { auth } from '@/auth' const ALLOWED_TYPES = ['image/jpeg', 'image/png', 'image/gif', 'image/webp'] const MAX_SIZE = 5 * 1024 * 1024 // 5MB export async function POST(request: NextRequest) { try { const session = await auth() if (!session?.user?.id) { return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }) } const formData = await request.formData() const file = formData.get('file') as File if (!file) { return NextResponse.json( { error: 'No file uploaded' }, { status: 400 } ) } if (!ALLOWED_TYPES.includes(file.type)) { return NextResponse.json({ error: 'Invalid file type' }, { status: 400 }) } if (file.size > MAX_SIZE) { return NextResponse.json({ error: 'File too large (max 5MB)' }, { status: 400 }) } const buffer = Buffer.from(await file.arrayBuffer()) const ext = path.extname(file.name).toLowerCase() if (!['.jpg', '.jpeg', '.png', '.gif', '.webp'].includes(ext)) { return NextResponse.json({ error: 'Invalid file extension' }, { status: 400 }) } const filename = `${randomUUID()}${ext}` // Ensure directory exists const uploadDir = path.join(process.cwd(), 'public/uploads/notes') await mkdir(uploadDir, { recursive: true }) const filePath = path.join(uploadDir, filename) await writeFile(filePath, buffer) return NextResponse.json({ success: true, url: `/uploads/notes/${filename}` }) } catch (error) { return NextResponse.json( { error: 'Failed to upload file' }, { status: 500 } ) } }