Skip to content

Instantly share code, notes, and snippets.

@camperbot
Forked from ShaunSHamilton/routes.js
Last active September 16, 2021 19:50
Show Gist options
  • Save camperbot/1f7f6f76adb178680246989612bea21e to your computer and use it in GitHub Desktop.
Save camperbot/1f7f6f76adb178680246989612bea21e to your computer and use it in GitHub Desktop.
Advanced Node and Express - Implementation of Social Authentication
const passport = require('passport');
const bcrypt = require('bcrypt');
module.exports = function (app, myDataBase) {
app.route('/').get((req, res) => {
// Change the response to render the Pug template
res.render('pug', { title: 'Connected to Database', message: 'Please login', showLogin: true, showRegistration: true, showSocialAuth: true });
});
app.route('/login').post(passport.authenticate('local', { failureRedirect: '/' }), (req, res) => {
res.redirect('/profile');
});
app.route('/profile').get(ensureAuthenticated, (req, res) => {
res.render('pug/profile', { username: req.user.username });
});
app.route('/logout').get((req, res) => {
req.logout();
res.redirect('/');
});
app.route('/register').post(
(req, res, next) => {
const hash = bcrypt.hashSync(req.body.password, 12);
myDataBase.findOne({ username: req.body.username }, function (err, user) {
if (err) {
next(err);
} else if (user) {
res.redirect('/');
} else {
myDataBase.insertOne({ username: req.body.username, password: hash }, (err, doc) => {
if (err) {
res.redirect('/');
} else {
next(null, doc.ops[0]);
}
});
}
});
},
passport.authenticate('local', { failureRedirect: '/' }),
(req, res, next) => {
res.redirect('/profile');
}
);
app.route('/auth/github').get(passport.authenticate('github'));
app.route('/auth/github/callback').get(passport.authenticate('github', { failureRedirect: '/' }), (req, res) => {
res.redirect('/profile');
});
app.use((req, res, next) => {
res.status(404).type('text').send('Not Found');
});
};
function ensureAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
return next();
}
res.redirect('/');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment