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
783 B

  1. 'use strict'
  2. /* global wiki */
  3. // ------------------------------------
  4. // Google ID Account
  5. // ------------------------------------
  6. const GoogleStrategy = require('passport-google-oauth20').Strategy
  7. module.exports = {
  8. key: 'google',
  9. title: 'Google ID',
  10. useForm: false,
  11. props: ['clientId', 'clientSecret', 'callbackURL'],
  12. init (passport, conf) {
  13. passport.use('google',
  14. new GoogleStrategy({
  15. clientID: conf.clientId,
  16. clientSecret: conf.clientSecret,
  17. callbackURL: conf.callbackURL
  18. }, (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. }