Pre-save hook and instance methods in Sequelize? Pre-save hook and instance methods in Sequelize? mongoose mongoose

Pre-save hook and instance methods in Sequelize?


The best way is to expand your model with class or instance methods:

var User = sequelize.define('User', {    username: { type: Sequelize.STRING, unique: true },    email: { type: Sequelize.STRING, unique: true },    password: Sequelize.STRING,    token: Sequelize.STRING}, {    instanceMethods: {        comparePassword : function(candidatePassword, cb) {            bcrypt.compare(candidatePassword, this.getDataValue('password'), function(err, isMatch) {                if(err) return cb(err);                cb(null, isMatch);            });        },        setToken: function(){            // bla bla bla            // bla bla bla        },        getFullname: function() {            return [this.firstname, this.lastname].join(' ');        }    }})

So when you do

User.build({ firstname: 'foo', lastname: 'bar' }).getFullname(); // 'foo bar'

So, to set the token, you can do it like this:

User.build({ ... }).setToken().save();

Or, to use the comparePassword function:

User.find({ ... }).success(function(user) { user.comparePassword('the password to check', function(err, isMatch) { ... } });

You can see this in the Sequelize docs

Edit

On recent versions of there are hooks for each model, you can check the hooks documentation which are very pretty straightforward and complement them with the class or instance methods.


I faced same issue, but atleast in 2.0 version of sequelize this feature is available, the complete documentation is available at Hooks.

Below is a sample code that uses a beforeValidate hook:

"use strict";var md5 = require('blueimp-md5').md5;module.exports = function(sequelize, DataTypes) {  var Sms = sequelize.define("sms", {    senderName: DataTypes.STRING,    smsBody : {      type : DataTypes.STRING, allowNull:false    },    userId : {      type: DataTypes.INTEGER, allowNull:false    },    hash : {      type:DataTypes.CHAR(32),      unique:true,      allowNull:false    }  });Sms.beforeValidate(function(sms){  sms.hash = md5(sms.smsBody+sms.userId);  return sequelize.Promise.resolve(sms)});return Sms;};

The requirement here was, create a hash using smsBody and userId, so i created hook i.e. beforeValidate, this hook will be executed before any validations are performed by Sequelize on the model. There are many other hooks available and best part is you don't have to write any additional code while you save your data, these hooks will take care of that.

You should choose wisely between hooks and instanceMethods. But in your case i guess hooks would be a better choice


What you are looking for in sequilize world is beforeCreate hook. It would go something like this:

module.exports = function(sequelize, DataTypes) { var User = sequelize.define('users', {      username: { type: String, unique: true },  email: { type: String, unique: true },  password: String,  token: String},hooks: {  beforeCreate: function(user){     // do your hashing here to user.password  }});