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 { rent_payments } from "@/lib/db/schema"
|
|
|
|
|
import { getSessionUser } from "@/lib/session"
|
|
|
|
|
import { rentPaymentSchema } from "@/lib/validations"
|
|
|
|
|
import { ownsProperty, ownsUnit, ownsTenant } from "@/lib/db/ownership"
|
|
|
|
|
import { logActivity } from "@/lib/activity"
|
2026-07-02 13:42:34 -04:00
|
|
|
import { getAccountContext } from "@/lib/account"
|
|
|
|
|
import { emitWebhookEvent } from "@/lib/webhooks/emit"
|
2026-06-23 20:36:07 -04:00
|
|
|
|
|
|
|
|
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 = rentPaymentSchema.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)) ||
|
|
|
|
|
!(await ownsTenant(ownerId, parsed.data.tenant_id))
|
2026-06-23 20:36:07 -04:00
|
|
|
) {
|
|
|
|
|
return NextResponse.json({ error: "Invalid reference" }, { status: 403 })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Auto-set paid_date when status → paid
|
|
|
|
|
const updateData = { ...parsed.data }
|
|
|
|
|
if (parsed.data.status === "paid" && !parsed.data.paid_date) {
|
|
|
|
|
updateData.paid_date = new Date().toISOString().slice(0, 10)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const [data] = await db
|
|
|
|
|
.update(rent_payments)
|
|
|
|
|
.set(updateData)
|
2026-07-02 13:42:34 -04:00
|
|
|
.where(and(eq(rent_payments.id, id), eq(rent_payments.user_id, ownerId)))
|
2026-06-23 20:36:07 -04:00
|
|
|
.returning()
|
|
|
|
|
|
|
|
|
|
if (parsed.data.status === "paid") {
|
|
|
|
|
await logActivity({
|
2026-07-02 13:42:34 -04:00
|
|
|
userId: ownerId,
|
2026-06-23 20:36:07 -04:00
|
|
|
type: "rent_paid",
|
|
|
|
|
title: "Rent payment marked as paid",
|
|
|
|
|
entityType: "rent_payment",
|
|
|
|
|
entityId: id,
|
|
|
|
|
})
|
2026-07-02 13:42:34 -04:00
|
|
|
await emitWebhookEvent({ ownerId, event: "payment.paid", data: { payment: data } })
|
2026-06-23 20:36:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NextResponse.json(data)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
2026-07-02 13:42:34 -04:00
|
|
|
await db.delete(rent_payments).where(and(eq(rent_payments.id, id), eq(rent_payments.user_id, ownerId)))
|
2026-06-23 20:36:07 -04:00
|
|
|
return NextResponse.json({ success: true })
|
|
|
|
|
}
|