| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{formType === 'modifyWorkflow' ? this.$t('common.modify_workflow') + `(${$t('compute.perform_delete')})` : $t('compute.perform_delete')}}</div>
- <div slot="body">
- <a-alert class="mb-2" type="warning">
- <div slot="message">{{$t('compute.text_1392')}}</div>
- <div v-if="isSomePrepaid" slot="message" class="mt-2">{{$t('compute.prepaid_delete_server.alert')}}</div>
- </a-alert>
- <dialog-selected-tips :name="params.name || $t('dictionary.server')" :count="dataList.length" :action="this.params.title || (formType === 'modifyWorkflow' ? this.$t('common.modify_workflow') + `(${$t('compute.perform_delete')})` : $t('compute.perform_delete'))" />
- <dialog-table v-if="columns.length" :data="dataList" :columns="columns.slice(0, 3)" />
- <a-form
- :form="form.fc">
- <a-form-item :label="$t('compute.text_1041')" v-bind="formItemLayout" v-if="isOpenWorkflow">
- <a-input v-decorator="decorators.reason" :placeholder="$t('compute.text_1105')" />
- </a-form-item>
- <template v-if="isShowAutoDelete">
- <!-- 快照 -->
- <a-form-item class="mb-0">
- <a-tooltip>
- <template v-if="deleteSnapshotLimit.mustDelete" slot="title">
- {{deleteSnapshotLimit.tip}}
- </template>
- <a-checkbox
- :checked="form.fd.deleteSnapshot || (deleteSnapshotLimit.support && deleteSnapshotLimit.mustDelete)"
- :disabled="deleteSnapshotLimit.mustDelete"
- @change="deleteSnapshotChange">
- {{$t('compute.text_420')}}
- </a-checkbox>
- </a-tooltip>
- </a-form-item>
- <!-- 数据盘 -->
- <a-form-item class="mb-0">
- <a-tooltip>
- <template v-if="deleteDiskLimit.mustDelete" slot="title">
- {{deleteDiskLimit.tip}}
- </template>
- <a-checkbox
- :checked="form.fd.deleteDisk || (deleteDiskLimit.support && deleteDiskLimit.mustDelete)"
- :disabled="deleteDiskLimit.mustDelete"
- @change="deleteDiskChange">
- {{$t('compute.text_1385')}}
- </a-checkbox>
- </a-tooltip>
- <help-tooltip name="deleteDiskAtTheSameTime" />
- </a-form-item>
- <!-- EIP -->
- <a-form-item class="mb-0">
- <a-tooltip>
- <template v-if="deleteEipLimit.mustDelete || !deleteEipLimit.support" slot="title">
- {{deleteEipLimit.tip}}
- </template>
- <a-checkbox
- :checked="form.fd.deleteEip || (deleteEipLimit.support && deleteEipLimit.mustDelete)"
- :disabled="deleteEipLimit.mustDelete || !deleteEipLimit.support"
- @change="deleteEipChange">
- {{$t('compute.text_1386')}}
- </a-checkbox>
- </a-tooltip>
- </a-form-item>
- </template>
- <!-- 堡垒机 -->
- <a-form-model-item v-if="isShowDeleteBastionServer">
- <a-checkbox v-model="form.fd.delete_bastion_server">{{ $t('compute.delete_bastion_host') }}</a-checkbox>
- </a-form-model-item>
- </a-form>
- <dialog-table v-if="form.fd.autoDelete" :data="snapshot.list" :columns="snapshot.columns" />
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading">{{ confirmText }}</a-button>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import * as R from 'ramda'
- import { mapGetters } from 'vuex'
- import i18n from '@/locales'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import WorkflowMixin from '@/mixins/workflow'
- import { BATCH_OPERATE_SERVERS_MAX } from '@/constants/workflow'
- import { findPlatform } from '@/utils/common/hypervisor'
- import { getNameDescriptionTableColumn, getStatusTableColumn } from '@/utils/common/tableColumn'
- const canDeleteBrandList = ['OneCloud', 'VMware', 'OpenStack', 'ZStack', 'DStack', 'Aliyun', 'Huawei', 'Qcloud', 'Aws', 'Azure', 'Google', 'HCSO', 'HCS', 'Ksyun']
- const deleteEipLimit = {
- VMware: {
- support: false,
- tip: i18n.t('compute.disable_delete_eip_by_brand_tooltip', [i18n.t('providers.vmware')]),
- },
- }
- const deleteSnapshotLimit = {
- OneCloud: {
- mustDeleteOnCeph: true,
- tip: i18n.t('compute.disable_delete_snapshot_by_disk_tooltip', [i18n.t('common.storage.ceph')]),
- },
- Huawei: {
- mustDeleteOnBrand: true,
- tip: i18n.t('compute.disable_delete_snapshot_by_brand_tooltip', [i18n.t('providers.huawei')]),
- },
- HCSO: {
- mustDeleteOnBrand: true,
- tip: i18n.t('compute.disable_delete_snapshot_by_brand_tooltip', [i18n.t('providers.hcso')]),
- },
- HCS: {
- mustDeleteOnBrand: true,
- tip: i18n.t('compute.disable_delete_snapshot_by_brand_tooltip', [i18n.t('providers.hcs')]),
- },
- VMware: {
- mustDeleteOnBrand: true,
- tip: i18n.t('compute.disable_delete_snapshot_by_brand_tooltip', [i18n.t('providers.vmware')]),
- },
- }
- const deleteDiskLimit = {
- OneCloud: {
- mustDeleteOnLocalDisk: true,
- tip: i18n.t('compute.disable_delete_disk_by_disk_tooltip'),
- },
- VMware: {
- mustDeleteOnBrand: true,
- tip: i18n.t('compute.disable_delete_disk_by_brand_tooltip', [i18n.t('providers.vmware')]),
- },
- }
- export default {
- name: 'DeleteVmDialog',
- mixins: [DialogMixin, WindowsMixin, WorkflowMixin],
- data () {
- const { type, formData = {} } = this.params
- return {
- loading: false,
- formType: type,
- snapshotList: [],
- // diskList: [],
- form: {
- fc: this.$form.createForm(this),
- fd: {
- autoDelete: formData.auto_delete || false,
- deleteEip: formData.delete_eip || false,
- deleteSnapshot: formData.delete_snapshots || false,
- deleteDisk: formData.delete_disks || false,
- delete_bastion_server: formData.delete_bastion_server || false,
- },
- },
- decorators: {
- autoDelete: [
- 'autoDelete',
- {
- valuePropName: 'checked',
- initialValue: false,
- },
- ],
- reason: [
- 'reason',
- {
- initialValue: formData.reason || '',
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 19,
- },
- labelCol: {
- span: 5,
- },
- },
- formItemLayoutWithoutLabel: {
- wrapperCol: {
- span: 19,
- offset: 5,
- },
- },
- dataList: [],
- }
- },
- computed: {
- ...mapGetters(['isAdminMode', 'userInfo']),
- isVmware () {
- return this.dataList[0].hypervisor === 'esxi'
- },
- type () {
- const brand = this.dataList[0].brand
- return findPlatform(brand)
- },
- isShowAutoDelete () {
- const isSomeCanDelete = this.dataList.some((item) => {
- return canDeleteBrandList.indexOf(item.brand) !== -1
- })
- return isSomeCanDelete
- },
- isShowDeleteBastionServer () {
- return this.dataList.some(item => item.metadata?.bastion_server)
- },
- deleteEipLimit () {
- const result = {
- support: true,
- mustDelete: false,
- tip: '',
- }
- this.dataList.map((item) => {
- if (deleteEipLimit[item.brand] && deleteEipLimit[item.brand].support === false) {
- result.support = false
- result.tip = deleteEipLimit[item.brand].tip
- }
- })
- return result
- },
- deleteSnapshotLimit () {
- const result = {
- support: true,
- mustDelete: false,
- tip: '',
- }
- this.dataList.map((item) => {
- if ((deleteSnapshotLimit[item.brand] && deleteSnapshotLimit[item.brand].mustDeleteOnBrand) || (deleteSnapshotLimit[item.brand] && deleteSnapshotLimit[item.brand].mustDeleteOnCeph && this.checkDiskType(item, 'rbd'))) {
- result.mustDelete = true
- result.tip = deleteSnapshotLimit[item.brand].tip
- }
- })
- return result
- },
- deleteDiskLimit () {
- const result = {
- support: true,
- mustDelete: false,
- tip: '',
- }
- this.dataList.map((item) => {
- if ((deleteDiskLimit[item.brand] && deleteDiskLimit[item.brand].mustDeleteOnBrand) || (deleteDiskLimit[item.brand] && deleteDiskLimit[item.brand].mustDeleteOnLocalDisk && this.checkDiskType(item, 'local'))) {
- result.mustDelete = true
- result.tip = deleteDiskLimit[item.brand].tip
- }
- })
- return result
- },
- isOpenWorkflow () {
- return this.checkWorkflowEnabled(this.WORKFLOW_TYPES.APPLY_SERVER_DELETE)
- },
- confirmText () {
- return this.isOpenWorkflow ? this.$t('compute.text_288') : this.$t('dialog.ok')
- },
- disableToolTip () {
- if (this.isVmware) {
- return this.$t('compute.disable_delete_snapshot_tooltip')
- }
- return ''
- },
- isSomePrepaid () {
- return this.dataList.some(item => item.billing_type === 'prepaid')
- },
- columns () {
- if (this.formType === 'modifyWorkflow') {
- return [getNameDescriptionTableColumn(), getStatusTableColumn({ statusModule: 'server' })]
- }
- return this.params.columns || []
- },
- },
- created () {
- this.initData()
- },
- methods: {
- async initData () {
- if (this.formType === 'modifyWorkflow' && this.params.ids) {
- const list = await new this.$Manager('servers', 'v2').batchGet({
- id: this.params.ids,
- })
- this.dataList = list.data?.data || []
- } else {
- this.dataList = this.params.data || []
- }
- },
- async handleConfirm () {
- this.loading = true
- try {
- if (this.isOpenWorkflow) {
- if (this.dataList.length > BATCH_OPERATE_SERVERS_MAX) {
- this.$message.error(this.$t('compute.workflow.operate_servers_check.message', [this.$t('compute.perform_delete'), BATCH_OPERATE_SERVERS_MAX]))
- this.loading = false
- return
- }
- const projects = new Set(this.dataList.map(item => item.tenant_id))
- if (projects.size > 1) {
- this.$message.error(this.$t('compute.text_1348'))
- this.loading = false
- return
- }
- await this.handleDeleteByWorkflowSubmit()
- } else {
- await this.handleDelete()
- }
- this.loading = false
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- throw error
- }
- },
- async handleDeleteByWorkflowSubmit () {
- const ids = this.dataList.map(item => item.id)
- const values = await this.form.fc.validateFields()
- const variables = {
- project: this.dataList[0].tenant_id,
- project_domain: this.dataList[0].domain_id,
- process_definition_key: this.WORKFLOW_TYPES.APPLY_SERVER_DELETE,
- initiator: this.userInfo.id,
- ids: ids.join(','),
- description: values.reason,
- paramter: JSON.stringify(this.getFormParams()),
- }
- if (this.formType === 'modifyWorkflow') {
- await this.updateWorkflow(variables, this.params.workflow)
- this.params.success && this.params.success()
- } else {
- await this.createWorkflow(variables)
- }
- this.$message.success(this.$t('compute.text_1214'))
- this.$router.push('/workflow')
- },
- getFormParams () {
- const params = {}
- if (this.form.fd.deleteSnapshot || (this.deleteSnapshotLimit.support && this.deleteSnapshotLimit.mustDelete)) {
- params.delete_snapshots = true
- }
- if (this.form.fd.deleteDisk || (this.deleteDiskLimit.support && this.deleteDiskLimit.mustDelete)) {
- params.delete_disks = true
- }
- if (this.form.fd.deleteEip || (this.deleteEipLimit.support && this.deleteEipLimit.mustDelete)) {
- params.delete_eip = true
- }
- if (this.form.fd.delete_bastion_server) {
- params.delete_bastion_server = true
- }
- return params
- },
- async handleDelete () {
- if (this.params.ok) {
- await this.params.ok()
- } else {
- const ids = this.dataList.map(item => item.id)
- await this.form.fc.validateFields()
- let params = {}
- params = {
- ...params,
- ...this.params.requestParams,
- ...this.getFormParams(),
- }
- const response = await this.params.onManager('batchDelete', {
- id: ids,
- managerArgs: { params },
- })
- if (this.params.vm && this.params.vm.destroySidePages) {
- this.params.vm.destroySidePage(this.params.vm.windowId)
- }
- if (this.params.success && R.is(Function, this.params.success)) {
- this.params.success(response)
- }
- }
- this.$message.success(this.$t('compute.text_423'))
- },
- autoDeleteChangeHandle (val) {
- this.form.fd.autoDelete = val
- },
- async fetchSnapshotsByVmId (id) {
- try {
- const snapshotPromise = this.fetchSnapshotData(id)
- const snapshotRes = await snapshotPromise
- let snapshots = snapshotRes.data.data || []
- snapshots = snapshots.map((item) => {
- return {
- is_disk: true,
- ...item,
- }
- })
- const instanceSnapshotPromise = this.fetchInstanceSnapshotData(id)
- const instanceSnapshotRes = await instanceSnapshotPromise
- const instanceSnapshots = instanceSnapshotRes.data.data
- this.snapshot.list = [...snapshots, ...instanceSnapshots]
- } catch (e) {
- throw e
- }
- },
- fetchSnapshotData (id) {
- const snapshotManager = new this.$Manager('snapshots')
- const params = {
- joint_filter: `guestdisks.disk_id(disk_id).guest_id.in(${id})`,
- is_instance_snapshot: false,
- }
- if (this.isAdminMode) { params.admin = true }
- return snapshotManager.list({ params })
- },
- fetchDiskData (id) {
- const diskManager = new this.$Manager('disks')
- const params = {
- filter: `server_id.in(${id})`,
- // server_id: id,
- }
- if (this.isAdminMode) { params.admin = true }
- return diskManager.list({ params })
- },
- fetchInstanceSnapshotData (id) {
- const instanceSnapshotManager = new this.$Manager('instance_snapshots')
- const params = { filter: `guest_id.in(${id})` }
- return instanceSnapshotManager.list({ params })
- },
- deleteEipChange (val) {
- const { checked } = val.target
- this.form.fd.deleteEip = checked
- },
- deleteDiskChange (val) {
- const { checked } = val.target
- this.form.fd.deleteDisk = checked
- },
- deleteSnapshotChange (val) {
- const { checked } = val.target
- this.form.fd.deleteSnapshot = checked
- },
- checkDiskType ({ disks_info = [] }, type) {
- const isSomeType = disks_info.some(item => {
- return type === item.storage_type
- })
- return isSomeType
- },
- },
- }
- </script>
|