58 lines
1.6 KiB
TypeScript

import { validateExternalAuth } 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("ok", { headers: corsHeaders });
try {
const authHeader = req.headers.get("Authorization");
const supabase = createClient(
Deno.env.get("SUPABASE_URL")!,
Deno.env.get("SUPABASE_ANON_KEY")!,
{ global: { headers: { Authorization: authHeader! } } }
);
const {
data: { user },
} = await supabase.auth.getUser();
if (!user) throw new Error("Unauthorized");
const { external_doctor_id, exception_date, reason, all_day } =
await req.json();
if (!external_doctor_id || !exception_date)
throw new Error("external_doctor_id and exception_date required");
const { data, error } = await supabase
.from("availability_exceptions")
.insert({
external_doctor_id,
exception_date,
reason: reason || "Indisponível",
all_day: all_day !== false,
created_at: new Date().toISOString(),
})
.select()
.single();
if (error) throw error;
return new Response(JSON.stringify({ success: true, data }), {
headers: { ...corsHeaders, "Content-Type": "application/json" },
});
} catch (error: any) {
return new Response(
JSON.stringify({ success: false, error: error.message }),
{
status: 400,
headers: { ...corsHeaders, "Content-Type": "application/json" },
}
);
}
});