2023-04-05 11:27:01 +01:00
|
|
|
const log = require('../utils/log.utils');
|
2023-04-04 21:28:46 +01:00
|
|
|
const crypto = require('crypto')
|
2023-04-05 11:27:01 +01:00
|
|
|
const db = require('../services/dbAccess.services');
|
|
|
|
const fs = require('fs/promises')
|
2023-04-18 20:56:05 +01:00
|
|
|
const minify = require('html-minifier').minify;
|
2023-04-04 21:28:46 +01:00
|
|
|
|
|
|
|
// Checks users registration key against issued keys
|
2023-04-06 19:42:47 +01:00
|
|
|
async function isAuthed(uuid) { // Needs testing
|
2023-04-06 22:01:37 +01:00
|
|
|
const q = {uuid: uuid}
|
|
|
|
const res = await db.query("users", q)
|
|
|
|
log.out(`authUtils.checkUser: DB Query answer: ${JSON.stringify(res[0])}`, "dbug")
|
|
|
|
const authorized = res && res[0] && res[0].domain;
|
|
|
|
if (authorized) db.userAtime(uuid)
|
|
|
|
return authorized
|
2023-04-06 19:42:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Checks whether a registration request key is valid
|
|
|
|
async function checkRequest(key) {
|
2023-04-06 22:01:37 +01:00
|
|
|
const collection = "registrations"
|
|
|
|
const query = {uuid: key}
|
2023-04-06 19:42:47 +01:00
|
|
|
const res = await db.query(collection, query)
|
2023-04-06 22:01:37 +01:00
|
|
|
log.out(`authUtils.checkRequest: DB Query result: ${JSON.stringify(res)}`, "dbug")
|
|
|
|
const result = res.length > 0 && res[0].time
|
|
|
|
? { result: true, domain: res[0].domain }
|
|
|
|
: { result: false };
|
|
|
|
return result;
|
2023-04-04 21:28:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates an API key for a user
|
2023-04-05 01:09:50 +01:00
|
|
|
async function generateKey() { // Needs testing & moving to 'register.utils'
|
2023-04-04 22:12:38 +01:00
|
|
|
return crypto.randomUUID()
|
2023-04-04 21:28:46 +01:00
|
|
|
};
|
|
|
|
|
2023-04-05 11:27:01 +01:00
|
|
|
async function generateConfirmationEmail(eml, uuid) {
|
|
|
|
try {
|
2023-04-18 20:56:05 +01:00
|
|
|
let htmlTpl = await fs.readFile('mail-templates/register.html', 'utf-8');
|
|
|
|
let minify = await minify(((htmlTpl).replace(/>>ACCESSCODE<</g, uuid)), {
|
|
|
|
removeComments: true
|
|
|
|
});
|
2023-04-05 11:27:01 +01:00
|
|
|
let txtTpl = fs.readFile('mail-templates/register.txt', 'utf-8');
|
|
|
|
return msg = {
|
|
|
|
to: eml,
|
|
|
|
subject: "OwlBoard Registration",
|
|
|
|
text: (await txtTpl).replace(/>>ACCESSCODE<</g, uuid),
|
2023-04-18 20:56:05 +01:00
|
|
|
html: minify
|
2023-04-05 11:27:01 +01:00
|
|
|
}
|
|
|
|
} catch(err) {
|
|
|
|
log.out(`mailServices.generateConfirmationEmail: Error reading templates, $(err)`, "err");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-05 00:58:48 +01:00
|
|
|
module.exports = {
|
|
|
|
isAuthed,
|
2023-04-05 11:27:01 +01:00
|
|
|
generateKey,
|
2023-04-06 19:42:47 +01:00
|
|
|
generateConfirmationEmail,
|
|
|
|
checkRequest
|
2023-04-04 21:28:46 +01:00
|
|
|
}
|