mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
930 B
32 lines
930 B
7 years ago
|
/* global WIKI */
|
||
7 years ago
|
|
||
|
// ------------------------------------
|
||
|
// Azure AD Account
|
||
|
// ------------------------------------
|
||
|
|
||
|
const AzureAdOAuth2Strategy = require('passport-azure-ad-oauth2').Strategy
|
||
|
|
||
7 years ago
|
module.exports = {
|
||
|
init (passport, conf) {
|
||
|
const jwt = require('jsonwebtoken')
|
||
|
passport.use('azure_ad_oauth2',
|
||
|
new AzureAdOAuth2Strategy({
|
||
|
clientID: conf.clientId,
|
||
|
clientSecret: conf.clientSecret,
|
||
|
callbackURL: conf.callbackURL,
|
||
|
resource: conf.resource,
|
||
|
tenant: conf.tenant
|
||
|
}, (accessToken, refreshToken, params, profile, cb) => {
|
||
|
let waadProfile = jwt.decode(params.id_token)
|
||
|
waadProfile.id = waadProfile.oid
|
||
|
waadProfile.provider = 'azure'
|
||
7 years ago
|
WIKI.db.users.processProfile(waadProfile).then((user) => {
|
||
7 years ago
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
7 years ago
|
}
|