| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{this.params.title}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('compute.backup_storage')" :count="params.data.length" :action="action" />
- <dialog-table :data="params.data" :columns="columns" />
- <a-form :form="form.fc" v-bind="formItemLayout">
- <a-form-item :label="$t('storage.text_38')">
- {{ this.getStorageType }}
- </a-form-item>
- <a-form-item label="NFS Host" v-if="isNfs">
- <a-input :placeholder="$t('storage.host.input.place_holder')" v-decorator="decorators.nfs_host" />
- </a-form-item>
- <a-form-item label="NFS Shared Dir" v-if="isNfs">
- <a-input :placeholder="$t('storage.path.input.place_holder')" v-decorator="decorators.nfs_shared_dir" />
- </a-form-item>
- <a-form-item label="Bucket URL" v-if="isObjectStorage">
- <a-input :placeholder="$t('storage.url.input.place_holder')" v-decorator="decorators.object_bucket_url" />
- </a-form-item>
- <a-form-item label="Access Key" v-if="isObjectStorage">
- <a-input :placeholder="$t('storage.access_key.input.place_holder')" v-decorator="decorators.object_access_key" />
- </a-form-item>
- <a-form-item label="Secret" v-if="isObjectStorage">
- <a-input-password :placeholder="$t('storage.access_secret.input.place_holder')" v-decorator="decorators.object_secret" />
- </a-form-item>
- <a-form-item label="Signing Version" v-if="isObjectStorage">
- <a-radio-group v-decorator="decorators.object_sign_ver">
- <a-radio-button value="">{{ $t('common_712') }}</a-radio-button>
- <a-radio-button value="v2">V2</a-radio-button>
- <a-radio-button value="v4">V4</a-radio-button>
- </a-radio-group>
- </a-form-item>
- <a-form-item :label="$t('storage.capacity')" v-show="false">
- <a-input-number :min="0" v-decorator="decorators.capacity_mb" /> GB
- </a-form-item>
- <a-form-item label="Public Bucket URL" v-if="isObjectStorage">
- <a-input :placeholder="$t('storage.url.input.place_holder')" v-decorator="decorators.object_bucket_url_ext" />
- </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 DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'BackupStorageUpdateDialog',
- mixins: [WindowsMixin, DialogMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- }
- },
- computed: {
- ...mapGetters(['isAdminMode', 'userInfo', 'l3PermissionEnable']),
- decorators () {
- const hostCheckValid = (rule, value, _callback) => {
- const pattern = /^(?=(\b|\D))(((\d{1,2})|(1\d{1,2})|(2[0-4]\d)|(25[0-5]))\.){3}((\d{1,2})|(1\d{1,2})|(2[0-4]\d)|(25[0-5]))(?=(\b|\D))$/
- const ips = value.split(',')
- if (!value || value === '') {
- return _callback(new Error(this.$t('storage.nfs_host_check_reqiure')))
- }
- ips.forEach((item) => {
- const [ip, dir] = item.split(':')
- if (!pattern.test(ip)) {
- return _callback(new Error(this.$t('storage.nfs_host_check_valid')))
- } else {
- if (dir) {
- const reg = /^\/.+/
- if (!reg.test(dir)) {
- return _callback(new Error(this.$t('storage.nfs_host_check_valid')))
- }
- }
- }
- })
- _callback()
- }
- return {
- nfs_host: [
- 'nfs_host',
- {
- initialValue: this.params.data[0].nfs_host,
- validateFirst: true,
- rules: [
- { required: true, message: this.$t('storage.nfs_host.validate.prompt'), trigger: 'blur' },
- { validator: hostCheckValid, trigger: 'blur' },
- ],
- },
- ],
- nfs_shared_dir: [
- 'nfs_shared_dir',
- {
- initialValue: this.params.data[0].nfs_shared_dir,
- rules: [
- { required: true, message: this.$t('storage.nfs_shared_dir.validate.prompt'), trigger: 'blur' },
- ],
- },
- ],
- object_bucket_url: [
- 'object_bucket_url',
- {
- initialValue: this.params.data[0].object_bucket_url,
- validateFirst: true,
- rules: [
- { required: false, message: this.$t('storage.object_bucket_url.validate.prompt'), trigger: 'blur' },
- ],
- },
- ],
- object_access_key: [
- 'object_access_key',
- {
- initialValue: this.params.data[0].object_access_key,
- rules: [
- { required: false, message: this.$t('storage.object_access_key.validate.prompt'), trigger: 'blur' },
- ],
- },
- ],
- object_secret: [
- 'object_secret',
- {
- initialValue: this.params.data[0].object_secret,
- rules: [
- { required: false, message: this.$t('storage.object_secret.validate.prompt'), trigger: 'blur' },
- ],
- },
- ],
- object_sign_ver: [
- 'object_sign_ver',
- {
- initialValue: this.params.data[0].object_sign_ver ? this.params.data[0].object_sign_ver : '',
- },
- ],
- object_bucket_url_ext: [
- 'object_bucket_url_ext',
- {
- initialValue: this.params.data[0].object_bucket_url_ext,
- validateFirst: true,
- rules: [
- { required: false, message: this.$t('storage.object_bucket_url_ext.validate.prompt'), trigger: 'blur' },
- ],
- },
- ],
- }
- },
- columns () {
- const showFields = ['name', 'status', 'storage_type']
- return this.params.columns.filter((item) => { return showFields.includes(item.field) })
- },
- isNfs () {
- return this.params.data[0].storage_type === 'nfs'
- },
- isObjectStorage () {
- return this.params.data[0].storage_type === 'object'
- },
- getStorageType () {
- if (this.isNfs) {
- return 'NFS'
- } else {
- return this.$t('storage.object_storage')
- }
- },
- },
- methods: {
- async handleConfirm () {
- const manager = new this.$Manager('backupstorages')
- try {
- const values = await this.form.fc.validateFields(Object.keys(this.decorators))
- await manager.update({ id: this.params.data[0].id, data: { ...values } })
- this.cancelDialog()
- this.params.refresh && this.params.refresh()
- } catch (error) {
- throw error
- }
- },
- },
- }
- </script>
|