2018-03-05 15:49:36 -05:00
|
|
|
/* global WIKI */
|
2017-07-29 17:33:08 -04:00
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Google ID Account
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
const GoogleStrategy = require('passport-google-oauth20').Strategy
|
2019-04-28 00:20:06 -04:00
|
|
|
const _ = require('lodash')
|
2017-07-29 17:33:08 -04:00
|
|
|
|
2017-09-10 23:00:03 -04:00
|
|
|
module.exports = {
|
|
|
|
init (passport, conf) {
|
2021-05-25 01:04:11 +03:00
|
|
|
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)
|
2019-04-28 00:20:06 -04:00
|
|
|
}
|
2021-05-25 01:04:11 +03:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-25 21:17:04 -04:00
|
|
|
passport.use(conf.key, strategy)
|
2020-09-01 20:01:25 -04:00
|
|
|
},
|
|
|
|
logout (conf) {
|
|
|
|
return '/'
|
2017-09-10 23:00:03 -04:00
|
|
|
}
|
2017-07-29 17:33:08 -04:00
|
|
|
}
|