123456789101112131415161718192021222324252627282930313233 |
- /* global WIKI */
- // ------------------------------------
- // Facebook Account
- // ------------------------------------
- const FacebookStrategy = require('passport-facebook').Strategy
- module.exports = {
- key: 'facebook',
- title: 'Facebook',
- useForm: false,
- props: {
- clientId: String,
- clientSecret: String
- },
- init (passport, conf) {
- passport.use('facebook',
- new FacebookStrategy({
- clientID: conf.clientId,
- clientSecret: conf.clientSecret,
- callbackURL: conf.callbackURL,
- profileFields: ['id', 'displayName', 'email']
- }, function (accessToken, refreshToken, profile, cb) {
- WIKI.db.users.processProfile(profile).then((user) => {
- return cb(null, user) || true
- }).catch((err) => {
- return cb(err, null) || true
- })
- }
- ))
- }
- }
|