From cb3fe381c8b3d1029ea2040ff733c1e3352ebf46 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 15 Nov 2025 08:49:32 +0000 Subject: [PATCH] NEXUS Creator Contracts API - List creator's contracts cgen-88ab8a4df29b45dba97fe5d60b3e9b67 --- api/nexus/creator/contracts.ts | 61 ++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 api/nexus/creator/contracts.ts diff --git a/api/nexus/creator/contracts.ts b/api/nexus/creator/contracts.ts new file mode 100644 index 00000000..17e529ab --- /dev/null +++ b/api/nexus/creator/contracts.ts @@ -0,0 +1,61 @@ +import type { VercelRequest, VercelResponse } from "@vercel/node"; +import { getAdminClient } from "../../_supabase"; + +export default async function handler(req: VercelRequest, res: VercelResponse) { + if (req.method !== "GET") { + return res.status(405).json({ error: "Method not allowed" }); + } + + const admin = getAdminClient(); + + // Only authenticated requests + const authHeader = req.headers.authorization; + if (!authHeader) { + return res.status(401).json({ error: "Unauthorized" }); + } + + const token = authHeader.replace("Bearer ", ""); + const { data: { user }, error: authError } = await admin.auth.getUser(token); + + if (authError || !user) { + return res.status(401).json({ error: "Invalid token" }); + } + + try { + const status = req.query.status as string | undefined; + const limit = parseInt((req.query.limit as string) || "50", 10); + const offset = parseInt((req.query.offset as string) || "0", 10); + + let query = admin + .from("nexus_contracts") + .select(` + *, + client:user_profiles(id, full_name, avatar_url), + milestones:nexus_milestones(*), + payments:nexus_payments(*) + `) + .eq("creator_id", user.id) + .order("created_at", { ascending: false }); + + if (status) { + query = query.eq("status", status); + } + + const { data: contracts, error: contractsError, count } = await query + .range(offset, offset + limit - 1) + .then(result => ({ ...result, count: result.data?.length || 0 })); + + if (contractsError) { + return res.status(500).json({ error: contractsError.message }); + } + + return res.status(200).json({ + contracts: contracts || [], + total: count, + limit, + offset, + }); + } catch (error: any) { + return res.status(500).json({ error: error?.message || "Server error" }); + } +}