I wonder how to return promise from promise. E.g.
I have such construction:
doAsyncStuff() // a promise
.then( function(res) {
doAnotherAsyncStuff(res) // another promise
.then( makeSomeThings )
.then( function(anotherRes, opts) {
...
})
})
.then( ... )
I want to write it like this:
doAsyncStuff() // a promise
.then( function(res) {
doAnotherAsyncStuff(res) // another promise
.then( makeSomeThings )
// and somehow push-out promise
})
.then( function(anotherRes) {
...
})
.then( ... )
How can I achieve such result?
the problem thing
var Promise = require('bluebird');
//noinspection JSUnresolvedFunction
var bcrypt = Promise.promisifyAll(require('bcrypt'));
var Sequelize = require('sequelize');
var config = require('config');
var sequelize = new Sequelize(config.get('db.connstring'));
//noinspection JSUnresolvedFunction
var User = sequelize.define('user', {
name: {
type: Sequelize.STRING
},
email: {
type: Sequelize.STRING,
validate: {
isEmail: true
}
},
passwordHash: {
type: Sequelize.STRING
},
isConfirmed: {
type: Sequelize.BOOLEAN,
allowNull: false,
defaultValue: false
}
}, {
freezeTableName: true,
classMethods: {
login: Promise.method(function (email, password) {
if (!email || !password) throw new Error('Email and password are both required');
var rv = this
.find({where: {email: email.toLowerCase().trim()}})
.then(function (user) {
return bcrypt.compareAsync(password, user.passwordHash).then(function (res) {
console.log(email, password, res);
});
// if i dont use pacthed compare here, i have no problem ..
// return bcrypt.compare(password, user.passwordHash, function(err, res) {
// console.log(email, password, res);
// });
});
console.log('B', rv);
return rv;
})
}
});
sequelize.sync({force: true}).then(function () {
var pwd = 'pwd';
//noinspection JSUnresolvedFunction
bcrypt.hashAsync(pwd, 4).then(function (salt) {
var u1 = User.create({
name: 'u1',
email: 'u1@ex.com',
passwordHash: salt
}).then(function (result) {
User.login('u1@ex.com', pwd).then(function (res) {
console.log('A', res)
})
});
});
});