feat: okta auth module

This commit is contained in:
Nick
2019-04-28 13:51:42 -04:00
parent c03dae933f
commit d80bb928f7
2 changed files with 29 additions and 10 deletions

View File

@@ -5,6 +5,7 @@
// ------------------------------------
const OktaStrategy = require('passport-okta-oauth').Strategy
const _ = require('lodash')
module.exports = {
init (passport, conf) {
@@ -15,14 +16,20 @@ module.exports = {
clientSecret: conf.clientSecret,
idp: conf.idp,
callbackURL: conf.callbackURL,
response_type: 'code',
scope: ['openid', 'email', 'profile']
}, (accessToken, refreshToken, profile, cb) => {
WIKI.models.users.processProfile(profile).then((user) => {
return cb(null, user) || true
}).catch((err) => {
return cb(err, null) || true
})
response_type: 'code'
}, async (accessToken, refreshToken, profile, cb) => {
try {
const user = await WIKI.models.users.processProfile({
profile: {
...profile,
picture: _.get(profile, '_json.profile', '')
},
providerKey: 'okta'
})
cb(null, user)
} catch (err) {
cb(err, null)
}
})
)
}