Browse Source

feat: google auth module

pull/835/head
Nick 5 years ago
parent
commit
2abecea09c
4 changed files with 20 additions and 9 deletions
  1. 1
      server/modules/authentication/dropbox/authentication.js
  2. 20
      server/modules/authentication/google/authentication.js
  3. 6
      server/modules/authentication/google/definition.yml
  4. 2
      server/modules/authentication/slack/definition.yml

1
server/modules/authentication/dropbox/authentication.js

@ -16,7 +16,6 @@ module.exports = {
clientSecret: conf.clientSecret, clientSecret: conf.clientSecret,
callbackURL: conf.callbackURL callbackURL: conf.callbackURL
}, async (accessToken, refreshToken, profile, cb) => { }, async (accessToken, refreshToken, profile, cb) => {
console.info(profile)
try { try {
const user = await WIKI.models.users.processProfile({ const user = await WIKI.models.users.processProfile({
profile: { profile: {

20
server/modules/authentication/google/authentication.js

@ -5,6 +5,7 @@
// ------------------------------------ // ------------------------------------
const GoogleStrategy = require('passport-google-oauth20').Strategy const GoogleStrategy = require('passport-google-oauth20').Strategy
const _ = require('lodash')
module.exports = { module.exports = {
init (passport, conf) { init (passport, conf) {
@ -13,12 +14,19 @@ module.exports = {
clientID: conf.clientId, clientID: conf.clientId,
clientSecret: conf.clientSecret, clientSecret: conf.clientSecret,
callbackURL: conf.callbackURL callbackURL: conf.callbackURL
}, (accessToken, refreshToken, profile, cb) => {
WIKI.models.users.processProfile(profile).then((user) => {
return cb(null, user) || true
}).catch((err) => {
return cb(err, null) || true
})
}, async (accessToken, refreshToken, profile, cb) => {
try {
const user = await WIKI.models.users.processProfile({
profile: {
...profile,
picture: _.get(profile, 'photos[0].value', '')
},
providerKey: 'google'
})
cb(null, user)
} catch (err) {
cb(err, null)
}
}) })
) )
} }

6
server/modules/authentication/google/definition.yml

@ -5,8 +5,12 @@ author: requarks.io
logo: https://static.requarks.io/logo/google.svg logo: https://static.requarks.io/logo/google.svg
color: red darken-1 color: red darken-1
website: https://console.developers.google.com/ website: https://console.developers.google.com/
isAvailable: false
isAvailable: true
useForm: false useForm: false
scopes:
- profile
- email
- openid
props: props:
clientId: clientId:
type: String type: String

2
server/modules/authentication/slack/definition.yml

@ -7,7 +7,7 @@ color: green
website: https://api.slack.com/docs/oauth website: https://api.slack.com/docs/oauth
isAvailable: true isAvailable: true
useForm: false useForm: false
scope:
scopes:
- identity.basic - identity.basic
- identity.email - identity.email
- identity.avatar - identity.avatar

Loading…
Cancel
Save