feat: google auth module
This commit is contained in:
parent
06497fe021
commit
2abecea09c
@ -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: {
|
||||||
|
@ -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) => {
|
}, async (accessToken, refreshToken, profile, cb) => {
|
||||||
WIKI.models.users.processProfile(profile).then((user) => {
|
try {
|
||||||
return cb(null, user) || true
|
const user = await WIKI.models.users.processProfile({
|
||||||
}).catch((err) => {
|
profile: {
|
||||||
return cb(err, null) || true
|
...profile,
|
||||||
|
picture: _.get(profile, 'photos[0].value', '')
|
||||||
|
},
|
||||||
|
providerKey: 'google'
|
||||||
})
|
})
|
||||||
|
cb(null, user)
|
||||||
|
} catch (err) {
|
||||||
|
cb(err, null)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
@ -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…
Reference in New Issue
Block a user