spee.ch/passport/local-signup.js

58 lines
2.3 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');
const config = require('config');
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');
const address = config.get('WalletConfig.LbryClaimAddress');
let user;
// 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-22 01:03:45 +02:00
return lbryApi.createChannel(username, address)
.then(tx => {
// create user record
const userData = {
channelName : username,
channelClaimId: tx.claim_id,
password : password,
};
logger.debug('userData >', userData);
// create certificate record
const certificateData = {
claimId: tx.claim_id,
name : username,
2017-09-22 01:03:45 +02:00
// address,
};
logger.debug('certificateData >', certificateData);
// save user and certificate to db
return Promise.all([db.User.create(userData), db.Certificate.create(certificateData)]);
})
2017-09-25 20:55:56 +02:00
.then(([newUser, newCertificate]) => {
user = newUser; // save outside scope of this function
logger.debug('user and certificate successfully created');
2017-09-25 20:55:56 +02:00
logger.debug('user result >', newUser.dataValues);
logger.debug('certificate result >', newCertificate.dataValues);
// associate the instances
2017-09-25 20:55:56 +02:00
return Promise.all([newCertificate.setUser(newUser), newUser.setCertificate(newCertificate)]);
}).then(() => {
logger.debug('user and certificate successfully associated');
2017-09-25 20:55:56 +02:00
logger.debug('user ===', user.dataValues);
2017-09-21 09:18:34 +02:00
return done(null, user);
2017-09-17 02:50:22 +02:00
})
.catch(error => {
2017-09-18 19:14:06 +02:00
logger.debug(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
);