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
786 B

  1. /* global wiki */
  2. // ------------------------------------
  3. // Discord Account
  4. // ------------------------------------
  5. const DiscordStrategy = require('passport-discord').Strategy
  6. module.exports = {
  7. key: 'discord',
  8. title: 'Discord',
  9. useForm: false,
  10. props: ['clientId', 'clientSecret'],
  11. init (passport, conf) {
  12. passport.use('discord',
  13. new DiscordStrategy({
  14. clientID: conf.clientId,
  15. clientSecret: conf.clientSecret,
  16. callbackURL: conf.callbackURL,
  17. scope: 'identify email'
  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. }