59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server'
|
|
import { auth } from '@/auth'
|
|
import { prisma } from '@/lib/prisma'
|
|
|
|
export async function GET(request: NextRequest) {
|
|
try {
|
|
const session = await auth()
|
|
|
|
if (!session?.user?.id || session.user.role !== 'ADMIN') {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const url = new URL(request.url)
|
|
const status = url.searchParams.get('status')
|
|
const page = parseInt(url.searchParams.get('page') || '1')
|
|
const limit = parseInt(url.searchParams.get('limit') || '50')
|
|
|
|
const where: any = {}
|
|
if (status && status !== 'all') {
|
|
where.status = status
|
|
}
|
|
|
|
const payouts = await prisma.payout.findMany({
|
|
where,
|
|
include: {
|
|
user: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
email: true
|
|
}
|
|
}
|
|
},
|
|
orderBy: {
|
|
createdAt: 'desc'
|
|
},
|
|
skip: (page - 1) * limit,
|
|
take: limit
|
|
})
|
|
|
|
const total = await prisma.payout.count({ where })
|
|
|
|
return NextResponse.json({
|
|
payouts,
|
|
pagination: {
|
|
page,
|
|
limit,
|
|
total,
|
|
pages: Math.ceil(total / limit)
|
|
}
|
|
})
|
|
} catch (error) {
|
|
console.error('Error fetching admin payouts:', error)
|
|
return NextResponse.json(
|
|
{ error: 'Failed to fetch payouts' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
} |