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.

34 lines
866 B

  1. /* global WIKI */
  2. // ------------------------------------
  3. // GitHub Account
  4. // ------------------------------------
  5. const GitHubStrategy = require('passport-github2').Strategy
  6. const _ = require('lodash')
  7. module.exports = {
  8. init (passport, conf) {
  9. passport.use('github',
  10. new GitHubStrategy({
  11. clientID: conf.clientId,
  12. clientSecret: conf.clientSecret,
  13. callbackURL: conf.callbackURL,
  14. scope: ['user:email']
  15. }, async (accessToken, refreshToken, profile, cb) => {
  16. try {
  17. const user = await WIKI.models.users.processProfile({
  18. profile: {
  19. ...profile,
  20. picture: _.get(profile, 'photos[0].value', '')
  21. },
  22. providerKey: 'github'
  23. })
  24. cb(null, user)
  25. } catch (err) {
  26. cb(err, null)
  27. }
  28. }
  29. ))
  30. }
  31. }