File size: 631 Bytes
cd8bd0a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { NextRequest, NextResponse } from "next/server";
import { isAuthenticated } from "@/shared/utils/apiAuth";
import { getDatabaseStats } from "@/lib/db/stats";

export async function POST(request: NextRequest) {
  if (!(await isAuthenticated(request))) {
    return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
  }

  try {
    const stats = await getDatabaseStats();
    return NextResponse.json({ success: true, stats });
  } catch (error) {
    console.error("Failed to refresh database stats:", error);
    return NextResponse.json({ error: "Failed to refresh database stats" }, { status: 500 });
  }
}