2018-03-05 20:49:36 +00:00
|
|
|
/* global WIKI */
|
2017-12-31 19:40:28 +00:00
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Discord Account
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
const DiscordStrategy = require('passport-discord').Strategy
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
key: 'discord',
|
|
|
|
title: 'Discord',
|
|
|
|
useForm: false,
|
|
|
|
props: ['clientId', 'clientSecret'],
|
|
|
|
init (passport, conf) {
|
|
|
|
passport.use('discord',
|
|
|
|
new DiscordStrategy({
|
|
|
|
clientID: conf.clientId,
|
|
|
|
clientSecret: conf.clientSecret,
|
|
|
|
callbackURL: conf.callbackURL,
|
|
|
|
scope: 'identify email'
|
|
|
|
}, function (accessToken, refreshToken, profile, cb) {
|
2018-03-05 20:49:36 +00:00
|
|
|
WIKI.db.User.processProfile(profile).then((user) => {
|
2017-12-31 19:40:28 +00:00
|
|
|
return cb(null, user) || true
|
|
|
|
}).catch((err) => {
|
|
|
|
return cb(err, null) || true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|