2026-06-23 20:36:07 -04:00
|
|
|
import { NextResponse } from "next/server"
|
|
|
|
|
import { and, eq } from "drizzle-orm"
|
|
|
|
|
import { db } from "@/lib/db"
|
|
|
|
|
import { documents } from "@/lib/db/schema"
|
|
|
|
|
import { getSessionUser } from "@/lib/session"
|
|
|
|
|
import { deleteFile } from "@/lib/storage"
|
2026-07-02 13:42:34 -04:00
|
|
|
import { getEffectiveOwnerId, getAccountContext } from "@/lib/account"
|
2026-06-23 20:36:07 -04:00
|
|
|
|
|
|
|
|
export async function GET(_: Request, { params }: { params: Promise<{ id: string }> }) {
|
|
|
|
|
const user = await getSessionUser()
|
|
|
|
|
if (!user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 })
|
|
|
|
|
|
2026-07-02 13:42:34 -04:00
|
|
|
const ownerId = await getEffectiveOwnerId(user.id)
|
|
|
|
|
|
2026-06-23 20:36:07 -04:00
|
|
|
const { id } = await params
|
|
|
|
|
const doc = await db.query.documents.findFirst({
|
2026-07-02 13:42:34 -04:00
|
|
|
where: and(eq(documents.id, id), eq(documents.user_id, ownerId)),
|
2026-06-23 20:36:07 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if (!doc) return NextResponse.json({ error: "Not found" }, { status: 404 })
|
|
|
|
|
|
|
|
|
|
// file_url already points at the auth-gated /api/files route; expose it as
|
|
|
|
|
// signed_url for compatibility with the existing client.
|
|
|
|
|
return NextResponse.json({ ...doc, signed_url: doc.file_url })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function DELETE(_: Request, { params }: { params: Promise<{ id: string }> }) {
|
|
|
|
|
const user = await getSessionUser()
|
|
|
|
|
if (!user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 })
|
|
|
|
|
|
2026-07-02 13:42:34 -04:00
|
|
|
const ctx = await getAccountContext(user.id)
|
|
|
|
|
const ownerId = ctx.ownerId
|
|
|
|
|
if (!ctx.canWrite) return NextResponse.json({ error: "Forbidden" }, { status: 403 })
|
|
|
|
|
|
2026-06-23 20:36:07 -04:00
|
|
|
const { id } = await params
|
|
|
|
|
|
|
|
|
|
const doc = await db.query.documents.findFirst({
|
2026-07-02 13:42:34 -04:00
|
|
|
where: and(eq(documents.id, id), eq(documents.user_id, ownerId)),
|
2026-06-23 20:36:07 -04:00
|
|
|
columns: { storage_path: true },
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if (!doc) return NextResponse.json({ error: "Not found" }, { status: 404 })
|
|
|
|
|
|
2026-07-02 13:42:34 -04:00
|
|
|
await db.delete(documents).where(and(eq(documents.id, id), eq(documents.user_id, ownerId)))
|
2026-06-23 20:36:07 -04:00
|
|
|
|
|
|
|
|
if (doc.storage_path) {
|
2026-07-03 04:45:24 -04:00
|
|
|
await deleteFile(doc.storage_path, ownerId)
|
2026-06-23 20:36:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NextResponse.json({ success: true })
|
|
|
|
|
}
|