| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{params.title}}</div>
- <div slot="body">
- <template v-if="params.type !== 'create'">
- <dialog-selected-tips :name="$t('dictionary.dns')" :count="params.data.length" :action="params.type === 'update' ? $t('network.text_130') : $t('network.text_155')" />
- <dialog-table :data="params.data" :columns="params.columns.slice(0, 4)" />
- </template>
- <a-form
- :form="form.fc">
- <a-form-item :label="$t('network.text_156')" v-bind="formItemLayout" v-if="enableType('A/AAAA', 'CNAME', 'SRV')" :extra="$t('network.text_157')">
- <a-input v-decorator="decorators.name" :placeholder="$t('network.text_158')" />
- </a-form-item>
- <a-form-item :label="$t('network.text_156')" v-bind="formItemLayout" v-if="enableType('PTR')" :extra="$t('network.text_157')">
- <template #extra>
- <div>{{$t('network.text_159')}}</div>
- </template>
- <a-input v-decorator="decorators.ptrName" :placeholder="$t('network.text_158')">
- <div slot="addonAfter">.in-addr.arpa</div>
- </a-input>
- </a-form-item>
- <a-form-item :label="$t('network.text_160')" v-bind="formItemLayout">
- <a-radio-group @change="recordTypeChange" v-model="formMsg.recordType">
- <a-radio-button :key="n" :value="item" v-for="(item, n) in recordTypeOptions">{{item}}</a-radio-button>
- </a-radio-group>
- </a-form-item>
- <a-form-item v-bind="formItemLayout">
- <span slot="label">{{$t('network.text_152')}}<a-tooltip class="item" effect="dark" placement="top">
- <a-icon type="info-circle" />
- <div slot="title">{{$t('network.text_161')}}<br />{{$t('network.text_162')}}<br />{{$t('network.text_163')}}<br />{{$t('network.text_164')}}</div>
- </a-tooltip>
- </span>
- <a-row :gutter="4" v-if="enableType('SRV')">
- <a-col :span="10" class="text-center">{{$t('network.text_156')}}</a-col>
- <a-col :span="4" class="text-center">{{$t('network.text_165')}}</a-col>
- <a-col :span="4" class="text-center">{{$t('network.text_166')}}</a-col>
- <a-col :span="4" class="text-center">{{$t('network.text_81')}}</a-col>
- </a-row>
- <a-row
- :gutter="4"
- :key="n"
- class="record-list mb-3"
- v-for="(obj, n) in recordList">
- <a-col :span="10" v-if="enableType('A/AAAA')">
- <a-form-item>
- <a-select :placeholder="$t('network.text_167')" v-decorator="recordConfig(n, obj.key)[`key[${n}]`]">
- <a-select-option
- :key="i"
- :value="item.value"
- v-for="(item, i) in recordOptions">
- {{item.label}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="10" v-if="enableType('A/AAAA', 'CNAME', 'PTR')">
- <a-form-item>
- <a-input :placeholder="computeText(obj, n)" v-decorator="recordConfig(n, obj.record)[`record[${n}]`]" />
- </a-form-item>
- </a-col>
- <div v-if="enableType('SRV')">
- <a-col :span="10">
- <a-form-item>
- <a-input :placeholder="computeText(obj, n)" v-decorator="recordConfig(n, obj.host)[`host[${n}]`]" />
- </a-form-item>
- </a-col>
- <a-col :span="4">
- <a-form-item>
- <a-input :max="65535" :min="1" type="number" v-decorator="recordConfig(n, obj.port)[`port[${n}]`]" />
- </a-form-item>
- </a-col>
- <a-col :span="4">
- <a-form-item>
- <a-input :min="0" type="number" v-decorator="recordConfig(n, obj.weight)[`weight[${n}]`]" />
- </a-form-item>
- </a-col>
- <a-col :span="4">
- <a-form-item>
- <a-input :min="0" type="number" v-decorator="recordConfig(n, obj.priority)[`priority[${n}]`]" />
- </a-form-item>
- </a-col>
- </div>
- <a-button v-if="enableType('A/AAAA', 'SRV')" shape="circle" icon="minus" size="small" @click="() => removeItem(obj, n)" class="mt-2 ml-1" />
- </a-row>
- <div class="d-flex align-items-center" v-if="enableType('A/AAAA', 'SRV') && remain > 0">
- <a-button type="primary" shape="circle" icon="plus" size="small" @click="addItem" />
- <a-button type="link" @click="addItem">{{$t('network.text_168')}}</a-button>
- <span class="network-count-tips">{{$t('network.text_169')}}<span class="remain-num">{{ remain }}</span>{{$t('network.text_170')}}</span>
- </div>
- </a-form-item>
- <a-form-item v-bind="formItemLayout">
- <span slot="label">
- TTL
- <a-tooltip class="item" effect="dark" placement="top">
- <a-icon type="info-circle" />
- <div slot="title">{{$t('network.text_171')}}</div>
- </a-tooltip>
- </span>
- <a-input-number
- v-decorator="decorators.ttl"
- :placeholder="$t('network.text_172')"
- :min="0"
- :max="86400" />{{$t('network.text_76')}}</a-form-item>
- </a-form>
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading">{{ $t('dialog.ok') }}</a-button>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import { REGEXP } from '@/utils/validate'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- const { IPv4, IPv6, domain } = REGEXP
- const MAX_ITEMS = 6
- const RECORD_TYPE_MAP = {
- A: 'A/AAAA',
- AAAA: 'A/AAAA',
- CNAME: 'CNAME',
- PTR: 'PTR',
- SRV: 'SRV',
- }
- export default {
- name: 'DnsCreateDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- formMsg: {
- recordType: 'A/AAAA',
- cacheRecord: {},
- },
- decorators: {
- name: [
- 'name',
- {
- validateFirst: true,
- validateTrigger: ['blur'],
- rules: [
- { required: true, message: this.$t('network.text_173') },
- { validator: this.checkName },
- // { validator: this.$validate('broadName') },
- ],
- },
- ],
- ptrName: [
- 'ptrName',
- {
- validateFirst: true,
- validateTrigger: ['blur'],
- rules: [
- { required: true, message: this.$t('network.text_173') },
- { validator: this.$validate('IPv4') },
- ],
- },
- ],
- ttl: [
- 'ttl',
- {
- initialValue: this.params.type === 'create' ? 600 : this.params.data[0].ttl,
- validateFirst: true,
- validateTrigger: ['blur'],
- rules: [
- { required: true, message: this.$t('network.text_174') },
- ],
- },
- ],
- },
- recordConfig: (i, recordData) => ({
- [`key[${i}]`]: [
- `key[${i}]`,
- {
- initialValue: this.recordList[0].key,
- },
- ],
- [`record[${i}]`]: [
- `record[${i}]`,
- {
- validateTrigger: ['blur'],
- initialValue: this.recordList[0].record,
- rules: [{
- required: true,
- message: this.$t('network.text_175'),
- }],
- },
- ],
- [`host[${i}]`]: [
- `host[${i}]`,
- {
- validateFirst: true,
- validateTrigger: ['blur'],
- rules: [{
- required: true,
- message: this.$t('network.text_158'),
- }, {
- validator: this.$validate('domain'),
- }],
- },
- ],
- [`port[${i}]`]: [
- `port[${i}]`,
- {
- initialValue: 1,
- validateTrigger: ['blur'],
- rules: [{
- required: true,
- message: this.$t('network.text_176'),
- }],
- },
- ],
- [`weight[${i}]`]: [
- `weight[${i}]`,
- {
- initialValue: 0,
- validateTrigger: ['blur'],
- rules: [{
- required: true,
- message: this.$t('network.text_177'),
- }],
- },
- ],
- [`priority[${i}]`]: [
- `priority[${i}]`,
- {
- initialValue: 0,
- validateTrigger: ['blur'],
- rules: [{
- required: true,
- message: this.$t('network.text_117'),
- }],
- },
- ],
- }),
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- recordOptions: [
- { value: 'A', label: 'A' },
- { value: 'AAAA', label: 'AAAA' },
- ],
- recordTypeOptions: ['A/AAAA', 'CNAME', 'PTR', 'SRV'],
- recordList: [{ key: 'A', record: '' }],
- }
- },
- computed: {
- ...mapGetters(['isAdminMode', 'scope', 'userInfo']),
- remain () {
- return MAX_ITEMS - this.recordList.length
- },
- },
- created () {
- this.dnsM = new this.$Manager('dnsrecords')
- this.dialogOpen()
- },
- methods: {
- checkName (rule, value, callback) {
- if (!value) {
- return callback(new Error(this.$t('network.text_158')))
- }
- if (IPv4.regexp.test(value) || !domain.regexp.test(value)) {
- return callback(new Error(this.$t('network.text_178')))
- }
- if (this.formMsg.recordType === 'SRV') {
- const parts = value.split('.')
- if (parts.length < 3) {
- return callback(new Error(this.$t('network.text_179')))
- }
- for (let i = 0; i < parts.length; i++) {
- if (i < 2 && (parts[i].length < 2 || parts[i][0] !== '_')) {
- return callback(new Error(this.$t('network.text_180')))
- } else if (i >= 2 && parts[i].length === 0) {
- return callback(new Error(this.$t('network.text_180')))
- }
- }
- }
- callback()
- },
- dialogOpen () {
- if (this.params.type === 'update' || this.params.type === 'clone') {
- this._updateFormValue(this.params.data[0])
- }
- },
- _updateFormValue (val) {
- const { recordList, recordType } = this._classify(val.records)
- this.recordList = recordList
- this.formMsg.recordType = recordType
- if (this.params.type === 'update') {
- if (recordType === 'PTR') {
- this.form.fc.getFieldDecorator('ptrName', { preserve: true, initialValue: val.name })
- } else {
- this.form.fc.getFieldDecorator('name', { preserve: true, initialValue: val.name })
- }
- }
- const ttl = val.ttl
- this.form.fc.getFieldDecorator('ttl', { preserve: true, initialValue: ttl })
- },
- _classify (recordStr) {
- const initArr = recordStr.split(',')
- const recordList = initArr.map(keyValue => {
- const arr = keyValue.split(':')
- const key = arr[0]
- if (key === 'SRV') {
- return {
- key,
- host: arr[1],
- port: arr[2],
- weight: arr[3],
- priority: arr[4],
- }
- } else {
- const record = keyValue
- .split(':')
- .slice(1)
- .join(':')
- return { key, record }
- }
- })
- const key = recordList[0].key // 拿第一个 key 做判断
- return {
- recordType: RECORD_TYPE_MAP[key],
- recordList,
- }
- },
- enableType (...arr) {
- const T = this.formMsg.recordType
- return Array.prototype.includes.call(arr, T)
- },
- recordTypeChange (e) {
- const type = e.target.value
- switch (type) {
- case 'A/AAAA':
- this.recordList = this.formMsg.cacheRecord[type] || [
- { key: 'A', record: '' },
- ]
- this.form.fc.setFieldsValue({
- key: [
- { key: 'A', record: '' },
- ],
- })
- break
- case 'CNAME':
- this.recordList = this.formMsg.cacheRecord[type] || [
- { key: 'CNAME', record: '' },
- ]
- this.form.fc.setFieldsValue({
- key: [
- { key: 'CNAME', record: '' },
- ],
- })
- break
- case 'PTR':
- this.recordList = this.formMsg.cacheRecord[type] || [
- { key: 'PTR', record: '' },
- ]
- this.form.fc.setFieldsValue({
- key: [
- { key: 'PTR', record: '' },
- ],
- })
- break
- case 'SRV':
- this.recordList = this.formMsg.cacheRecord[type] || [
- { key: 'SRV', host: '', port: 1, weight: 0, priority: 0 },
- ]
- this.form.fc.setFieldsValue({
- key: [
- { key: 'SRV', host: '', port: 1, weight: 0, priority: 0 },
- ],
- })
- break
- }
- this.$nextTick(() => {
- // this.form.fc.resetFields()
- if (type === 'SRV') {
- this.form.fc.validateFields(['name'])
- }
- })
- },
- addItem () {
- if (this.formMsg.recordType === 'A/AAAA') {
- this.recordList.push({ key: 'A', record: '' })
- } else if (this.formMsg.recordType === 'SRV') {
- this.recordList.push({
- key: 'SRV',
- host: '',
- port: 1,
- weight: 0,
- priority: 0,
- })
- }
- },
- removeItem (obj, n) {
- this.recordList.splice(n, 1)
- },
- computeText (obj, n) {
- const values = this.form.fc.getFieldsValue()
- if (values.key) {
- const key = values.key[n]
- if (key === 'A') {
- return this.$t('network.text_181')
- }
- if (key === 'AAAA') {
- return this.$t('network.text_182')
- }
- }
- if (values.host) {
- return this.$t('network.text_158')
- }
- if (this.formMsg.recordType === 'A/AAAA') {
- return this.$t('network.text_181')
- }
- return this.$t('network.text_175')
- },
- doCreate (data) {
- if (this.params.type === 'create') {
- return this.dnsM.create({ data })
- } else if (this.params.type === 'update') {
- return this.dnsM.update({ id: this.params.data[0].id, data })
- } else if (this.params.type === 'clone') {
- return this.dnsM.create({ data })
- }
- },
- genData (values) {
- let newValues = {}
- const recordList = []
- if (values.key) {
- values.key.map((item, index) => {
- const ops = {
- key: item,
- record: values.record[index],
- }
- recordList.push(ops)
- })
- }
- if (values.record && !values.key) {
- values.record.map((item) => {
- const ops = {
- record: item,
- }
- recordList.push(ops)
- })
- }
- if (values.host) {
- values.host.map((item, index) => {
- const ops = {
- host: item,
- port: values.port[index],
- weight: values.weight[index],
- priority: values.priority[index],
- }
- recordList.push(ops)
- })
- }
- newValues = {
- name: values.name ? values.name : values.ptrName,
- ttl: values.ttl,
- is_public: true,
- }
- const addParams = (recordTypeArr, callback) => recordTypeArr.forEach(callback)
- if (this.formMsg.recordType === 'A/AAAA') {
- const aType = recordList.filter(v => v.key === 'A')
- const aaaaType = recordList.filter(
- v => v.key === 'AAAA',
- )
- addParams(aType, (obj, i) => {
- newValues[`A.${i}`] = obj.record
- })
- addParams(aaaaType, (obj, i) => {
- newValues[`AAAA.${i}`] = obj.record
- })
- } else if (this.formMsg.recordType === 'CNAME') {
- newValues.CNAME = recordList[0].record
- } else if (this.formMsg.recordType === 'PTR') {
- newValues.name = `${newValues.ptrName}.in-addr.arpa`
- newValues.PTR = recordList[0].record
- } else if (this.formMsg.recordType === 'SRV') {
- addParams(recordList, (obj, i) => {
- newValues[`SRV.${i}`] = `${obj.host}:${obj.port}:${obj.weight}:${obj.priority}`
- })
- }
- if (values.key) this._validform(recordList)
- return newValues
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- const newValues = this.genData(values)
- await this.doCreate(newValues)
- this.loading = false
- this.cancelDialog()
- this.params.refresh()
- } catch (error) {
- this.loading = false
- }
- },
- _validform (values) {
- let validformdata = false
- const itemValid = values.every(val => {
- if (val.key === 'A') {
- return IPv4.regexp.test(val.record)
- } else if (val.key === 'AAAA') {
- return IPv6.regexp.test(val.record)
- } else {
- return true
- }
- })
- if (!itemValid) {
- this.$message.error(this.$t('network.text_183'))
- }
- validformdata = itemValid
- return validformdata
- },
- },
- }
- </script>
|