All files / web/src/app/api/debug/active-players route.ts

0% Statements 0/54
0% Branches 0/1
0% Functions 0/1
0% Lines 0/54

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55                                                                                                             
import { NextResponse } from 'next/server'
import { getUserId } from '@/lib/viewer'
import { getActivePlayers } from '@/lib/arcade/player-manager'
import { db, schema } from '@/db'
import { eq } from 'drizzle-orm'
import { withAuth } from '@/lib/auth/withAuth'

// Force dynamic rendering - this route uses headers()
export const dynamic = 'force-dynamic'

/**
 * GET /api/debug/active-players
 * Debug endpoint to check active players for current user
 */
export const GET = withAuth(
  async () => {
    try {
      const userId = await getUserId()

      // Get ALL players for this user
      const allPlayers = await db.query.players.findMany({
        where: eq(schema.players.userId, userId),
      })

      // Get active players using the helper
      const activePlayers = await getActivePlayers(userId)

      return NextResponse.json({
        userId,
        allPlayers: allPlayers.map((p) => ({
          id: p.id,
          name: p.name,
          emoji: p.emoji,
          isActive: p.isActive,
        })),
        activePlayers: activePlayers.map((p) => ({
          id: p.id,
          name: p.name,
          emoji: p.emoji,
          isActive: p.isActive,
        })),
        activeCount: activePlayers.length,
        totalCount: allPlayers.length,
      })
    } catch (error) {
      console.error('Failed to fetch active players:', error)
      return NextResponse.json(
        { error: 'Failed to fetch active players', details: String(error) },
        { status: 500 }
      )
    }
  },
  { role: 'admin' }
)