feat: facebook auth module
This commit is contained in:
parent
2abecea09c
commit
c03dae933f
@ -23,7 +23,8 @@
|
|||||||
v-list-tile(:key='str.key', @click='selectedStrategy = str.key', :disabled='!str.isAvailable')
|
v-list-tile(:key='str.key', @click='selectedStrategy = str.key', :disabled='!str.isAvailable')
|
||||||
v-list-tile-avatar
|
v-list-tile-avatar
|
||||||
v-icon(color='grey', v-if='!str.isAvailable') indeterminate_check_box
|
v-icon(color='grey', v-if='!str.isAvailable') indeterminate_check_box
|
||||||
v-icon(color='primary', v-else-if='str.isEnabled', v-ripple, @click='str.key !== `local` && (str.isEnabled = false)') check_box
|
v-icon(color='primary', v-else-if='str.isEnabled && str.key !== `local`', v-ripple, @click='str.isEnabled = false') check_box
|
||||||
|
v-icon(color='primary', v-else-if='str.isEnabled && str.key === `local`') check_box
|
||||||
v-icon(color='grey', v-else, v-ripple, @click='str.isEnabled = true') check_box_outline_blank
|
v-icon(color='grey', v-else, v-ripple, @click='str.isEnabled = true') check_box_outline_blank
|
||||||
v-list-tile-content
|
v-list-tile-content
|
||||||
v-list-tile-title.body-2(:class='!str.isAvailable ? `grey--text` : (selectedStrategy === str.key ? `primary--text` : ``)') {{ str.title }}
|
v-list-tile-title.body-2(:class='!str.isAvailable ? `grey--text` : (selectedStrategy === str.key ? `primary--text` : ``)') {{ str.title }}
|
||||||
@ -72,8 +73,13 @@
|
|||||||
img(:src='strategy.logo', :alt='strategy.title')
|
img(:src='strategy.logo', :alt='strategy.title')
|
||||||
.caption.pt-3 {{strategy.description}}
|
.caption.pt-3 {{strategy.description}}
|
||||||
.caption.pb-3: a(:href='strategy.website') {{strategy.website}}
|
.caption.pb-3: a(:href='strategy.website') {{strategy.website}}
|
||||||
.body-2(v-if='strategy.isEnabled') This strategy is #[v-chip(color='green', small, dark, label) active]
|
.body-2(v-if='strategy.isEnabled')
|
||||||
.body-2(v-else) This strategy is #[v-chip(color='red', small, dark, label) not active]
|
span This strategy is
|
||||||
|
v-chip(color='green', small, dark, label) active
|
||||||
|
span(v-if='selectedStrategy === `local`') and cannot be disabled.
|
||||||
|
.body-2(v-else)
|
||||||
|
span This strategy is
|
||||||
|
v-chip(color='red', small, dark, label) not active
|
||||||
v-divider.mt-3
|
v-divider.mt-3
|
||||||
v-subheader.pl-0 Strategy Configuration
|
v-subheader.pl-0 Strategy Configuration
|
||||||
.body-1.ml-3(v-if='!strategy.config || strategy.config.length < 1'): em This strategy has no configuration options you can modify.
|
.body-1.ml-3(v-if='!strategy.config || strategy.config.length < 1'): em This strategy has no configuration options you can modify.
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
// ------------------------------------
|
// ------------------------------------
|
||||||
|
|
||||||
const FacebookStrategy = require('passport-facebook').Strategy
|
const FacebookStrategy = require('passport-facebook').Strategy
|
||||||
|
const _ = require('lodash')
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
init (passport, conf) {
|
init (passport, conf) {
|
||||||
@ -13,13 +14,21 @@ module.exports = {
|
|||||||
clientID: conf.clientId,
|
clientID: conf.clientId,
|
||||||
clientSecret: conf.clientSecret,
|
clientSecret: conf.clientSecret,
|
||||||
callbackURL: conf.callbackURL,
|
callbackURL: conf.callbackURL,
|
||||||
profileFields: ['id', 'displayName', 'email']
|
profileFields: ['id', 'displayName', 'email', 'photos'],
|
||||||
}, function (accessToken, refreshToken, profile, cb) {
|
authType: 'reauthenticate'
|
||||||
WIKI.models.users.processProfile(profile).then((user) => {
|
}, async (accessToken, refreshToken, profile, cb) => {
|
||||||
return cb(null, user) || true
|
try {
|
||||||
}).catch((err) => {
|
const user = await WIKI.models.users.processProfile({
|
||||||
return cb(err, null) || true
|
profile: {
|
||||||
})
|
...profile,
|
||||||
|
picture: _.get(profile, 'photos[0].value', '')
|
||||||
|
},
|
||||||
|
providerKey: 'facebook'
|
||||||
|
})
|
||||||
|
cb(null, user)
|
||||||
|
} catch (err) {
|
||||||
|
cb(err, null)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
@ -5,16 +5,18 @@ author: requarks.io
|
|||||||
logo: https://static.requarks.io/logo/facebook.svg
|
logo: https://static.requarks.io/logo/facebook.svg
|
||||||
color: indigo
|
color: indigo
|
||||||
website: https://facebook.com/
|
website: https://facebook.com/
|
||||||
isAvailable: false
|
isAvailable: true
|
||||||
useForm: false
|
useForm: false
|
||||||
|
scopes:
|
||||||
|
- email
|
||||||
props:
|
props:
|
||||||
clientId:
|
clientId:
|
||||||
type: String
|
type: String
|
||||||
title: Client ID
|
title: App ID
|
||||||
hint: Application Client ID
|
hint: Application ID
|
||||||
order: 1
|
order: 1
|
||||||
clientSecret:
|
clientSecret:
|
||||||
type: String
|
type: String
|
||||||
title: Client Secret
|
title: App Secret
|
||||||
hint: Application Client Secret
|
hint: Application Secret
|
||||||
order: 2
|
order: 2
|
||||||
|
Loading…
Reference in New Issue
Block a user