Skip to content

Commit

Permalink
feat: add support of hd auth parameter to work with G Suite domains (
Browse files Browse the repository at this point in the history
…#4010)

* Add support of hd google auth parameter - to work with G Suite domains

* Style-fix

* fix: google auth hostedDomain hint

Co-authored-by: Nicolas Giard <github@ngpixel.com>
  • Loading branch information
denis-sumin and NGPixel committed May 24, 2021
1 parent 2ffeaed commit ee80068
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 20 deletions.
51 changes: 31 additions & 20 deletions server/modules/authentication/google/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,38 @@ const _ = require('lodash')

module.exports = {
init (passport, conf) {
passport.use('google',
new GoogleStrategy({
clientID: conf.clientId,
clientSecret: conf.clientSecret,
callbackURL: conf.callbackURL,
passReqToCallback: true
}, async (req, accessToken, refreshToken, profile, cb) => {
try {
const user = await WIKI.models.users.processProfile({
providerKey: req.params.strategy,
profile: {
...profile,
picture: _.get(profile, 'photos[0].value', '')
}
})
cb(null, user)
} catch (err) {
cb(err, null)
const strategy = new GoogleStrategy({
clientID: conf.clientId,
clientSecret: conf.clientSecret,
callbackURL: conf.callbackURL,
passReqToCallback: true
}, async (req, accessToken, refreshToken, profile, cb) => {
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({
providerKey: req.params.strategy,
profile: {
...profile,
picture: _.get(profile, 'photos[0].value', '')
}
})
cb(null, user)
} catch (err) {
cb(err, null)
}
})

if (conf.hostedDomain) {
strategy.authorizationParams = function(options) {
return {
hd: conf.hostedDomain
}
}
}

passport.use('google', strategy)
},
logout (conf) {
return '/'
Expand Down
5 changes: 5 additions & 0 deletions server/modules/authentication/google/definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ props:
title: Client Secret
hint: Application Client Secret
order: 2
hostedDomain:
type: String
title: Hosted Domain
hint: (optional) Only for G Suite hosted domain. Leave empty otherwise.
order: 3

0 comments on commit ee80068

Please sign in to comment.