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 { tenants, units } from "@/lib/db/schema"
|
|
|
|
|
import { getSessionUser } from "@/lib/session"
|
|
|
|
|
import { tenantSchema } from "@/lib/validations"
|
|
|
|
|
import { ownsProperty, ownsUnit } from "@/lib/db/ownership"
|
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 data = await db.query.tenants.findFirst({
|
2026-07-02 13:42:34 -04:00
|
|
|
where: and(eq(tenants.id, id), eq(tenants.user_id, ownerId)),
|
2026-06-23 20:36:07 -04:00
|
|
|
with: {
|
|
|
|
|
unit: {},
|
|
|
|
|
property: {},
|
|
|
|
|
leases: {},
|
|
|
|
|
rent_payments: {},
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if (!data) return NextResponse.json({ error: "Not found" }, { status: 404 })
|
|
|
|
|
return NextResponse.json(data)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function PATCH(request: 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 body = await request.json()
|
|
|
|
|
const parsed = tenantSchema.partial().safeParse(body)
|
|
|
|
|
if (!parsed.success) return NextResponse.json({ error: parsed.error.flatten() }, { status: 400 })
|
|
|
|
|
|
|
|
|
|
if (
|
2026-07-02 13:42:34 -04:00
|
|
|
!(await ownsProperty(ownerId, parsed.data.property_id)) ||
|
|
|
|
|
!(await ownsUnit(ownerId, parsed.data.unit_id))
|
2026-06-23 20:36:07 -04:00
|
|
|
) {
|
|
|
|
|
return NextResponse.json({ error: "Invalid reference" }, { status: 403 })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const [data] = await db
|
|
|
|
|
.update(tenants)
|
|
|
|
|
.set(parsed.data)
|
2026-07-02 13:42:34 -04:00
|
|
|
.where(and(eq(tenants.id, id), eq(tenants.user_id, ownerId)))
|
2026-06-23 20:36:07 -04:00
|
|
|
.returning()
|
|
|
|
|
|
|
|
|
|
return NextResponse.json(data)
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return NextResponse.json({ error: (e as Error).message }, { status: 500 })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
// Get tenant to free unit
|
|
|
|
|
const tenant = await db.query.tenants.findFirst({
|
2026-07-02 13:42:34 -04:00
|
|
|
where: and(eq(tenants.id, id), eq(tenants.user_id, ownerId)),
|
2026-06-23 20:36:07 -04:00
|
|
|
columns: { unit_id: true },
|
|
|
|
|
})
|
|
|
|
|
|
2026-07-02 13:42:34 -04:00
|
|
|
await db.delete(tenants).where(and(eq(tenants.id, id), eq(tenants.user_id, ownerId)))
|
2026-06-23 20:36:07 -04:00
|
|
|
|
|
|
|
|
// Free unit
|
|
|
|
|
if (tenant?.unit_id) {
|
|
|
|
|
await db
|
|
|
|
|
.update(units)
|
|
|
|
|
.set({ status: "vacant", current_tenant_id: null })
|
2026-07-02 13:42:34 -04:00
|
|
|
.where(and(eq(units.id, tenant.unit_id), eq(units.user_id, ownerId)))
|
2026-06-23 20:36:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NextResponse.json({ success: true })
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return NextResponse.json({ error: (e as Error).message }, { status: 500 })
|
|
|
|
|
}
|
|
|
|
|
}
|