const { checkAndRefreshAccessToken } = require('../utils/refreshToken'); const { checkExistingJobApplication, insertJobApplication } = require('../utils/jobRequestDB'); const { sendEmail } = require('../utils/sendEmail'); const submitJobApplication = async (req, res) => { const { name, email, phone, experience, role, linkedin } = req.body; const resume = req.file; console.log('Received job application:', req.body); console.log('Received job CV:', req.file); // Basic validation if (!name || !email || !phone || !experience || !role || !linkedin || !resume) { console.log("Missing required fields"); return res.status(400).json({ error: 'Please fill in all required fields.' }); } // Validate email format const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) { console.log("Invalid email format"); return res.status(400).json({ error: 'Please enter a valid email address.' }); } // Refresh access token if needed await checkAndRefreshAccessToken(); // Check if job request already exists const existingRequest = await checkExistingJobApplication(name, email, role); if (existingRequest) { console.log(`Your Job request for the role ${role} is already in queue`); return res.status(400).json({ error: `Your Job request for the role ${role} is already in queue` }); } const filename = resume.originalname; // Insert application into the database await insertJobApplication(name, email, phone, experience, role, linkedin, resume.buffer, filename); console.log('Job Application added to DB successfully'); try{ // ============================= // Email to Applicant // ============================= const applicantSubject = "Job Application Received"; const applicantHtmlMessage = `
Genomatics Logo

Hello ${name},

Thank you for submitting your application for the ${role} role at Genomatics. We’ve received your details and will review your qualifications shortly.

Submitted Details:

We appreciate your interest and will reach out if there’s a match for the position.

Best regards,

The Genomatics Hiring Team


This email was sent in response to your job application form submission on the Genomatics platform.

Follow us on social media:

Twitter LinkedIn
`; await sendEmail(email, applicantSubject, applicantHtmlMessage); // ============================= // 🔹 Email to Authorities (HR Team) // ============================= const authorityEmail = process.env.TEAM_MAIL_IDS; const authoritySubject = `New Job Application for ${role}`; const authorityHtmlMessage = `
Genomatics Logo

📢 New Job Application Received

Dear Hiring Team,

We have received a new job application. Below are the applicant's details:

📎 The applicant has attached their resume for your review.

Kindly review the application and take the necessary steps.

Best regards,

Genomatics Hiring System

`; await sendEmail(authorityEmail, authoritySubject, authorityHtmlMessage, resume, filename); res.status(200).json({ message: 'Your Job Application has been submitted successfully!' }); }catch (error) { console.error('Error sending emails:', error); res.status(400).json({ error: 'Unable to send email for the confirmation of submission, but the application was received suvvessfully!' }); } }; module.exports = { submitJobApplication };