'use strict' require('dotenv').config() const Util = require('util') const Jwt = require('@hapi/jwt') const Schmervice = require('@hapipal/schmervice') const SecurePassword = require('secure-password') const hasher = async (pwd, steak) => { const hash = await pwd.hash(steak) const result = await pwd.verify(steak, hash) let squirtle = null switch (result) { case SecurePassword.INVALID_UNRECOGNIZED_HASH: return console.error( 'This hash was not made with secure-password. Attempt legacy algorithm', ) case SecurePassword.INVALID: return console.log('Invalid password') case SecurePassword.VALID: return result case SecurePassword.VALID_NEEDS_REHASH: console.log('Yay you made it, wait for us to improve your safety') try { squirtle = await pwd.hash(steak) // console.log('improvedHash', squirtle) // const saveHash = Auth.insert({user_email: matchingEmails}, ).into('token') return squirtle } catch (err) { console.error( 'You are authenticated, but we could not improve your safety this time around', ) } break } } /** Class for methods used in the User plugin */ module.exports = class UserService extends Schmervice.Service { /** * Unsure of what our constructor does * @param {...any} args */ constructor(...args) { super(...args) const pwd = new SecurePassword() this.pwd = { hash: Util.promisify(pwd.hash.bind(pwd)), verify: Util.promisify(pwd.verify.bind(pwd)), } } /** * Use knex to find users with id column * @param {number} id * @param {*} txn * @returns */ async findById(id, txn) { const { User } = this.server.models() return await User.query(txn) .throwIfNotFound() .first() .where({ user_id: id }) } /** * Use knew to find first user with username * @param {*} username * @param {*} txn * @returns */ async findByUsername(username, txn) { const { User } = this.server.models() return await User.query(txn) .throwIfNotFound() .first() .where({ user_name: username }) } /** * Signup function * @param {*} param0 * @param {*} txn * @returns */ async signup({ password, userInfo, created_at }, txn) { const { User, Auth } = this.server.models() const matchingEmails = await User.query().where( 'user_email', userInfo.user_email, ) if (matchingEmails.length > 0) { throw `User ${userInfo.user_email} already exists: Cannot create a user without a unique email` } // Insert User Info to User table const insertUser = await User.query().insert(userInfo) // insert a row with blank password to be updated by changePassword() await Auth.query().insert({ user_email: insertUser.user_email, created_at: created_at, token: null, }) // update null token with hashed password await this.changePassword(insertUser.user_email, password, txn) return { user_id: insertUser.id, user_name: insertUser.user_name, user_email: insertUser.user_email, is_poster: insertUser.is_poster, is_admin: insertUser.is_admin, is_verified: insertUser.is_verified, } } /** * Updates user's info * @param {number} id * @param {*} param1 * @param {*} txn * @returns */ async update(id, { password, ...userInfo }, txn) { const { User } = this.server.models() if (Object.keys(userInfo).length > 0) { await User.query(txn) .throwIfNotFound() .where({ id }) .patch(userInfo) } if (password) { await this.changePassword(id, password, txn) } return id } /** * Self explanatory * @param {*} param0 * @param {*} txn * @returns */ async login({ email, password }, txn) { const { User, Auth } = this.server.models() const user = await Auth.query(txn) .throwIfNotFound() .first() .where({ user_email: email }) const bufferPepper = Buffer.from(process.env.PEPPER + password) /** Uncomment to run password check using SecurePassword */ const passwordCheck = await this.pwd.verify(bufferPepper, user.token) console.log("passwordCheck", passwordCheck) if (passwordCheck === SecurePassword.VALID_NEEDS_REHASH) { await this.changePassword(user.user_email, password, txn) } else if (passwordCheck !== SecurePassword.VALID) { throw User.createNotFoundError() } return user } /** * Create a token to be sent in request headers * @param {User} user * @returns {Token} */ createToken(user) { const key = this.server.registrations['main-app-plugin'].options.jwtKey return Jwt.token.generate( { aud: 'urn:audience:test', iss: 'urn:issuer:test', email: user.user_email, }, { key: key, algorithm: 'HS256', }, { ttlSec: 4 * 60 * 60, // 7 days }, ) } /** * Use knex to try to change password entry * @param {number} id * @param {string} password * @param {*} txn * @returns {number} */ async changePassword(email, password, txn) { const { User, Auth } = this.server.models() console.log('email passed to changePassword', email) const hashed = await this.pwd.hash(Buffer.from(process.env.PEPPER + password)) console.log('hashed', hashed) await Auth.query(txn) .throwIfNotFound() .where({ user_email: email }) .patch({ // user_email: email, token: hashed }) console.log('changePassword query completed') return email // await User.query(txn) // .throwIfNotFound() // .where({ id }) // .patch({ // password: await this.pwd.hash(Buffer.from(password)), // }) // return id } async getPassword(email, txn) { const { Auth } = this.server.models() const passwordRow = await Auth.query(txn) .where('user_email', email) .first() return passwordRow ? passwordRow.token : null } }