You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
778 B

  1. /* global wiki */
  2. // ------------------------------------
  3. // Auth0 Account
  4. // ------------------------------------
  5. const Auth0Strategy = require('passport-auth0').Strategy
  6. module.exports = {
  7. key: 'auth0',
  8. title: 'Auth0',
  9. useForm: false,
  10. props: ['domain', 'clientId', 'clientSecret'],
  11. init (passport, conf) {
  12. passport.use('auth0',
  13. new Auth0Strategy({
  14. domain: conf.domain,
  15. clientID: conf.clientId,
  16. clientSecret: conf.clientSecret,
  17. callbackURL: conf.callbackURL
  18. }, function (accessToken, refreshToken, profile, cb) {
  19. wiki.db.User.processProfile(profile).then((user) => {
  20. return cb(null, user) || true
  21. }).catch((err) => {
  22. return cb(err, null) || true
  23. })
  24. }
  25. ))
  26. }
  27. }