import { serve } from "https://deno.land/std@0.168.0/http/server.ts"; import { Novu } from "npm:@novu/node@2.0.2"; const corsHeaders = { 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Headers': 'authorization, x-client-info, apikey, content-type', }; serve(async (req) => { if (req.method === 'OPTIONS') { return new Response(null, { headers: corsHeaders }); } try { const novuApiKey = Deno.env.get('NOVU_API_KEY'); if (!novuApiKey) { throw new Error('NOVU_API_KEY is not configured'); } const novu = new Novu(novuApiKey, { backendUrl: Deno.env.get('VITE_NOVU_API_URL') || 'https://api.novu.co', }); const { subscriberId, email, firstName, lastName, phone, avatar, data } = await req.json(); // Validate required fields if (!subscriberId || typeof subscriberId !== 'string' || subscriberId.trim() === '') { return new Response( JSON.stringify({ success: false, error: 'subscriberId is required and must be a non-empty string', }), { headers: { ...corsHeaders, 'Content-Type': 'application/json' }, status: 400, } ); } if (!email || typeof email !== 'string' || email.trim() === '') { return new Response( JSON.stringify({ success: false, error: 'email is required and must be a non-empty string', }), { headers: { ...corsHeaders, 'Content-Type': 'application/json' }, status: 400, } ); } // Validate email format using regex const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(email)) { return new Response( JSON.stringify({ success: false, error: 'Invalid email format. Please provide a valid email address', }), { headers: { ...corsHeaders, 'Content-Type': 'application/json' }, status: 400, } ); } console.log('Creating Novu subscriber:', { subscriberId, email, firstName }); const subscriber = await novu.subscribers.identify(subscriberId, { email, firstName, lastName, phone, avatar, data, }); console.log('Subscriber created successfully:', subscriber.data); return new Response( JSON.stringify({ success: true, subscriberId: subscriber.data._id, }), { headers: { ...corsHeaders, 'Content-Type': 'application/json' }, status: 200, } ); } catch (error: any) { console.error('Error creating Novu subscriber:', error); return new Response( JSON.stringify({ success: false, error: error.message, }), { headers: { ...corsHeaders, 'Content-Type': 'application/json' }, status: 500, } ); } });