mika-agent-assist/supabase/functions/create-portal-session/index.ts
gpt-engineer-app[bot] 5ef5bab121 Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
2026-04-17 17:47:29 +00:00

62 lines
2.2 KiB
TypeScript

import { createClient } from 'npm:@supabase/supabase-js@2';
import { getPaddleClient, type PaddleEnv } from '../_shared/paddle.ts';
const corsHeaders = {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': 'authorization, x-client-info, apikey, content-type',
'Content-Type': 'application/json',
};
Deno.serve(async (req) => {
if (req.method === 'OPTIONS') {
return new Response(null, { headers: corsHeaders });
}
try {
const authHeader = req.headers.get('Authorization');
if (!authHeader) {
return new Response(JSON.stringify({ error: 'Missing auth' }), { status: 401, headers: corsHeaders });
}
const supabaseUrl = Deno.env.get('SUPABASE_URL')!;
const anonKey = Deno.env.get('SUPABASE_PUBLISHABLE_KEY') || Deno.env.get('SUPABASE_ANON_KEY')!;
const userClient = createClient(supabaseUrl, anonKey, {
global: { headers: { Authorization: authHeader } },
});
const { data: userRes, error: userErr } = await userClient.auth.getUser();
if (userErr || !userRes.user) {
return new Response(JSON.stringify({ error: 'Unauthorized' }), { status: 401, headers: corsHeaders });
}
const admin = createClient(supabaseUrl, Deno.env.get('SUPABASE_SERVICE_ROLE_KEY')!);
const { data: sub } = await admin
.from('subscriptions')
.select('paddle_customer_id, paddle_subscription_id, environment')
.eq('user_id', userRes.user.id)
.order('updated_at', { ascending: false })
.limit(1)
.maybeSingle();
if (!sub?.paddle_customer_id) {
return new Response(JSON.stringify({ error: 'No subscription found' }), {
status: 404,
headers: corsHeaders,
});
}
const paddle = getPaddleClient(sub.environment as PaddleEnv);
const subIds = sub.paddle_subscription_id ? [sub.paddle_subscription_id] : [];
const portalSession = await paddle.customerPortalSessions.create(sub.paddle_customer_id, subIds);
return new Response(JSON.stringify({ url: portalSession.urls.general.overview }), {
headers: corsHeaders,
});
} catch (e) {
console.error('create-portal-session error:', e);
return new Response(JSON.stringify({ error: (e as Error).message }), {
status: 500,
headers: corsHeaders,
});
}
});