pis #12
2
app.js
2
app.js
@ -75,7 +75,7 @@ app.use('/api/v1/register', regRtr);
|
||||
|
||||
// Authented Routes
|
||||
app.use('/api/v1/ldbs', authenticate)
|
||||
app.use('/api/v1/auth/test', authenticate, (req, res) => res.status(200)) // Returns 401 if auth failed, 200 if successful.
|
||||
app.use('/api/v1/auth/test', authenticate, (req, res) => res.status(200).json({status: "ok", message: "Authentication successful"})) // Returns 401 if auth failed, 200 if successful.
|
||||
|
||||
// Number of proxies:
|
||||
app.set('trust proxy', 4)
|
||||
|
@ -7,8 +7,6 @@ const domains = require('../configs/domains.configs')
|
||||
|
||||
async function createRegKey(body) {
|
||||
log.out(`registerServices.createRegKey: Incoming request`, "INFO")
|
||||
if (!clean.checkEmailValid(body.mail)) {return {status: 400, message:"address format invalid"}
|
||||
}
|
||||
const domain = await clean.getDomainFromEmail(body.email) // The function should validate the email
|
||||
log.out(`registerServices: New registration request from domain: ${domain}`, "info")
|
||||
if (domains.includes(domain)) {
|
||||
|
@ -3,7 +3,7 @@ const environment = process.env.NODE_ENV;
|
||||
const hideInProduction = ["info", "dbug"]
|
||||
|
||||
async function out(msg, level = 'othr') {
|
||||
if (environment === "production" && hideInProduction.includes(level)) {
|
||||
if (environment === "production" && hideInProduction.includes(level.toLowerCase())) {
|
||||
return;
|
||||
} else {
|
||||
const time = new Date().toISOString();
|
||||
|
@ -43,18 +43,9 @@ async function getDomainFromEmail(mail) { // Needs testing
|
||||
return split[1]
|
||||
}
|
||||
|
||||
async function checkEmailValid(mail) {
|
||||
const regex = /^(([^<>()[\]\.,;:\s@\"]+(\.[^<>()[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i;
|
||||
const result = mail.match(regex)
|
||||
? true
|
||||
: false; log.out(`sanitizerUtils.checkEmailValid: Invalid email format used: ${mail}`,"warn")
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
cleanApiEndpointTxt,
|
||||
cleanApiEndpointNum,
|
||||
cleanNrcc,
|
||||
getDomainFromEmail,
|
||||
checkEmailValid
|
||||
}
|
Loading…
Reference in New Issue
Block a user