import { getUrlStatusOptimized } from "@/lib/dto/short-urls"; import { checkUserStatus } from "@/lib/dto/user"; import { getCurrentUser } from "@/lib/session"; export async function GET(req: Request) { try { const user = checkUserStatus(await getCurrentUser()); if (user instanceof Response) return user; const status = await getUrlStatusOptimized(user.id, "USER"); return Response.json(status); } catch (error) { return Response.json(error?.statusText || error, { status: error.status || 500, }); } }