You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
826 B

  1. 'use strict'
  2. /* global wiki */
  3. // ------------------------------------
  4. // Facebook Account
  5. // ------------------------------------
  6. const FacebookStrategy = require('passport-facebook').Strategy
  7. module.exports = {
  8. key: 'facebook',
  9. title: 'Facebook',
  10. props: ['clientId', 'clientSecret', 'callbackURL'],
  11. init (passport, conf) {
  12. passport.use('facebook',
  13. new FacebookStrategy({
  14. clientID: conf.clientId,
  15. clientSecret: conf.clientSecret,
  16. callbackURL: conf.callbackURL,
  17. profileFields: ['id', 'displayName', 'email']
  18. }, function (accessToken, refreshToken, profile, cb) {
  19. wiki.db.User.processProfile(profile).then((user) => {
  20. return cb(null, user) || true
  21. }).catch((err) => {
  22. return cb(err, null) || true
  23. })
  24. }
  25. ))
  26. }
  27. }