84 lines
2.6 KiB
TypeScript
84 lines
2.6 KiB
TypeScript
import { createClient } from 'jsr:@supabase/supabase-js@2';
|
|
import { requireAuth, checkRateLimit } from '../_shared/auth.ts';
|
|
|
|
const corsHeaders = {
|
|
'Access-Control-Allow-Origin': '*',
|
|
'Access-Control-Allow-Headers': 'authorization, x-client-info, apikey, content-type',
|
|
};
|
|
|
|
Deno.serve(async (req) => {
|
|
if (req.method === 'OPTIONS') {
|
|
return new Response(null, { headers: corsHeaders });
|
|
}
|
|
|
|
try {
|
|
// Auth check
|
|
const auth = await requireAuth(req);
|
|
if (auth.error) return auth.error;
|
|
|
|
// Rate limit check (20 AI suggestions per hour)
|
|
const supabaseService = createClient(
|
|
Deno.env.get('SUPABASE_URL')!,
|
|
Deno.env.get('SUPABASE_SERVICE_ROLE_KEY')!
|
|
);
|
|
const rateLimitResponse = await checkRateLimit(auth.userId, 'ai_suggest', supabaseService);
|
|
if (rateLimitResponse) return rateLimitResponse;
|
|
|
|
const apiKey = Deno.env.get('INTEGRATIONS_API_KEY');
|
|
if (!apiKey) {
|
|
throw new Error('INTEGRATIONS_API_KEY not configured');
|
|
}
|
|
|
|
const { contents } = await req.json();
|
|
|
|
if (!contents || !Array.isArray(contents) || contents.length === 0) {
|
|
return new Response(
|
|
JSON.stringify({ error: 'Contents array is required' }),
|
|
{ status: 400, headers: { ...corsHeaders, 'Content-Type': 'application/json' } }
|
|
);
|
|
}
|
|
|
|
// Validate contents structure
|
|
for (const content of contents) {
|
|
if (!content.parts || !Array.isArray(content.parts)) {
|
|
return new Response(
|
|
JSON.stringify({ error: 'Each content must have a parts array' }),
|
|
{ status: 400, headers: { ...corsHeaders, 'Content-Type': 'application/json' } }
|
|
);
|
|
}
|
|
}
|
|
|
|
// Call Image Generation API
|
|
const response = await fetch(
|
|
'https://app-9w9pd00g5j41-api-zYkZzKQJrBdL.gateway.appmedo.com/image-generation/submit',
|
|
{
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Gateway-Authorization': `Bearer ${apiKey}`,
|
|
},
|
|
body: JSON.stringify({ contents }),
|
|
}
|
|
);
|
|
|
|
if (!response.ok) {
|
|
const errorText = await response.text();
|
|
throw new Error(`Image Generation API error: ${response.status} - ${errorText}`);
|
|
}
|
|
|
|
const data = await response.json();
|
|
|
|
return new Response(
|
|
JSON.stringify(data),
|
|
{ headers: { ...corsHeaders, 'Content-Type': 'application/json' } }
|
|
);
|
|
|
|
} catch (error) {
|
|
console.error('Image Generation error:', error);
|
|
return new Response(
|
|
JSON.stringify({ error: error.message }),
|
|
{ status: 500, headers: { ...corsHeaders, 'Content-Type': 'application/json' } }
|
|
);
|
|
}
|
|
});
|