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
|
|
|
|
}, function (accessToken, refreshToken, profile, cb) {
|
2018-07-30 02:23:33 +00:00
|
|
|
WIKI.models.users.processProfile(profile).then((user) => {
|
2017-12-31 19:40:28 +00:00
|
|
|
return cb(null, user) || true
|
|
|
|
}).catch((err) => {
|
|
|
|
return cb(err, null) || true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|