spee.ch/passport/local-signup.js

69 lines
2.8 KiB
JavaScript
Raw Normal View History

2017-09-18 19:14:06 +02:00
const db = require('../models');
2017-09-17 02:50:22 +02:00
const PassportLocalStrategy = require('passport-local').Strategy;
const lbryApi = require('../helpers/lbryApi.js');
2017-09-18 19:14:06 +02:00
const logger = require('winston');
2017-09-17 02:50:22 +02:00
module.exports = new PassportLocalStrategy(
{
2017-09-18 19:14:06 +02:00
usernameField : 'username', // sets the custom name of parameters in the POST body message
2017-09-17 02:50:22 +02:00
passwordField : 'password', // sets the custom name of parameters in the POST body message
session : false, // set to false because we will use token approach to auth
passReqToCallback: true, // we want to be able to read the post body message parameters in the callback
},
(req, username, password, done) => {
logger.debug(`new channel signup request. user: ${username} pass: ${password} .`);
let userInfo = {};
// server-side validaton of inputs (username, password)
2017-09-20 19:14:00 +02:00
2017-09-17 02:50:22 +02:00
// create the channel and retrieve the metadata
2017-09-26 07:49:27 +02:00
return lbryApi.createChannel(`@${username}`)
.then(tx => {
// create user record
const userData = {
2017-09-26 06:03:43 +02:00
userName: username,
password: password,
};
logger.debug('userData >', userData);
2017-09-26 06:03:43 +02:00
// create user record
const channelData = {
channelName : `@${username}`,
channelClaimId: tx.claim_id,
};
logger.debug('channelData >', channelData);
// create certificate record
const certificateData = {
claimId: tx.claim_id,
2017-09-26 07:49:27 +02:00
name : `@${username}`,
2017-09-22 01:03:45 +02:00
// address,
};
logger.debug('certificateData >', certificateData);
// save user and certificate to db
2017-09-26 06:03:43 +02:00
return Promise.all([db.User.create(userData), db.Channel.create(channelData), db.Certificate.create(certificateData)]);
})
2017-09-26 06:03:43 +02:00
.then(([newUser, newChannel, newCertificate]) => {
logger.debug('user and certificate successfully created');
2017-09-25 20:55:56 +02:00
logger.debug('user result >', newUser.dataValues);
userInfo['id'] = newUser.id;
userInfo['userName'] = newUser.userName;
logger.debug('channel result >', newChannel.dataValues);
userInfo['channelName'] = newChannel.channelName;
userInfo['channelClaimId'] = newChannel.channelClaimId;
2017-09-25 20:55:56 +02:00
logger.debug('certificate result >', newCertificate.dataValues);
// associate the instances
2017-09-26 06:03:43 +02:00
return Promise.all([newCertificate.setChannel(newChannel), newChannel.setUser(newUser)]);
})
.then(() => {
logger.debug('user and certificate successfully associated');
return db.getShortChannelIdFromLongChannelId(userInfo.channelClaimId, userInfo.channelName);
})
.then(shortChannelId => {
userInfo['shortChannelId'] = shortChannelId;
return done(null, userInfo);
2017-09-17 02:50:22 +02:00
})
.catch(error => {
2017-09-26 07:49:27 +02:00
logger.error('signup error', error);
2017-09-17 02:50:22 +02:00
return done(error);
});
2017-09-18 19:14:06 +02:00
}
2017-09-17 02:50:22 +02:00
);