首页 > 解决方案 > 如何在sails js模式中使用bcrypt.compare?

问题描述

我有一个这样的用户模型:

module.exports = {
  attributes: {
    email: {
      type: 'string',
      isEmail: true,
      unique: true,
      required: true
    },
    password: {
      type: 'string',
      required: true
    }
  },
  beforeCreate: (value, next) => {
    bcrypt.hash(value.password, 10, (err, hash) => {
      if (err){
        throw new Error(err);
      }
      value.password = hash;
      next();
    });
  },
};

现在,当我想在登录期间匹配密码时,如何解密密码,如果可能的话,我更愿意在用户模型文件中执行它。

控制器/ login.js

module.exports = {
  login: async (req, res) => {
    try{
      const user = await User.findOne({email: req.body.email});
      if (!user){
        throw new Error('Failed to find User');
      }

      // here I want to match the password by calling some compare 
      //function from userModel.js

      res.status(201).json({user: user});
    }catch(e){
      res.status(401).json({message: e.message});
    }
  },
};

标签: node.jsmongodbsails.jsbcryptsails-mongo

解决方案


首先尝试通过用户查找具有给定用户名的用户

const find = Users.find(user=>user.username===req.body.username)

if(!find){
    res.send('User Not Found')
}
else{
    if( await bcrypt.compare(req.body.password,find.password)){
        //now your user has been found 
    }
    else{
        //Password is Wrong
    }
}

您必须使用 bcrypt.compare(a,b)

a = 用户给定的密码

b = 如果用户名存在,则为原始密码

希望它能解决你的问题


推荐阅读