| 1234567891011121314151617181920212223242526272829303132333435 | /* global WIKI */// ------------------------------------// Azure AD Account// ------------------------------------const AzureAdOAuth2Strategy = require('passport-azure-ad-oauth2').Strategymodule.exports = {  key: 'azure',  title: 'Azure Active Directory',  useForm: false,  props: ['clientId', 'clientSecret', 'resource', 'tenant'],  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'        WIKI.db.User.processProfile(waadProfile).then((user) => {          return cb(null, user) || true        }).catch((err) => {          return cb(err, null) || true        })      }      ))  }}
 |