File size: 878 Bytes
62c3fe0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const {runQuery, runSelectQuery} = require('./queries');

// Check existing job application
async function checkExistingJobApplication(name, email, role) {
    const checkQuery = `SELECT * FROM applicants WHERE name = ? AND email = ? AND role = ?;`;
    const results = await runSelectQuery(checkQuery, [name, email, role]);
    console.log(results);
    return results.length > 0;
}

// Insert job application
async function insertJobApplication(name, email, phone, experience, role, linkedin, resume, filename) {
    const insertQuery = `INSERT INTO applicants (date, time, name, email, phone, experience, role, linkedin, resume, filename) VALUES (DATE("now"), TIME("now"), ?, ?, ?, ?, ?, ?, ?, ?);`;
    await runQuery(insertQuery, [name, email, phone, experience, role, linkedin, resume, filename]);
}

module.exports = { checkExistingJobApplication, insertJobApplication };