wikijs-fork/server/modules/authentication/okta/authentication.js

37 lines
911 B
JavaScript
Raw Normal View History

2018-08-04 21:27:55 +00:00
/* global WIKI */
// ------------------------------------
// Okta Account
// ------------------------------------
const OktaStrategy = require('passport-okta-oauth').Strategy
2019-04-28 17:51:42 +00:00
const _ = require('lodash')
2018-08-04 21:27:55 +00:00
module.exports = {
init (passport, conf) {
passport.use('okta',
new OktaStrategy({
audience: conf.audience,
clientID: conf.clientId,
clientSecret: conf.clientSecret,
idp: conf.idp,
callbackURL: conf.callbackURL,
2019-04-28 17:51:42 +00:00
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)
}
2018-08-04 21:27:55 +00:00
})
)
}
}