2021-04-01 21:34:43 +02:00
|
|
|
const jwt = require("jsonwebtoken")
|
2021-04-07 16:15:05 +02:00
|
|
|
const { UserStatus } = require("../../constants")
|
|
|
|
const { compare } = require("../../hashing")
|
2021-04-14 15:13:48 +02:00
|
|
|
const env = require("../../environment")
|
2021-04-19 18:31:47 +02:00
|
|
|
const { getGlobalUserByEmail } = require("../../utils")
|
2021-04-01 21:34:43 +02:00
|
|
|
|
|
|
|
const INVALID_ERR = "Invalid Credentials"
|
|
|
|
|
|
|
|
exports.options = {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Passport Local Authentication Middleware.
|
2021-04-19 18:31:47 +02:00
|
|
|
* @param {*} email - username to login with
|
2021-04-01 21:34:43 +02:00
|
|
|
* @param {*} password - plain text password to log in with
|
|
|
|
* @param {*} done - callback from passport to return user information and errors
|
|
|
|
* @returns The authenticated user, or errors if they occur
|
|
|
|
*/
|
2021-05-03 09:31:09 +02:00
|
|
|
exports.authenticate = async function (email, password, done) {
|
2021-04-19 18:31:47 +02:00
|
|
|
if (!email) return done(null, false, "Email Required.")
|
2021-04-01 21:34:43 +02:00
|
|
|
if (!password) return done(null, false, "Password Required.")
|
|
|
|
|
2021-04-20 18:17:44 +02:00
|
|
|
const dbUser = await getGlobalUserByEmail(email)
|
|
|
|
if (dbUser == null) {
|
2021-04-01 21:34:43 +02:00
|
|
|
return done(null, false, { message: "User not found" })
|
|
|
|
}
|
|
|
|
|
|
|
|
// check that the user is currently inactive, if this is the case throw invalid
|
|
|
|
if (dbUser.status === UserStatus.INACTIVE) {
|
|
|
|
return done(null, false, { message: INVALID_ERR })
|
|
|
|
}
|
|
|
|
|
|
|
|
// authenticate
|
|
|
|
if (await compare(password, dbUser.password)) {
|
|
|
|
const payload = {
|
2021-04-13 12:56:57 +02:00
|
|
|
userId: dbUser._id,
|
2021-04-01 21:34:43 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 15:13:48 +02:00
|
|
|
dbUser.token = jwt.sign(payload, env.JWT_SECRET, {
|
2021-04-01 21:34:43 +02:00
|
|
|
expiresIn: "1 day",
|
|
|
|
})
|
2021-04-07 12:33:16 +02:00
|
|
|
// Remove users password in payload
|
2021-04-01 21:34:43 +02:00
|
|
|
delete dbUser.password
|
2021-04-07 12:33:16 +02:00
|
|
|
|
2021-04-01 21:34:43 +02:00
|
|
|
return done(null, dbUser)
|
|
|
|
} else {
|
|
|
|
done(new Error(INVALID_ERR), false)
|
|
|
|
}
|
|
|
|
}
|