authentication.js 890 B

12345678910111213141516171819202122232425262728293031323334
  1. /* global WIKI */
  2. // ------------------------------------
  3. // Twitch Account
  4. // ------------------------------------
  5. const TwitchStrategy = require('passport-twitch-strategy').Strategy
  6. const _ = require('lodash')
  7. module.exports = {
  8. init (passport, conf) {
  9. passport.use(conf.key,
  10. new TwitchStrategy({
  11. clientID: conf.clientId,
  12. clientSecret: conf.clientSecret,
  13. callbackURL: conf.callbackURL,
  14. passReqToCallback: true
  15. }, async (req, accessToken, refreshToken, profile, cb) => {
  16. try {
  17. const user = await WIKI.db.users.processProfile({
  18. providerKey: req.params.strategy,
  19. profile: {
  20. ...profile,
  21. picture: _.get(profile, 'profile_image_url', '')
  22. }
  23. })
  24. cb(null, user)
  25. } catch (err) {
  26. cb(err, null)
  27. }
  28. }
  29. ))
  30. }
  31. }