-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.model.ts
36 lines (29 loc) · 1003 Bytes
/
user.model.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { Document, Model, Schema, model, models } from "mongoose";
import bcrypt from "bcryptjs";
export interface IUser extends Document {
email: string;
name: string;
password: string;
photo?: string;
matchPassword: (enteredPassword: string) => Promise<boolean>;
}
const UserSchema = new Schema<IUser>(
{
email: { type: String, required: true, unique: true },
name: { type: String, required: true },
password: { type: String, required: true },
photo: { type: String },
},
{ timestamps: true }
);
UserSchema.methods.matchPassword = async function (enteredPassword: string) {
return await bcrypt.compare(enteredPassword, this.password);
};
UserSchema.pre("save", async function (next) {
if (!this.isModified("password")) next();
const salt = await bcrypt.genSalt(10);
this.password = await bcrypt.hash(this.password, salt);
console.log("Password encrypted");
});
const User: Model<IUser> = models?.User || model("User", UserSchema);
export default User;