2018-03-05 20:49:36 +00:00
|
|
|
/* global WIKI */
|
2018-01-15 03:05:08 +00:00
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Dropbox Account
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
const DropboxStrategy = require('passport-dropbox-oauth2').Strategy
|
2019-04-22 17:12:03 +00:00
|
|
|
const _ = require('lodash')
|
2018-01-15 03:05:08 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init (passport, conf) {
|
|
|
|
passport.use('dropbox',
|
|
|
|
new DropboxStrategy({
|
|
|
|
apiVersion: '2',
|
|
|
|
clientID: conf.clientId,
|
|
|
|
clientSecret: conf.clientSecret,
|
|
|
|
callbackURL: conf.callbackURL
|
2019-04-22 17:12:03 +00:00
|
|
|
}, async (accessToken, refreshToken, profile, cb) => {
|
|
|
|
try {
|
|
|
|
const user = await WIKI.models.users.processProfile({
|
|
|
|
profile: {
|
|
|
|
...profile,
|
|
|
|
picture: _.get(profile, '_json.profile_photo_url', '')
|
|
|
|
},
|
|
|
|
providerKey: 'dropbox'
|
|
|
|
})
|
|
|
|
cb(null, user)
|
|
|
|
} catch (err) {
|
|
|
|
cb(err, null)
|
|
|
|
}
|
2018-01-15 03:05:08 +00:00
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|