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.

32 lines
801 B

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