75 lines
1.4 KiB
JavaScript
75 lines
1.4 KiB
JavaScript
const mongoose = require('mongoose');
|
|
const bcrypt = require('bcryptjs');
|
|
|
|
const userSchema = new mongoose.Schema({
|
|
email: {
|
|
type: String,
|
|
required: true,
|
|
unique: true,
|
|
lowercase: true,
|
|
trim: true
|
|
},
|
|
password: {
|
|
type: String,
|
|
required: true,
|
|
minlength: 6
|
|
},
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
trim: true
|
|
},
|
|
role: {
|
|
type: String,
|
|
enum: ['admin', 'moderator'],
|
|
default: 'admin'
|
|
},
|
|
avatar: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
isActive: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
lastLogin: {
|
|
type: Date,
|
|
default: null
|
|
},
|
|
createdAt: {
|
|
type: Date,
|
|
default: Date.now
|
|
},
|
|
updatedAt: {
|
|
type: Date,
|
|
default: Date.now
|
|
}
|
|
}, {
|
|
timestamps: true
|
|
});
|
|
|
|
// Hash password before saving
|
|
userSchema.pre('save', async function(next) {
|
|
if (!this.isModified('password')) return next();
|
|
|
|
try {
|
|
const salt = await bcrypt.genSalt(12);
|
|
this.password = await bcrypt.hash(this.password, salt);
|
|
next();
|
|
} catch (error) {
|
|
next(error);
|
|
}
|
|
});
|
|
|
|
// Compare password method
|
|
userSchema.methods.comparePassword = async function(candidatePassword) {
|
|
return bcrypt.compare(candidatePassword, this.password);
|
|
};
|
|
|
|
// Update last login
|
|
userSchema.methods.updateLastLogin = function() {
|
|
this.lastLogin = new Date();
|
|
return this.save();
|
|
};
|
|
|
|
module.exports = mongoose.model('User', userSchema); |