All files / src/app/api/admin/analytics/revenue/trend route.ts

0% Statements 0/43
100% Branches 0/0
0% Functions 0/1
0% Lines 0/43

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                                                                                       
export const dynamic = "force-dynamic";

/**
 * Revenue Trend API Route
 *
 * GET - Get revenue trend data for charting
 */

import { NextRequest, NextResponse } from "next/server";
import {
  withAdmin,
  withErrorHandling,
  successResponse,
  ApiSuccessResponse,
  ApiErrorResponse,
} from "@/lib/api";
import { getRevenueTrend, type RevenueTrendPoint } from "@/lib/analytics/services";

/**
 * GET /api/admin/analytics/revenue/trend
 * Get revenue trend data
 *
 * Query params:
 * - days: Number of days to include (default: 30)
 * - granularity: 'day' | 'week' | 'month' (default: 'day')
 */
async function handleGet(
  request: NextRequest
): Promise<NextResponse<ApiSuccessResponse<RevenueTrendPoint[]> | ApiErrorResponse>> {
  const { searchParams } = new URL(request.url);

  const days = parseInt(searchParams.get("days") || "30", 10);
  const granularity = (searchParams.get("granularity") || "day") as "day" | "week" | "month";

  // Validate inputs
  const validDays = Math.min(Math.max(days, 1), 365);
  const validGranularity = ["day", "week", "month"].includes(granularity) ? granularity : "day";

  const trend = await getRevenueTrend(validDays, validGranularity);
  return successResponse(trend);
}

export const GET = withErrorHandling(withAdmin(handleGet));