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

35 lines
880 B
JavaScript
Raw Normal View History

/* global WIKI */
// ------------------------------------
// Twitch Account
// ------------------------------------
2020-03-07 22:57:09 +00:00
const TwitchStrategy = require('passport-twitch-oauth').Strategy
2019-04-28 18:11:27 +00:00
const _ = require('lodash')
module.exports = {
init (passport, conf) {
passport.use('twitch',
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,
2020-03-07 22:57:09 +00:00
picture: _.get(profile, 'avatar', '')
}
2019-04-28 18:11:27 +00:00
})
cb(null, user)
} catch (err) {
cb(err, null)
}
}
))
}
}