| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.text_276')}}</div>
- <div slot="body">
- <a-alert v-if="enableQgaAlert" class="mb-2" type="warning">
- <div slot="message">
- {{ $t('compute.qga.alert01') }}<template v-if="showDocsLink()">(<help-link :href="qgaDoc">{{ $t('compute.qga.alert02') }}</help-link>)</template>,{{ $t('compute.qga.alert03') }}
- </div>
- </a-alert>
- <dialog-selected-tips :name="$t('dictionary.server')" :count="params.data.length" :action="$t('compute.text_276')" />
- <dialog-table :data="params.data" :columns="params.columns.slice(0, 3)" />
- <a-form :form="form.fc" v-bind="formItemLayout">
- <a-form-item v-if="isSingle" :label="$t('common_312')">
- <a-input v-decorator="decorators.username" />
- </a-form-item>
- <a-form-item :label="$t('compute.qga.password')">
- <server-password ref="serverPassword" :decorator="decorators.loginConfig" :login-types="loginTypes" :disabledLoginTypes="disabledLoginTypes" />
- </a-form-item>
- <a-form-item v-if="enableAutoStart" :label="$t('compute.text_494')" :extra="$t('compute.text_1229')">
- <a-switch :checkedChildren="$t('compute.text_115')" :unCheckedChildren="$t('compute.text_116')" v-decorator="decorators.auto_start" :disabled="form.fi.disableAutoStart" />
- </a-form-item>
- <p v-if="!checkQgaOK" class="error-color">{{ $t('compute.reset_password.qga_tooltip') }}</p>
- </a-form>
- </div>
- <div slot="footer">
- <a-tooltip :title="checkQgaOK ? undefined : $t('compute.reset_password.qga_tooltip')">
- <a-button :class="{ 'mr-1': !checkQgaOK }" type="primary" @click="handleConfirm" :loading="loading" :disabled="!checkQgaOK">{{ $t('dialog.ok') }}</a-button>
- </a-tooltip>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import ServerPassword from '@Compute/sections/ServerPassword'
- import { LOGIN_TYPES_MAP } from '@Compute/constants'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import { typeClouds } from '@/utils/common/hypervisor'
- import { DOCS_MAP, showDocsLink } from '@/constants/docs'
- const hypervisorMap = typeClouds.hypervisorMap
- export default {
- name: 'VmResetPasswordDialog',
- components: {
- ServerPassword,
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- let autoStartInitialValue = true
- let disableAutoStart = false
- const noAutoStartHyper = [hypervisorMap.azure.key, hypervisorMap.openstack.key]
- const firstData = this.params.data && this.params.data[0]
- if (firstData && firstData.status === 'running') {
- autoStartInitialValue = false
- disableAutoStart = true
- }
- if (firstData && firstData.hypervisor) {
- const hyper = firstData.hypervisor.toLowerCase()
- if (noAutoStartHyper.includes(hyper)) {
- autoStartInitialValue = false
- disableAutoStart = true
- }
- }
- const login_account = firstData.metadata?.login_account
- const userName = {
- Linux: 'root',
- Windows: 'Administrator',
- }
- return {
- showDocsLink,
- loading: false,
- loginTypes: [LOGIN_TYPES_MAP.random.key, LOGIN_TYPES_MAP.password.key],
- form: {
- fc: this.$form.createForm(this, {
- onValuesChange: (props, values) => {
- Object.keys(values).forEach((key) => {
- this.form.fd[key] = values[key]
- })
- },
- }),
- fi: {
- disableAutoStart,
- },
- fd: {
- username: login_account || userName[firstData.os_type],
- },
- },
- decorators: {
- username: [
- 'username',
- {
- initialValue: login_account || userName[firstData.os_type],
- },
- ],
- loginConfig: {
- loginType: [
- 'loginType',
- {
- initialValue: LOGIN_TYPES_MAP.random.key,
- },
- ],
- },
- auto_start: [
- 'auto_start',
- {
- initialValue: autoStartInitialValue,
- valuePropName: 'checked',
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- qgaDoc: DOCS_MAP.qga(),
- checkQgaOK: true,
- loginAccount: login_account,
- }
- },
- computed: {
- enableMFA () {
- return this.$store.getters.userInfo.enable_mfa && this.$store.state.auth.auth.system_totp_on
- },
- selectedItems () {
- return this.params.data
- },
- selectedItem () {
- return this.selectedItems[0]
- },
- enableAutoStart () {
- return this.selectedItems.some(item => item.status === 'ready')
- },
- isAllKvm () {
- return this.selectedItems.every(item => item.hypervisor === hypervisorMap.kvm.key)
- },
- enableQgaAlert () {
- return this.isAllKvm && this.selectedItems.some(item => item.status === 'running')
- },
- isSingle () {
- return this.selectedItems?.length === 1
- },
- isAllRunning () {
- return this.selectedItems.every(item => item.status === 'running')
- },
- isSupportQgaPing () {
- return this.isAllKvm && this.isAllRunning && this.isSingle
- },
- disabledLoginTypes () {
- if (this.form.fd.username && this.form.fd.username !== this.loginAccount) {
- return [LOGIN_TYPES_MAP.random.key]
- }
- return []
- },
- },
- watch: {
- disabledLoginTypes (val, oldVal) {
- if (!oldVal.length && val.length) {
- this.form.fc.setFieldsValue({
- loginType: LOGIN_TYPES_MAP.password.key,
- })
- this.$refs.serverPassword.loginTypeChange({ target: { value: LOGIN_TYPES_MAP.password.key } })
- }
- },
- },
- created () {
- this.isSupportQgaPing && this.fetchQgaPing()
- },
- methods: {
- async fetchQgaPing () {
- try {
- const res = await new this.$Manager('servers', 'v2').performAction({
- id: this.selectedItem.id,
- action: 'qga-ping',
- data: {
- timeout: 100,
- },
- })
- if (res.data?.ping_error) {
- this.checkQgaOK = false
- } else {
- this.checkQgaOK = true
- }
- } catch (error) {
- this.checkQgaOK = false
- }
- },
- async doSetPassword (values) {
- const ids = this.selectedItems.map(item => item.id)
- const data = { reset_password: true, auto_start: values.auto_start }
- if (values.loginType === LOGIN_TYPES_MAP.password.key) {
- data.password = values.password
- }
- if (this.isSingle && values.username) {
- data.username = values.username
- }
- return this.params.onManager('batchPerformAction', {
- id: ids,
- steadyStatus: ['running', 'ready'],
- managerArgs: {
- action: 'set-password',
- data,
- },
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- const callback = async () => {
- this.loading = true
- await this.doSetPassword(values)
- this.$message.success(this.$t('message.exec_success'))
- this.cancelDialog()
- }
- if (this.enableMFA) {
- this.createDialog('SecretVertifyDialog', {
- action: this.$t('table.title.mfa_validate'),
- success: callback,
- })
- } else {
- callback()
- }
- } finally {
- this.loading = false
- }
- },
- },
- }
- </script>
|