e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
import User from '../models/user';
|
|
|
|
const passport = require('passport');
|
|
const GitHubStrategy = require('passport-github').Strategy;
|
|
const LocalStrategy = require('passport-local').Strategy;
|
|
|
|
passport.serializeUser((user, done) => {
|
|
done(null, user.id);
|
|
});
|
|
|
|
passport.deserializeUser((id, done) => {
|
|
User.findById(id, (err, user) => {
|
|
done(err, user);
|
|
});
|
|
});
|
|
|
|
/**
|
|
* Sign in using Email/Username and Password.
|
|
*/
|
|
passport.use(new LocalStrategy({ usernameField: 'email' }, (email, password, done) => {
|
|
User.findByMailOrName(email.toLowerCase())
|
|
.then((user) => { // eslint-disable-line consistent-return
|
|
if (!user) {
|
|
return done(null, false, { msg: `Email ${email} not found.` });
|
|
}
|
|
user.comparePassword(password, (innerErr, isMatch) => {
|
|
if (isMatch) {
|
|
return done(null, user);
|
|
}
|
|
return done(null, false, { msg: 'Invalid email or password.' });
|
|
});
|
|
})
|
|
.catch(err => done(null, false, { msg: err }));
|
|
}));
|
|
|
|
/**
|
|
* Sign in with GitHub.
|
|
*/
|
|
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) => {
|
|
User.findOne({ github: profile.id }, (findByGithubErr, existingUser) => {
|
|
if (existingUser) {
|
|
done(null, existingUser);
|
|
return;
|
|
}
|
|
User.findOne({ email: profile._json.email }, (findByEmailErr, existingEmailUser) => {
|
|
if (existingEmailUser) {
|
|
existingEmailUser.email = existingEmailUser.email || profile._json.email;
|
|
existingEmailUser.github = profile.id;
|
|
existingEmailUser.username = existingEmailUser.username || profile.username;
|
|
existingEmailUser.tokens.push({ kind: 'github', accessToken });
|
|
existingEmailUser.name = existingEmailUser.name || profile.displayName;
|
|
existingEmailUser.save(saveErr => done(null, existingEmailUser));
|
|
} else {
|
|
const user = new User();
|
|
user.email = profile._json.email;
|
|
user.github = profile.id;
|
|
user.username = profile.username;
|
|
user.tokens.push({ kind: 'github', accessToken });
|
|
user.name = profile.displayName;
|
|
user.save(saveErr => done(null, user));
|
|
}
|
|
});
|
|
});
|
|
}));
|