2016-05-17 19:50:37 +00:00
const passport = require ( 'passport' ) ;
2016-06-09 17:56:23 +00:00
const JwtStrategy = require ( 'passport-jwt' ) . Strategy ;
const ExtractJwt = require ( 'passport-jwt' ) . ExtractJwt ;
2016-05-17 19:50:37 +00:00
const GitHubStrategy = require ( 'passport-github' ) . Strategy ;
const LocalStrategy = require ( 'passport-local' ) . Strategy ;
const User = require ( '../models/user' ) ;
2016-06-09 17:56:23 +00:00
// Setup options for JWT Strategy
const jwtOptions = {
jwtFromRequest : ExtractJwt . fromHeader ( 'authorization' ) ,
secretOrKey : "steve brule"
} ;
2016-05-17 19:50:37 +00:00
passport . serializeUser ( ( user , done ) => {
done ( null , user . id ) ;
} ) ;
passport . deserializeUser ( ( id , done ) => {
User . findById ( id , ( err , user ) => {
done ( err , user ) ;
} ) ;
} ) ;
/ * *
* Sign in using Email and Password .
* /
passport . use ( new LocalStrategy ( { usernameField : 'email' } , ( email , password , done ) => {
User . findOne ( { email : email . toLowerCase ( ) } , ( err , user ) => {
if ( ! user ) {
return done ( null , false , { msg : ` Email ${ email } not found. ` } ) ;
}
user . comparePassword ( password , ( err , isMatch ) => {
if ( isMatch ) {
return done ( null , user ) ;
}
return done ( null , false , { msg : 'Invalid email or password.' } ) ;
} ) ;
} ) ;
} ) ) ;
2016-06-09 17:56:23 +00:00
// Create JWT strategy
passport . use ( new JwtStrategy ( jwtOptions , function ( payload , done ) {
// See if the user ID in the payload exists in our database
// If it does, call 'done' with that other
// otherwise, call done without a user object
User . findById ( payload . sub , function ( err , user ) {
if ( err ) { return done ( err , false ) ; }
if ( user ) {
done ( null , user ) ;
} else {
done ( null , false ) ;
}
} ) ;
} ) ) ;
2016-05-17 19:50:37 +00:00
/ * *
* Sign in with GitHub .
* /
//TODO add dotenv so I can add github login
// passport.use(new GitHubStrategy({
// clientID: process.env.GITHUB_ID,
// clientSecret: process.env.GITHUB_SECRET,
// callbackURL: '/auth/github/callback',
// passReqToCallback: true
// }, (req, accessToken, refreshToken, profile, done) => {
// if (req.user) {
// User.findOne({ github: profile.id }, (err, existingUser) => {
// if (existingUser) {
// req.flash('errors', { msg: 'There is already a GitHub account that belongs to you. Sign in with that account or delete it, then link it with your current account.' });
// done(err);
// } else {
// User.findById(req.user.id, (err, user) => {
// user.github = profile.id;
// user.tokens.push({ kind: 'github', accessToken });
// user.profile.name = user.profile.name || profile.displayName;
// user.profile.picture = user.profile.picture || profile._json.avatar_url;
// user.profile.location = user.profile.location || profile._json.location;
// user.profile.website = user.profile.website || profile._json.blog;
// user.save((err) => {
// req.flash('info', { msg: 'GitHub account has been linked.' });
// done(err, user);
// });
// });
// }
// });
// } else {
// User.findOne({ github: profile.id }, (err, existingUser) => {
// if (existingUser) {
// return done(null, existingUser);
// }
// User.findOne({ email: profile._json.email }, (err, existingEmailUser) => {
// if (existingEmailUser) {
// req.flash('errors', { msg: 'There is already an account using this email address. Sign in to that account and link it with GitHub manually from Account Settings.' });
// done(err);
// } else {
// const user = new User();
// user.email = profile._json.email;
// user.github = profile.id;
// user.tokens.push({ kind: 'github', accessToken });
// user.profile.name = profile.displayName;
// user.profile.picture = profile._json.avatar_url;
// user.profile.location = profile._json.location;
// user.profile.website = profile._json.blog;
// user.save((err) => {
// done(err, user);
// });
// }
// });
// });
// }
// }));