mirror of
https://github.com/status-im/codimd.git
synced 2025-01-30 14:35:35 +00:00
edc1a9d800
Signed-off-by: Raccoon <raccoon@hackmd.io>
31 lines
993 B
TypeScript
31 lines
993 B
TypeScript
import {Router} from "express";
|
|
import * as passport from "passport";
|
|
import {Strategy as GoogleStrategy} from "passport-google-oauth20";
|
|
|
|
import * as config from "../../config";
|
|
import {passportGeneralCallback, setReturnToFromReferer} from "../utils";
|
|
|
|
const 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'],
|
|
hostedDomain: config.google.hostedDomain
|
|
})(req, res, next)
|
|
})
|
|
// google auth callback
|
|
googleAuth.get('/auth/google/callback',
|
|
passport.authenticate('google', {
|
|
successReturnToOrRedirect: config.serverURL + '/',
|
|
failureRedirect: config.serverURL + '/'
|
|
})
|
|
)
|