Files
meet-hub/supabase/functions/create-google-meet-event/index.ts
dwindown fa1064daac Fix JWT signing for Google Calendar authentication
- Change from jwt.sign() to SignJWT class
- Use proper jose library SignJWT API for Deno
- Fix 'Cannot read properties of undefined' error

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-23 11:04:40 +07:00

242 lines
7.3 KiB
TypeScript

import { serve } from "https://deno.land/std@0.190.0/http/server.ts";
import { createClient } from "https://esm.sh/@supabase/supabase-js@2";
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "authorization, x-client-info, apikey, content-type",
};
interface GoogleServiceAccount {
type: string;
project_id: string;
private_key_id: string;
private_key: string;
client_email: string;
client_id: string;
token_uri: string;
}
interface CreateMeetRequest {
slot_id: string;
date: string;
start_time: string;
end_time: string;
client_name: string;
client_email: string;
topic: string;
notes?: string;
}
// Function to create JWT and get access token
async function getGoogleAccessToken(serviceAccount: GoogleServiceAccount): Promise<string> {
try {
// Import JWT sign function from jose
const { SignJWT } = await import("https://deno.land/x/jose@v4.15.1/index.ts");
const now = Math.floor(Date.now() / 1000);
// Create and sign JWT
const token = await new SignJWT({
iss: serviceAccount.client_email,
scope: "https://www.googleapis.com/auth/calendar",
aud: serviceAccount.token_uri,
exp: now + 3600,
iat: now,
})
.setProtectedHeader({ alg: 'RS256', kid: serviceAccount.private_key_id })
.sign(serviceAccount.private_key);
// Exchange JWT for access token
const response = await fetch(serviceAccount.token_uri, {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: new URLSearchParams({
grant_type: "urn:ietf:params:oauth:grant-type:jwt-bearer",
assertion: token,
}),
});
if (!response.ok) {
const errorText = await response.text();
throw new Error(`Token exchange failed: ${errorText}`);
}
const data = await response.json();
if (!data.access_token) {
throw new Error("No access token in response");
}
return data.access_token;
} catch (error: any) {
console.error("Error getting Google access token:", error);
throw error;
}
}
serve(async (req: Request): Promise<Response> => {
if (req.method === "OPTIONS") {
return new Response(null, { headers: corsHeaders });
}
try {
const supabaseUrl = Deno.env.get("SUPABASE_URL")!;
const supabaseServiceKey = Deno.env.get("SUPABASE_SERVICE_ROLE_KEY")!;
const supabase = createClient(supabaseUrl, supabaseServiceKey);
const body: CreateMeetRequest = await req.json();
console.log("Creating Google Meet event for slot:", body.slot_id);
// Get platform settings
const { data: settings, error: settingsError } = await supabase
.from("platform_settings")
.select("integration_google_calendar_id, google_service_account_json")
.single();
if (settingsError) {
console.error("Error fetching settings:", settingsError);
throw settingsError;
}
const calendarId = settings?.integration_google_calendar_id;
if (!calendarId) {
return new Response(
JSON.stringify({
success: false,
message: "Google Calendar ID belum dikonfigurasi di Pengaturan > Integrasi"
}),
{ status: 400, headers: { ...corsHeaders, "Content-Type": "application/json" } }
);
}
// Get service account from settings
const serviceAccountJson = settings?.google_service_account_json;
if (!serviceAccountJson) {
return new Response(
JSON.stringify({
success: false,
message: "Google Service Account JSON belum dikonfigurasi. Tambahkan di Pengaturan > Integrasi."
}),
{ status: 400, headers: { ...corsHeaders, "Content-Type": "application/json" } }
);
}
// Parse service account JSON
let serviceAccount: GoogleServiceAccount;
try {
serviceAccount = JSON.parse(serviceAccountJson);
} catch (error: any) {
console.error("Failed to parse service account JSON:", error);
return new Response(
JSON.stringify({
success: false,
message: "Format Google Service Account JSON tidak valid: " + error.message
}),
{ status: 400, headers: { ...corsHeaders, "Content-Type": "application/json" } }
);
}
// Get access token
const accessToken = await getGoogleAccessToken(serviceAccount);
console.log("Got access token");
// Build event data
const startDate = new Date(`${body.date}T${body.start_time}`);
const endDate = new Date(`${body.date}T${body.end_time}`);
const eventData = {
summary: `Konsultasi: ${body.topic} - ${body.client_name}`,
description: `Client: ${body.client_email}\n\nNotes: ${body.notes || '-'}\n\nSlot ID: ${body.slot_id}`,
start: {
dateTime: startDate.toISOString(),
timeZone: "Asia/Jakarta",
},
end: {
dateTime: endDate.toISOString(),
timeZone: "Asia/Jakarta",
},
attendees: [
{ email: body.client_email },
],
conferenceData: {
createRequest: {
requestId: body.slot_id,
conferenceSolutionKey: { type: "hangoutsMeet" },
},
},
sendUpdates: "all",
guestsCanInviteOthers: false,
guestsCanModify: false,
guestsCanSeeOtherGuests: false,
};
console.log("Creating event in calendar:", calendarId);
// Create event via Google Calendar API
const calendarResponse = await fetch(
`https://www.googleapis.com/calendar/v3/calendars/${encodeURIComponent(calendarId)}/events?conferenceDataVersion=1`,
{
method: "POST",
headers: {
"Authorization": `Bearer ${accessToken}`,
"Content-Type": "application/json",
},
body: JSON.stringify(eventData),
}
);
if (!calendarResponse.ok) {
const errorText = await calendarResponse.text();
console.error("Google Calendar API error:", errorText);
return new Response(
JSON.stringify({
success: false,
message: "Gagal membuat event di Google Calendar: " + errorText
}),
{ status: 500, headers: { ...corsHeaders, "Content-Type": "application/json" } }
);
}
const eventDataResult = await calendarResponse.json();
console.log("Event created:", eventDataResult.id);
// Update the slot with the meet link
if (eventDataResult.hangoutLink) {
await supabase
.from("consulting_slots")
.update({ meet_link: eventDataResult.hangoutLink })
.eq("id", body.slot_id);
return new Response(
JSON.stringify({
success: true,
meet_link: eventDataResult.hangoutLink,
event_id: eventDataResult.id,
html_link: eventDataResult.htmlLink,
}),
{ headers: { ...corsHeaders, "Content-Type": "application/json" } }
);
}
return new Response(
JSON.stringify({
success: false,
message: "Event berhasil dibuat tapi tidak ada meet link"
}),
{ status: 500, headers: { ...corsHeaders, "Content-Type": "application/json" } }
);
} catch (error: any) {
console.error("Error creating Google Meet event:", error);
return new Response(
JSON.stringify({
success: false,
message: error.message || "Unknown error occurred"
}),
{ status: 500, headers: { ...corsHeaders, "Content-Type": "application/json" } }
);
}
});