feat: 支持配置微信用户已通关关卡

This commit is contained in:
richarjiang
2026-04-19 14:28:36 +08:00
parent 6e19bfa661
commit f3f27def2b
19 changed files with 7095 additions and 545 deletions

View File

@@ -4,7 +4,7 @@ import { auth } from '@/lib/auth'
export const dynamic = 'force-dynamic'
// GET /api/wx-users - Get all wx users with optional search and pagination
// GET /api/wx-users - Get all wx users with optional search and completion counts
export async function GET(request: NextRequest) {
try {
const session = await auth.api.getSession({
@@ -17,9 +17,6 @@ export async function GET(request: NextRequest) {
const { searchParams } = new URL(request.url)
const search = searchParams.get('search') || ''
const page = parseInt(searchParams.get('page') || '1', 10)
const limit = parseInt(searchParams.get('limit') || '20', 10)
const skip = (page - 1) * limit
const where = search
? {
@@ -30,32 +27,42 @@ export async function GET(request: NextRequest) {
}
: {}
const [users, total] = await Promise.all([
prisma.wxUser.findMany({
where,
skip,
take: limit,
orderBy: { createdAt: 'desc' },
select: {
id: true,
openid: true,
nickname: true,
avatarUrl: true,
points: true,
createdAt: true,
updatedAt: true,
const users = await prisma.wxUser.findMany({
where,
orderBy: { createdAt: 'desc' },
select: {
id: true,
openid: true,
sessionKey: true,
nickname: true,
avatarUrl: true,
stamina: true,
staminaUpdatedAt: true,
createdAt: true,
updatedAt: true,
_count: {
select: {
levelProgress: true,
},
},
}),
prisma.wxUser.count({ where }),
])
},
})
return NextResponse.json({
users,
users: users.map((user) => ({
id: user.id,
openid: user.openid,
sessionKey: user.sessionKey,
nickname: user.nickname,
avatarUrl: user.avatarUrl,
stamina: user.stamina,
staminaUpdatedAt: user.staminaUpdatedAt,
createdAt: user.createdAt,
updatedAt: user.updatedAt,
completedLevelCount: user._count.levelProgress,
})),
meta: {
total,
page,
limit,
totalPages: Math.ceil(total / limit),
total: users.length,
},
})
} catch (error) {