2018-03-05 20:49:36 +00:00
|
|
|
/* global WIKI */
|
2017-12-31 19:40:28 +00:00
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Twitch Account
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
const TwitchStrategy = require('passport-twitch').Strategy
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init (passport, conf) {
|
|
|
|
passport.use('twitch',
|
|
|
|
new TwitchStrategy({
|
|
|
|
clientID: conf.clientId,
|
|
|
|
clientSecret: conf.clientSecret,
|
|
|
|
callbackURL: conf.callbackURL,
|
|
|
|
scope: 'user_read'
|
|
|
|
}, function (accessToken, refreshToken, profile, cb) {
|
2018-07-30 02:23:33 +00:00
|
|
|
WIKI.models.users.processProfile(profile).then((user) => {
|
2017-12-31 19:40:28 +00:00
|
|
|
return cb(null, user) || true
|
|
|
|
}).catch((err) => {
|
|
|
|
return cb(err, null) || true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|