cda878d377
Since Google+ is shutting down soon, we need to get the profile data from another URL. Since the library already supports it, all we need to do is adding a single line of code. Details: https://github.com/hackmdio/codimd/issues/1160 Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
28 lines
965 B
JavaScript
28 lines
965 B
JavaScript
'use strict'
|
|
|
|
const Router = require('express').Router
|
|
const passport = require('passport')
|
|
var GoogleStrategy = require('passport-google-oauth20').Strategy
|
|
const config = require('../../../config')
|
|
const {setReturnToFromReferer, passportGeneralCallback} = require('../utils')
|
|
|
|
let googleAuth = module.exports = Router()
|
|
|
|
passport.use(new GoogleStrategy({
|
|
clientID: config.google.clientID,
|
|
clientSecret: config.google.clientSecret,
|
|
callbackURL: config.serverURL + '/auth/google/callback',
|
|
userProfileURL: "https://www.googleapis.com/oauth2/v3/userinfo"
|
|
}, passportGeneralCallback))
|
|
|
|
googleAuth.get('/auth/google', function (req, res, next) {
|
|
setReturnToFromReferer(req)
|
|
passport.authenticate('google', { scope: ['profile'] })(req, res, next)
|
|
})
|
|
// google auth callback
|
|
googleAuth.get('/auth/google/callback',
|
|
passport.authenticate('google', {
|
|
successReturnToOrRedirect: config.serverURL + '/',
|
|
failureRedirect: config.serverURL + '/'
|
|
})
|
|
)
|