为什么 MongoDB versionKey "_v" 更改后 bcrypt 失败?

问题描述 投票:0回答:2

我正在尝试在 Nodejs 中实现身份验证流程。我使用 MongoDB 作为数据库,并且“bcrypt 密码哈希”和“mongoose 文档版本控制”存在问题。

当我创建一个新帐户并使用该帐户登录时,没有任何问题,一切正常。但是当我对子文档进行更改时,versionKey“_v”正在更改,我无法再访问该帐户。它向我抛出来自护照中间件的“无效密码”错误。我不明白为什么会这样。

结构如下:

Mongoose 用户模型

const bcrypt = require("bcrypt");
const userSchema = new mongoose.Schema(
    {
        name: { type: String, required: true },
        surname: { type: String, required: true },
        email: { type: String, required: true, unique: true },
        password: { type: String, required: true },
        username: { type: String },
        bio: { type: String },
        title: { type: String },
        area: { type: String },
        image: {
            type: String,
            default:
                "https://icon-library.com/images/no-profile-pic-icon/no-profile-pic-icon-24.jpg",
        },
        experiences: [
            { type: mongoose.Schema.Types.ObjectId, ref: "Experience" },
        ],
        friends: [{ type: mongoose.Schema.Types.ObjectId, ref: "User" }],
        friendRequests: [
            {
                type: mongoose.Schema.Types.ObjectId,
                ref: "User",
            },
        ],
    },
    { timestamp: true }
);

/**
 * Enyrcyp user password before saving DB
 */
userSchema.pre("save", async function (next) {
    try {
        // const user = this;
        // if (!user.isModified("password")) return next();
        const salt = await bcrypt.genSalt(10);
        this.password = await bcrypt.hash(this.password, salt);
    } catch (error) {
        console.log("Bcryp hash error: ", error);
        next(error);
    }
});

/**
 * Checks entered password and hashed password in DB
 * returns boolean
 * @param {String} enteredPassword
 */
userSchema.methods.isValidPassword = async function (enteredPassword) {
    try {
        return await bcrypt.compare(enteredPassword, this.password);
    } catch (error) {
        console.log("Bcrypt password check error: ", error);
        next(error);
    }
};

const User = mongoose.model("User", userSchema);
module.exports = User;

处理用户登录过程的 Passport 中间件

passport.use(
    new LocalStrategy(
        {
            usernameField: "email",
        },
        async (email, password, done) => {
            try {
                const foundUser = await db.User.findOne({ email });
                if (!foundUser) throw new ApiError(400, "Invalid email ");

                const isPasswordsMatched = await foundUser.isValidPassword(
                    password
                );

                if (!isPasswordsMatched)
                    throw new ApiError(400, "Invalid password");

                //Send user if everything  is ok
                done(null, foundUser);
            } catch (error) {
                console.log("Passport local strategy error: ", error);
                done(error, false);
            }
        }
    )
);
javascript node.js mongodb mongoose bcrypt
2个回答
0
投票

我发现,如果我改变散列密码的逻辑,它就会起作用。我删除了 mongoose 预保存挂钩,该挂钩在保存数据库之前将哈希添加到密码中。

这是工作结构:

  • 我刚刚将 mongoose hook 转换为方法
/**
 * Enyrcyp user password before saving DB
 */
userSchema.methods.hashPassword = async function () {
    try {
        const salt = await bcrypt.genSalt(10);
        this.password = await bcrypt.hash(this.password, salt);
    } catch (error) {
        console.log("Bcryp hash error: ", error);
        next(error);
    }
};

  • 我在将新用户保存到数据库之前调用 hashPassword 函数。

因此,使用这种结构,当用户注册时,我只使用 bcrypt 一次。文档版本更改可能会影响 bcrypt 哈希。所以现在可以了。


0
投票

这为 my 实现为何不起作用提供了一个很好的提示。我还在预保存挂钩中对密码进行了加盐和哈希处理。每次我保存用户对象时,它都会对密码进行哈希处理 - 对用户对象的任何编辑都会使存储的“哈希密码”无效。

您可能也遇到过这种情况;版本号的变化可能表明您再次保存了用户对象,无意中散列了已经散列的密码。

© www.soinside.com 2019 - 2024. All rights reserved.