2018-03-05 20:49:36 +00:00
|
|
|
/* global WIKI */
|
2017-12-31 19:40:28 +00:00
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Auth0 Account
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
const Auth0Strategy = require('passport-auth0').Strategy
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init (passport, conf) {
|
|
|
|
passport.use('auth0',
|
|
|
|
new Auth0Strategy({
|
|
|
|
domain: conf.domain,
|
|
|
|
clientID: conf.clientId,
|
|
|
|
clientSecret: conf.clientSecret,
|
|
|
|
callbackURL: conf.callbackURL
|
2019-04-21 06:04:00 +00:00
|
|
|
}, async (accessToken, refreshToken, extraParams, profile, cb) => {
|
|
|
|
try {
|
2019-04-22 01:43:33 +00:00
|
|
|
const user = await WIKI.models.users.processProfile({ profile, providerKey: 'auth0' })
|
2019-04-21 06:04:00 +00:00
|
|
|
cb(null, user)
|
|
|
|
} catch (err) {
|
|
|
|
cb(err, null)
|
|
|
|
}
|
2017-12-31 19:40:28 +00:00
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|