spee.ch/passport/local-login.js

66 lines
2.1 KiB
JavaScript
Raw Normal View History

2017-09-17 02:50:22 +02:00
const PassportLocalStrategy = require('passport-local').Strategy;
2017-09-18 19:14:06 +02:00
const db = require('../models');
const logger = require('winston');
function returnUserAndChannelInfo (userInstance) {
return new Promise((resolve, reject) => {
let userInfo = {};
userInfo['id'] = userInstance.id;
userInfo['userName'] = userInstance.userName;
userInstance
.getChannel()
.then(({channelName, channelClaimId}) => {
userInfo['channelName'] = channelName;
userInfo['channelClaimId'] = channelClaimId;
return db.Certificate.getShortChannelIdFromLongChannelId(channelClaimId, channelName);
})
.then(shortChannelId => {
userInfo['shortChannelId'] = shortChannelId;
resolve(userInfo);
})
.catch(error => {
reject(error);
});
});
}
2017-09-17 02:50:22 +02:00
module.exports = new PassportLocalStrategy(
{
usernameField: 'username',
passwordField: 'password',
2017-09-17 02:50:22 +02:00
},
(username, password, done) => {
2017-11-30 23:46:32 +01:00
logger.debug('logging user in');
return db
.User
2017-09-26 06:03:43 +02:00
.findOne({where: {userName: username}})
2017-09-17 02:50:22 +02:00
.then(user => {
if (!user) {
2017-11-30 23:46:32 +01:00
// logger.debug('no user found');
2018-01-25 20:48:27 +01:00
return done(null, false, {message: 'Incorrect username or password'});
2017-09-17 02:50:22 +02:00
}
user.comparePassword(password, (passwordErr, isMatch) => {
if (passwordErr) {
logger.error('passwordErr:', passwordErr);
2017-11-30 23:46:32 +01:00
return done(null, false, {message: passwordErr});
}
if (!isMatch) {
2017-11-30 23:46:32 +01:00
// logger.debug('incorrect password');
2018-01-25 20:48:27 +01:00
return done(null, false, {message: 'Incorrect username or password'});
}
2017-11-30 23:46:32 +01:00
logger.debug('Password was a match, returning User');
return returnUserAndChannelInfo(user)
.then((userInfo) => {
return done(null, userInfo);
})
.catch(error => {
2017-11-30 23:46:32 +01:00
return done(error);
});
});
2017-09-17 02:50:22 +02:00
})
.catch(error => {
return done(error);
});
2017-09-18 19:14:06 +02:00
}
2017-09-17 02:50:22 +02:00
);