wikijs-fork/server/modules/authentication/twitch/authentication.js

35 lines
894 B
JavaScript
Raw Normal View History

/* global WIKI */
// ------------------------------------
// Twitch Account
// ------------------------------------
const TwitchStrategy = require('passport-twitch-strategy').Strategy
2019-04-28 18:11:27 +00:00
const _ = require('lodash')
module.exports = {
init (passport, conf) {
passport.use(conf.key,
new TwitchStrategy({
clientID: conf.clientId,
clientSecret: conf.clientSecret,
callbackURL: conf.callbackURL,
passReqToCallback: true
}, async (req, accessToken, refreshToken, profile, cb) => {
2019-04-28 18:11:27 +00:00
try {
const user = await WIKI.models.users.processProfile({
providerKey: req.params.strategy,
2019-04-28 18:11:27 +00:00
profile: {
...profile,
picture: _.get(profile, 'profile_image_url', '')
}
2019-04-28 18:11:27 +00:00
})
cb(null, user)
} catch (err) {
cb(err, null)
}
}
))
}
}