2016-05-17 19:50:37 +00:00
|
|
|
const passport = require('passport');
|
2016-06-23 22:29:55 +00:00
|
|
|
// const GitHubStrategy = require('passport-github').Strategy;
|
2016-05-17 19:50:37 +00:00
|
|
|
const LocalStrategy = require('passport-local').Strategy;
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
import User from '../models/user';
|
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) => {
|
2016-06-23 22:29:55 +00:00
|
|
|
User.findOne({ email: email.toLowerCase() },
|
|
|
|
(err, user) => { // eslint-disable-line consistent-return
|
|
|
|
if (!user) {
|
|
|
|
return done(null, false, { msg: `Email ${email} not found.` });
|
2016-05-17 19:50:37 +00:00
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
user.comparePassword(password, (innerErr, isMatch) => {
|
|
|
|
if (innerErr) {
|
|
|
|
return done(innerErr);
|
|
|
|
}
|
|
|
|
if (isMatch) {
|
|
|
|
return done(null, user);
|
|
|
|
}
|
|
|
|
return done(null, false, { msg: 'Invalid email or password.' });
|
|
|
|
});
|
2016-05-17 19:50:37 +00:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sign in with GitHub.
|
|
|
|
*/
|
2016-06-23 22:29:55 +00:00
|
|
|
// TODO add dotenv so I can add github login
|
2016-05-17 19:50:37 +00:00
|
|
|
// 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) {
|
2016-06-23 22:29:55 +00:00
|
|
|
// 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.' });
|
2016-05-17 19:50:37 +00:00
|
|
|
// 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) {
|
2016-06-23 22:29:55 +00:00
|
|
|
// 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.' });
|
2016-05-17 19:50:37 +00:00
|
|
|
// 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);
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
// }));
|