|
const {runQuery, runSelectQuery} = require('./queries'); |
|
|
|
|
|
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; |
|
} |
|
|
|
|
|
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 }; |