mirror of https://github.com/requarks/wiki
parent
a4e0e6d35c
commit
a155af20f5
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 42 KiB |
@ -0,0 +1,30 @@
|
|||||||
|
/* global wiki */
|
||||||
|
|
||||||
|
// ------------------------------------
|
||||||
|
// Auth0 Account
|
||||||
|
// ------------------------------------
|
||||||
|
|
||||||
|
const Auth0Strategy = require('passport-auth0').Strategy
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
key: 'auth0',
|
||||||
|
title: 'Auth0',
|
||||||
|
useForm: false,
|
||||||
|
props: ['domain', 'clientId', 'clientSecret'],
|
||||||
|
init (passport, conf) {
|
||||||
|
passport.use('auth0',
|
||||||
|
new Auth0Strategy({
|
||||||
|
domain: conf.domain,
|
||||||
|
clientID: conf.clientId,
|
||||||
|
clientSecret: conf.clientSecret,
|
||||||
|
callbackURL: conf.callbackURL
|
||||||
|
}, function (accessToken, refreshToken, profile, cb) {
|
||||||
|
wiki.db.User.processProfile(profile).then((user) => {
|
||||||
|
return cb(null, user) || true
|
||||||
|
}).catch((err) => {
|
||||||
|
return cb(err, null) || true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
/* global wiki */
|
||||||
|
|
||||||
|
// ------------------------------------
|
||||||
|
// 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) {
|
||||||
|
wiki.db.User.processProfile(profile).then((user) => {
|
||||||
|
return cb(null, user) || true
|
||||||
|
}).catch((err) => {
|
||||||
|
return cb(err, null) || true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
/* global wiki */
|
||||||
|
|
||||||
|
// ------------------------------------
|
||||||
|
// Twitch Account
|
||||||
|
// ------------------------------------
|
||||||
|
|
||||||
|
const TwitchStrategy = require('passport-twitch').Strategy
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
key: 'twitch',
|
||||||
|
title: 'Twitch',
|
||||||
|
useForm: false,
|
||||||
|
props: ['clientId', 'clientSecret'],
|
||||||
|
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) {
|
||||||
|
wiki.db.User.processProfile(profile).then((user) => {
|
||||||
|
return cb(null, user) || true
|
||||||
|
}).catch((err) => {
|
||||||
|
return cb(err, null) || true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue