|
|
@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
const _ = require('lodash')
|
|
|
|
|
|
|
|
|
|
|
|
/* global WIKI */
|
|
|
|
/* global WIKI */
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// ------------------------------------
|
|
|
@ -17,14 +19,22 @@ module.exports = {
|
|
|
|
responseMode: 'form_post',
|
|
|
|
responseMode: 'form_post',
|
|
|
|
scope: ['profile', 'email', 'openid'],
|
|
|
|
scope: ['profile', 'email', 'openid'],
|
|
|
|
allowHttpForRedirectUrl: WIKI.IS_DEBUG
|
|
|
|
allowHttpForRedirectUrl: WIKI.IS_DEBUG
|
|
|
|
}, (iss, sub, profile, cb) => {
|
|
|
|
}, async (iss, sub, profile, cb) => {
|
|
|
|
console.info(iss, sub, profile)
|
|
|
|
try {
|
|
|
|
// WIKI.models.users.processProfile(waadProfile).then((user) => {
|
|
|
|
const user = await WIKI.models.users.processProfile({
|
|
|
|
// return cb(null, user) || true
|
|
|
|
profile: {
|
|
|
|
// }).catch((err) => {
|
|
|
|
id: profile.oid,
|
|
|
|
// return cb(err, null) || true
|
|
|
|
displayName: profile.displayName,
|
|
|
|
// })
|
|
|
|
email: _.get(profile, '_json.email', ''),
|
|
|
|
|
|
|
|
picture: ''
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
providerKey: 'azure'
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
cb(null, user)
|
|
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
|
|
cb(err, null)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
))
|
|
|
|
})
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|