first build commit

This commit is contained in:
2026-04-19 00:44:43 -04:00
parent bc271b7ce1
commit 55debd082b
82 changed files with 6217 additions and 97 deletions

View File

@@ -0,0 +1,63 @@
import { NextResponse } from 'next/server'
import { auth } from '@/lib/auth'
import { prisma } from '@/lib/prisma'
import { updateAccountSchema } from '@/lib/validations/account'
type Params = { params: Promise<{ id: string }> }
export async function GET(_req: Request, { params }: Params) {
const session = await auth()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
const { id } = await params
const account = await prisma.account.findFirst({
where: { id, userId: session.user.id },
})
if (!account) return NextResponse.json({ error: 'Not found' }, { status: 404 })
return NextResponse.json(account)
}
export async function PATCH(req: Request, { params }: Params) {
const session = await auth()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
const { id } = await params
const body = await req.json()
const parsed = updateAccountSchema.safeParse(body)
if (!parsed.success) {
return NextResponse.json({ error: parsed.error.flatten() }, { status: 400 })
}
const existing = await prisma.account.findFirst({
where: { id, userId: session.user.id },
})
if (!existing) return NextResponse.json({ error: 'Not found' }, { status: 404 })
const account = await prisma.account.update({
where: { id },
data: parsed.data,
})
return NextResponse.json(account)
}
export async function DELETE(_req: Request, { params }: Params) {
const session = await auth()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
const { id } = await params
const existing = await prisma.account.findFirst({
where: { id, userId: session.user.id },
})
if (!existing) return NextResponse.json({ error: 'Not found' }, { status: 404 })
await prisma.account.delete({ where: { id } })
return new NextResponse(null, { status: 204 })
}

View File

@@ -0,0 +1,37 @@
import { NextResponse } from 'next/server'
import { auth } from '@/lib/auth'
import { prisma } from '@/lib/prisma'
import { createAccountSchema } from '@/lib/validations/account'
export async function GET() {
const session = await auth()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
const accounts = await prisma.account.findMany({
where: { userId: session.user.id },
orderBy: { createdAt: 'asc' },
})
return NextResponse.json(accounts)
}
export async function POST(req: Request) {
const session = await auth()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
const body = await req.json()
const parsed = createAccountSchema.safeParse(body)
if (!parsed.success) {
return NextResponse.json({ error: parsed.error.flatten() }, { status: 400 })
}
const account = await prisma.account.create({
data: { ...parsed.data, userId: session.user.id },
})
return NextResponse.json(account, { status: 201 })
}