Unverified Commit ee800689 authored by Denis's avatar Denis Committed by GitHub

feat: add support of `hd` auth parameter to work with G Suite domains (#4010)

* Add support of hd google auth parameter - to work with G Suite domains * Style-fix * fix: google auth hostedDomain hint Co-authored-by: 's avatarNicolas Giard <github@ngpixel.com>
parent 2ffeaed0
...@@ -9,14 +9,16 @@ const _ = require('lodash') ...@@ -9,14 +9,16 @@ const _ = require('lodash')
module.exports = { module.exports = {
init (passport, conf) { init (passport, conf) {
passport.use('google', const strategy = new GoogleStrategy({
new GoogleStrategy({
clientID: conf.clientId, clientID: conf.clientId,
clientSecret: conf.clientSecret, clientSecret: conf.clientSecret,
callbackURL: conf.callbackURL, callbackURL: conf.callbackURL,
passReqToCallback: true passReqToCallback: true
}, async (req, accessToken, refreshToken, profile, cb) => { }, async (req, accessToken, refreshToken, profile, cb) => {
try { try {
if (conf.hostedDomain && conf.hostedDomain != profile._json.hd) {
throw new Error('Google authentication should have been performed with domain ' + conf.hostedDomain)
}
const user = await WIKI.models.users.processProfile({ const user = await WIKI.models.users.processProfile({
providerKey: req.params.strategy, providerKey: req.params.strategy,
profile: { profile: {
...@@ -29,7 +31,16 @@ module.exports = { ...@@ -29,7 +31,16 @@ module.exports = {
cb(err, null) cb(err, null)
} }
}) })
)
if (conf.hostedDomain) {
strategy.authorizationParams = function(options) {
return {
hd: conf.hostedDomain
}
}
}
passport.use('google', strategy)
}, },
logout (conf) { logout (conf) {
return '/' return '/'
......
...@@ -22,3 +22,8 @@ props: ...@@ -22,3 +22,8 @@ props:
title: Client Secret title: Client Secret
hint: Application Client Secret hint: Application Client Secret
order: 2 order: 2
hostedDomain:
type: String
title: Hosted Domain
hint: (optional) Only for G Suite hosted domain. Leave empty otherwise.
order: 3
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment