2018-03-05 20:49:36 +00:00
|
|
|
/* global WIKI */
|
2017-12-31 19:40:28 +00:00
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// 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')
|
2017-12-31 19:40:28 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
2017-12-31 19:40:28 +00:00
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|