wikijs-fork/server/modules/authentication/auth0/authentication.js
2019-04-21 02:04:00 -04:00

29 lines
765 B
JavaScript

/* global WIKI */
// ------------------------------------
// 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
}, async (accessToken, refreshToken, extraParams, profile, cb) => {
console.info(accessToken, refreshToken, extraParams, profile)
try {
const user = WIKI.models.users.processProfile({ profile, provider: 'auth0' })
cb(null, user)
} catch (err) {
cb(err, null)
}
}
))
}
}