const { checkAndRefreshAccessToken } = require('../utils/refreshToken'); const { insertDemoRequest, checkExistingDemoRequest } = require('../utils/demoRequestDB'); const { sendEmail } = require('../utils/sendEmail'); const { DateTime } = require('luxon'); const fetch = require('node-fetch'); const {createGoogleCalendarEvent} = require('../utils/createEvent'); //Getting Vapi Usage Flag (Whether to use or not) const { useVapi} = require("../config"); // The assistant URL for Vapi & other related config const assistant_url = 'https://api.vapi.ai/call'; const demoRequest = async (req, res) => { const { name, email, company, product, demoDate, selectedSlot, phone, additionalComments, timezone, consent, policyVersion } = req.body; console.log('Received demo request:', req.body); // Basic validation on the server side if (!name || !email || !company || !demoDate || !phone || !product || !selectedSlot) { console.log("Missing required fields"); return res.status(400).send({ error: 'Please fill in all required fields.' }); } const convertedDemoDate = DateTime.fromISO(demoDate, { zone: 'utc' }) // Parse demoDate as UTC .setZone('Asia/Kolkata') // Convert it to Asia/Kolkata time zone .toFormat('yyyy-MM-dd'); // Format it to 'yyyy-MM-dd' console.log('Converted demoDate to Asia/Kolkata timezone:', convertedDemoDate); // Step 2: Convert the Asia/Kolkata date to the user's time zone (const, as we're not reassigning it) const userDemoDate = DateTime.fromISO(convertedDemoDate, { zone: 'Asia/Kolkata' }) // Parse demoDate as Asia/Kolkata .setZone(timezone) // Convert it to user's time zone (e.g., 'America/New_York') .toFormat('yyyy-MM-dd'); // Format it to 'yyyy-MM-dd' console.log('Converted demoDate to user\'s timezone:', userDemoDate); // 1. Check if a demo request already exists within the last 15 days const existingRequest = await checkExistingDemoRequest(name, email, product, convertedDemoDate, phone); if (existingRequest) { console.log("Demo request already made within 15 days"); return res.status(400).send({ error: 'You have already requested a demo for this product within 15 days. Our team will get back to you shortly.' }); } const [startTime, endTime] = selectedSlot.split(' (')[0].split(' - '); console.log('Selected time slot:', startTime, endTime); console.log('User\'s timezone:', timezone); // Convert start time and end time to the user's time zone first const startUserTime = DateTime.fromFormat(startTime, 'HH:mm', { zone: timezone }); const endUserTime = DateTime.fromFormat(endTime, 'HH:mm', { zone: timezone }); // Ensure that the conversion to Asia/Kolkata time zone is successful const startAsiaKolkata = startUserTime.setZone('Asia/Kolkata').toFormat('HH:mm'); const endAsiaKolkata = endUserTime.setZone('Asia/Kolkata').toFormat('HH:mm'); // Create the formatted time range string const formattedRange = `${startAsiaKolkata} - ${endAsiaKolkata}`; console.log('Converted time range to Asia/Kolkata:', formattedRange); // 2. Insert the new demo request into the database await insertDemoRequest(name, email, company, product, convertedDemoDate, formattedRange, phone, additionalComments, consent, policyVersion); console.log('Demo request added successfully'); const [ eventData, icsContent ] = await createGoogleCalendarEvent(name, email, demoDate, selectedSlot, product, timezone); const attachment = { buffer: Buffer.from(icsContent, 'utf-8'), mimetype: 'text/calendar', filename: 'event.ics', contentType: 'text/calendar' }; // // Update the email template with the calendar buttons // const calendarButtonsHtml = ` //
Add to Calendar:
//// // Google Calendar // // | //// // Outlook Calendar // // | //// // Yahoo Calendar // // | //
Thank you for requesting a demo of our Genomatics product: ${product}. We're excited to showcase how our solutions can benefit your team at ${company}.
Requested demo date: ${userDemoDate} - Time zone: ${timezone}
Preferred time slot: ${selectedSlot}
We'll be in touch soon to confirm the details. In the meantime, please feel free to reach out with any specific questions or topics you’d like us to cover during the demo.
${additionalComments || "No additional message provided."}
Best regards,
The Genomatics Team
This email was sent in response to your contact form submission on the Genomatics platform.
Dear Team,
A new demo request has been submitted. Details are as follows:
Name: | ${name} |
Email: | ${email} |
Company: | ${company} |
Product: | ${product} |
Phone: | ${phone} |
Demo Date: | ${convertedDemoDate} |
Preferred Slot: | ${formattedRange} |
Additional Comments: | ${additionalComments || "No additional comments provided."} |
Please follow up with the requester accordingly.
Best regards,
Genomatics System