2018-03-05 15:49:36 -05:00
|
|
|
/* global WIKI */
|
2017-12-31 14:40:28 -05:00
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Twitch Account
|
|
|
|
// ------------------------------------
|
|
|
|
|
2020-03-07 16:57:09 -06:00
|
|
|
const TwitchStrategy = require('passport-twitch-oauth').Strategy
|
2019-04-28 14:11:27 -04:00
|
|
|
const _ = require('lodash')
|
2017-12-31 14:40:28 -05:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init (passport, conf) {
|
|
|
|
passport.use('twitch',
|
|
|
|
new TwitchStrategy({
|
|
|
|
clientID: conf.clientId,
|
|
|
|
clientSecret: conf.clientSecret,
|
2020-08-30 01:36:17 -04:00
|
|
|
callbackURL: conf.callbackURL,
|
|
|
|
passReqToCallback: true
|
|
|
|
}, async (req, accessToken, refreshToken, profile, cb) => {
|
2019-04-28 14:11:27 -04:00
|
|
|
try {
|
|
|
|
const user = await WIKI.models.users.processProfile({
|
2020-08-30 01:36:17 -04:00
|
|
|
providerKey: req.params.strategy,
|
2019-04-28 14:11:27 -04:00
|
|
|
profile: {
|
|
|
|
...profile,
|
2020-03-07 16:57:09 -06:00
|
|
|
picture: _.get(profile, 'avatar', '')
|
2020-08-30 01:36:17 -04:00
|
|
|
}
|
2019-04-28 14:11:27 -04:00
|
|
|
})
|
|
|
|
cb(null, user)
|
|
|
|
} catch (err) {
|
|
|
|
cb(err, null)
|
|
|
|
}
|
2017-12-31 14:40:28 -05:00
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|