123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <template lang='pug'>
- v-card(tile, :color='$vuetify.dark ? "grey darken-4" : "grey lighten-5"')
- .pa-3.pt-4
- .headline.primary--text Authentication
- .subheading.grey--text Configure the authentication settings of your wiki
- v-tabs(:color='$vuetify.dark ? "primary" : "grey lighten-4"', fixed-tabs, :slider-color='$vuetify.dark ? "white" : "primary"', show-arrows)
- v-tab(key='settings'): v-icon settings
- v-tab(v-for='strategy in activeStrategies', :key='strategy.key') {{ strategy.title }}
- v-tab-item(key='settings', :transition='false', :reverse-transition='false')
- v-card.pa-3(flat, tile)
- .body-2.grey--text.text--darken-1 Select which authentication strategies to enable:
- .caption.grey--text.pb-2 Some strategies require additional configuration in their dedicated tab (when selected).
- v-form
- v-checkbox(
- v-for='strategy in strategies'
- v-model='strategy.isEnabled'
- :key='strategy.key'
- :label='strategy.title'
- color='primary'
- :disabled='strategy.key === `local`'
- hide-details
- )
- v-tab-item(v-for='(strategy, n) in activeStrategies', :key='strategy.key', :transition='false', :reverse-transition='false')
- v-card.pa-3(flat, tile)
- v-form
- v-subheader.pl-0 Strategy Configuration
- .body-1.ml-3(v-if='!strategy.config || strategy.config.length < 1') This strategy has no configuration options you can modify.
- v-text-field(
- v-else
- v-for='cfg in strategy.config'
- :key='cfg.key'
- :label='cfg.key'
- v-model='cfg.value'
- prepend-icon='settings_applications'
- )
- v-divider
- v-subheader.pl-0 Registration
- .pr-3
- v-switch.ml-3(
- v-model='strategy.selfRegistration'
- label='Allow self-registration'
- color='primary'
- hint='Allow any user successfully authorized by the strategy to access the wiki.'
- persistent-hint
- )
- v-select.ml-3(
- label='Limit to specific email domains'
- v-model='strategy.domainWhitelist'
- prepend-icon='mail_outline'
- persistent-hint
- deletable-chips
- clearable
- multiple
- chips
- tags
- )
- v-select.ml-3(
- :items='groups'
- item-text='name'
- item-value='id'
- label='Assign to group'
- v-model='strategy.autoEnrollGroups'
- prepend-icon='people'
- hint='Automatically assign new users to these groups.'
- persistent-hint
- deletable-chips
- autocomplete
- clearable
- multiple
- chips
- )
- v-card-chin
- v-btn(color='primary', @click='save')
- v-icon(left) chevron_right
- span Apply Configuration
- v-spacer
- v-btn(icon, @click='refresh')
- v-icon.grey--text refresh
- </template>
- <script>
- import _ from 'lodash'
- import groupsQuery from 'gql/admin/auth/auth-query-groups.gql'
- import strategiesQuery from 'gql/admin/auth/auth-query-strategies.gql'
- import strategiesSaveMutation from 'gql/admin/auth/auth-mutation-save-strategies.gql'
- export default {
- data() {
- return {
- groups: [],
- strategies: []
- }
- },
- computed: {
- activeStrategies() {
- return _.filter(this.strategies, 'isEnabled')
- }
- },
- methods: {
- async refresh() {
- await this.$apollo.queries.strategies.refetch()
- this.$store.commit('showNotification', {
- message: 'List of strategies has been refreshed.',
- style: 'success',
- icon: 'cached'
- })
- },
- async save() {
- this.$store.commit(`loadingStart`, 'admin-auth-savestrategies')
- await this.$apollo.mutate({
- mutation: strategiesSaveMutation,
- variables: {
- strategies: this.strategies.map(str => _.pick(str, [
- 'isEnabled',
- 'key',
- 'config',
- 'selfRegistration',
- 'domainWhitelist',
- 'autoEnrollGroups'
- ]))
- }
- })
- this.$store.commit('showNotification', {
- message: 'Authentication configuration saved successfully.',
- style: 'success',
- icon: 'check'
- })
- this.$store.commit(`loadingStop`, 'admin-auth-savestrategies')
- }
- },
- apollo: {
- strategies: {
- query: strategiesQuery,
- fetchPolicy: 'network-only',
- update: (data) => _.cloneDeep(data.authentication.strategies),
- watchLoading (isLoading) {
- this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-auth-refresh')
- }
- },
- groups: {
- query: groupsQuery,
- fetchPolicy: 'network-only',
- update: (data) => data.groups.list,
- watchLoading (isLoading) {
- this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-auth-groups-refresh')
- }
- }
- }
- }
- </script>
- <style lang='scss'>
- </style>
|