2017-07-29 21:33:08 +00:00
|
|
|
/* global wiki */
|
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Microsoft Account
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
const WindowsLiveStrategy = require('passport-windowslive').Strategy
|
|
|
|
|
2017-09-11 03:00:03 +00:00
|
|
|
module.exports = {
|
|
|
|
key: 'microsoft',
|
|
|
|
title: 'Microsoft Account',
|
2017-09-25 03:22:33 +00:00
|
|
|
useForm: false,
|
2017-12-31 19:40:28 +00:00
|
|
|
props: ['clientId', 'clientSecret'],
|
2017-09-11 03:00:03 +00:00
|
|
|
init (passport, conf) {
|
2017-10-01 03:47:14 +00:00
|
|
|
passport.use('microsoft',
|
2017-09-11 03:00:03 +00:00
|
|
|
new WindowsLiveStrategy({
|
|
|
|
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
|
|
|
|
})
|
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
2017-07-29 21:33:08 +00:00
|
|
|
}
|