first commit

This commit is contained in:
2026-01-17 14:17:42 +05:30
commit 0f194eb9e7
328 changed files with 73544 additions and 0 deletions

View File

@@ -0,0 +1,94 @@
import { NextRequest, NextResponse } from 'next/server'
import { auth } from '@/auth'
import { prisma } from '@/lib/prisma'
export async function GET() {
try {
const session = await auth()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
const addresses = await prisma.address.findMany({
where: { userId: session.user.id },
orderBy: [
{ isDefault: 'desc' },
{ createdAt: 'desc' }
]
})
return NextResponse.json({ addresses })
} catch (error) {
console.error('Error fetching addresses:', error)
return NextResponse.json(
{ error: 'Failed to fetch addresses' },
{ status: 500 }
)
}
}
export async function POST(request: NextRequest) {
try {
const session = await auth()
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}
const data = await request.json()
const {
firstName,
lastName,
company,
address1,
address2,
city,
state,
zipCode,
country,
phone,
isDefault,
type
} = data
// If setting as default, unset other default addresses
if (isDefault) {
await prisma.address.updateMany({
where: {
userId: session.user.id,
isDefault: true
},
data: { isDefault: false }
})
}
const address = await prisma.address.create({
data: {
userId: session.user.id,
firstName,
lastName,
company,
address1,
address2,
city,
state,
zipCode,
country: country || 'India',
phone,
isDefault,
type
}
})
return NextResponse.json({ address })
} catch (error) {
console.error('Error creating address:', error)
return NextResponse.json(
{ error: 'Failed to create address' },
{ status: 500 }
)
}
}