happyDomain/htdocs/src/components/hSubdomainList.vue

300 lines
9.7 KiB
Vue

<!--
Copyright or © or Copr. happyDNS (2020)
contact@happydns.org
This software is a computer program whose purpose is to provide a modern
interface to interact with DNS systems.
This software is governed by the CeCILL license under French law and abiding
by the rules of distribution of free software. You can use, modify and/or
redistribute the software under the terms of the CeCILL license as
circulated by CEA, CNRS and INRIA at the following URL
"http://www.cecill.info".
As a counterpart to the access to the source code and rights to copy, modify
and redistribute granted by the license, users are provided only with a
limited warranty and the software's author, the holder of the economic
rights, and the successive licensors have only limited liability.
In this respect, the user's attention is drawn to the risks associated with
loading, using, modifying and/or developing or reproducing the software by
the user in light of its specific status of free software, that may mean
that it is complicated to manipulate, and that also therefore means that it
is reserved for developers and experienced professionals having in-depth
computer knowledge. Users are therefore encouraged to load and test the
software's suitability as regards their requirements in conditions enabling
the security of their systems and/or data to be ensured and, more generally,
to use and operate it in the same conditions as regards security.
The fact that you are presently reading this means that you have had
knowledge of the CeCILL license and that you accept its terms.
-->
<template>
<div v-if="!isLoading" class="pt-3">
<h-subdomain-item v-for="(dn, index) in sortedDomains" :key="index" :dn="dn" :origin="domain.domain" :services="services" :zone-services="myServices.services[dn]===undefined?[]:myServices.services[dn]" :aliases="aliases[dn]===undefined?[]:aliases[dn]" :zone-meta="zoneMeta" @updateMyServices="updateMyServices($event)" @addSubdomain="addSubdomain()" @addNewAlias="addNewAlias($event)" @addNewService="addNewService($event)" />
<b-modal id="modal-addSvc" :size="modal && modal.step === 2 ? 'lg' : ''" @ok="handleModalSvcOk">
<template v-slot:modal-title>
Add a new service to <span class="text-monospace">{{ modal.dn | fqdn(domain.domain) }}</span>
</template>
<form v-if="modal" @submit.stop.prevent="handleModalSvcOk">
<p v-if="modal.step === 0">
Add a new subdomain under <span class="text-monospace">{{ domain.domain }}</span>:
<b-input-group :append="'.' + domain.domain">
<b-input v-model="modal.dn" autofocus />
</b-input-group>
</p>
<p v-else-if="modal.step === 1">Select a new service to add to <span class="text-monospace">{{ modal.dn | fqdn(domain.domain) }}</span>:</p>
<p v-else-if="modal.step === 2">Fill the information for the {{ services[modal.svcSelected].name }} at <span class="text-monospace">{{ modal.dn | fqdn(domain.domain) }}</span>:</p>
<b-list-group v-if="modal.step === 1">
<b-list-group-item v-for="(svc, idx) in services" :key="idx" :active="modal.svcSelected === idx" button @click="modal.svcSelected = idx">
{{ svc.name }}
<small class="text-muted">{{ svc.description }}</small>
<b-badge v-for="(categorie, idcat) in svc.categories" :key="idcat" variant="gray" class="float-right ml-1">
{{ categorie }}
</b-badge>
</b-list-group-item>
</b-list-group>
<h-resource-value v-else-if="modal.step === 2" v-model="modal.svcData" edit :services="services" :type="modal.svcSelected" />
</form>
</b-modal>
<b-modal id="modal-addAlias" title="Add a new alias" @ok="handleModalAliasSubmit">
<form v-if="modal && modal.dn != null" @submit.stop.prevent="handleModalAliasSubmit">
Add an alias pointing to <span class="text-monospace">{{ modal.dn | fqdn(domain.domain) }}</span>:
<b-input-group :append="'.' + domain.domain">
<b-input v-model="modal.alias" autofocus />
</b-input-group>
</form>
</b-modal>
</div>
</template>
<script>
import ServiceSpecsApi from '@/services/ServiceSpecsApi'
import ZoneApi from '@/services/ZoneApi'
export default {
name: 'HSubdomainList',
components: {
hSubdomainItem: () => import('@/components/hSubdomainItem'),
hResourceValue: () => import('@/components/hResourceValue')
},
props: {
domain: {
type: Object,
required: true
},
zoneMeta: {
type: Object,
required: true
}
},
data: function () {
return {
hideDomain: {},
modal: null,
myServices: null,
services: null
}
},
computed: {
aliases () {
var ret = {}
for (const dn in this.myServices.services) {
this.myServices.services[dn].forEach(function (svc) {
if (svc._svctype === 'svcs.CNAME') {
if (!ret[svc.Service.Target]) {
ret[svc.Service.Target] = []
}
ret[svc.Service.Target].push(dn)
}
})
}
return ret
},
isLoading () {
return this.myServices == null && this.zoneMeta === undefined && this.services == null
},
sortedDomains () {
if (this.myServices == null) {
return []
}
var domains = Object.keys(this.myServices.services)
domains.sort(function (a, b) {
var as = a.split('.').reverse()
var bs = b.split('.').reverse()
var maxDepth = Math.min(as.length, bs.length)
for (var i = 0; i < maxDepth; i++) {
var cmp = as[i].localeCompare(bs[i])
if (cmp !== 0) {
return cmp
}
}
return as.length - bs.length
})
return domains
}
},
watch: {
domain: function () {
this.pullZone()
},
zoneMeta: function () {
this.pullZone()
}
},
created () {
this.pullZone()
ServiceSpecsApi.getServiceSpecs()
.then(
(response) => (this.services = response.data)
)
},
methods: {
addNewService (subdomain) {
this.modal = {
dn: subdomain,
step: 1,
svcData: {},
svcSelected: null
}
this.$bvModal.show('modal-addSvc')
},
addNewAlias (subdomain) {
this.modal = {
dn: subdomain,
alias: ''
}
this.$bvModal.show('modal-addAlias')
},
addSubdomain () {
this.modal = {
dn: '',
step: 0,
svcData: {},
svcSelected: null
}
this.$bvModal.show('modal-addSvc')
},
goToAnchor () {
var hash = this.$route.hash.substr(1)
if (!this.isLoading && hash.length > 0) {
setTimeout(function () {
window.scrollTo(0, document.getElementById(hash).offsetTop)
}, 500)
}
},
handleModalSvcOk (bvModalEvt) {
bvModalEvt.preventDefault()
if (this.modal.step === 0 && this.modal.dn !== '') {
this.modal.step = 1
} else if (this.modal.step === 1 && this.modal.svcSelected !== null) {
this.modal.step = 2
} else if (this.modal.step === 2 && this.modal.svcSelected !== null) {
ZoneApi
.addZoneService(this.domain.domain, this.zoneMeta.id, this.modal.dn, { Service: this.modal.svcData, _svctype: this.modal.svcSelected })
.then(
(response) => {
this.myServices = response.data
this.$nextTick(() => {
this.$bvModal.hide('modal-addSvc')
})
},
(error) => {
this.$root.$bvToast.toast(
error.response.data.errmsg, {
title: 'Unable to add the new service',
autoHideDelay: 5000,
variant: 'danger',
toaster: 'b-toaster-content-right'
}
)
}
)
}
},
handleModalAliasSubmit (bvModalEvt) {
bvModalEvt.preventDefault()
if (this.modal.alias) {
ZoneApi
.addZoneService(this.domain.domain, this.zoneMeta.id, this.modal.alias, { Service: { target: this.modal.dn }, _svctype: 'svcs.CNAME' })
.then(
(response) => {
this.myServices = response.data
this.$nextTick(() => {
this.$bvModal.hide('modal-addAlias')
})
},
(error) => {
this.$root.$bvToast.toast(
error.response.data.errmsg, {
title: 'Unable to add the new service',
autoHideDelay: 5000,
variant: 'danger',
toaster: 'b-toaster-content-right'
}
)
}
)
}
},
pullZone () {
if (this.domain === undefined || this.domain.domain === undefined || this.zoneMeta === undefined || this.zoneMeta.id === undefined) {
return
}
ZoneApi
.getZone(this.domain.domain, this.zoneMeta.id)
.then(
(response) => {
this.myServices = response.data
// this.goToAnchor()
},
(error) => {
this.$root.$bvToast.toast(
'Unfortunately, we were unable to retrieve information for the domain ' + this.domain.domain + ': ' + error.response.data.errmsg, {
title: 'Unable to retrieve domain information',
autoHideDelay: 5000,
variant: 'danger',
toaster: 'b-toaster-content-right'
}
)
this.$router.push('/domains/' + encodeURIComponent(this.domain.domain))
}
)
},
updateMyServices (myS) {
this.myServices = myS
}
}
}
</script>