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

34 lines
831 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,
2019-04-28 18:11:27 +00:00
callbackURL: conf.callbackURL
}, async (accessToken, refreshToken, profile, cb) => {
try {
const user = await WIKI.models.users.processProfile({
profile: {
...profile,
2020-03-07 22:57:09 +00:00
picture: _.get(profile, 'avatar', '')
2019-04-28 18:11:27 +00:00
},
providerKey: 'twitch'
})
cb(null, user)
} catch (err) {
cb(err, null)
}
}
))
}
}