import { type NextApiRequest, type NextApiResponse } from "next"; import { logger } from "@langfuse/shared/src/server"; import { AdminApiAuthService } from "@/src/ee/features/admin-api/server/adminApiAuth"; import { handleGetOrganizations, handleCreateOrganization, } from "@/src/ee/features/admin-api/server/organizations"; import { hasEntitlementBasedOnPlan } from "@/src/features/entitlements/server/hasEntitlement"; import { getSelfHostedInstancePlanServerSide } from "@/src/features/entitlements/server/getPlan"; export default async function handler( req: NextApiRequest, res: NextApiResponse, ) { try { if (req.method !== "POST" && req.method !== "GET") { res.status(405).json({ error: "Method Not Allowed" }); return; } // Verify admin API authentication, but allow non-langfuse cloud use-cases if (!AdminApiAuthService.handleAdminAuth(req, res, false)) { return; } if ( !hasEntitlementBasedOnPlan({ plan: getSelfHostedInstancePlanServerSide(), entitlement: "admin-api", }) ) { return res.status(403).json({ error: "This feature is not available on your current plan.", }); } // For GET requests, return all organizations if (req.method === "GET") { return await handleGetOrganizations(req, res); } // For POST requests, create a new organization if (req.method === "POST") { return await handleCreateOrganization(req, res); } } catch (e) { logger.error("Failed to process organization request", e); res.status(500).json({ error: "Internal server error" }); } }