mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-10 15:36:45 +08:00
262 lines
11 KiB
Vue
262 lines
11 KiB
Vue
<template>
|
|
<div>
|
|
<LayoutContent v-loading="loading" :title="$t('setting.safe')" :divider="true">
|
|
<template #main>
|
|
<el-form :model="form" v-loading="loading" label-position="left" label-width="180px">
|
|
<el-row>
|
|
<el-col :span="1"><br /></el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="$t('setting.panelPort')" prop="serverPort">
|
|
<el-input disabled v-model.number="form.serverPort">
|
|
<template #append>
|
|
<el-button @click="onChangePort" icon="Setting">
|
|
{{ $t('commons.button.set') }}
|
|
</el-button>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="$t('setting.entrance')">
|
|
<el-input
|
|
type="password"
|
|
disabled
|
|
v-if="form.securityEntrance"
|
|
v-model="form.securityEntrance"
|
|
>
|
|
<template #append>
|
|
<el-button @click="onChangeEntrance" icon="Setting">
|
|
{{ $t('commons.button.set') }}
|
|
</el-button>
|
|
</template>
|
|
</el-input>
|
|
<el-input disabled v-if="!form.securityEntrance" v-model="unset">
|
|
<template #append>
|
|
<el-button @click="onChangeEntrance" icon="Setting">
|
|
{{ $t('commons.button.set') }}
|
|
</el-button>
|
|
</template>
|
|
</el-input>
|
|
<span class="input-help">{{ $t('setting.entranceHelper') }}</span>
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="$t('setting.expirationTime')" prop="expirationTime">
|
|
<el-input disabled v-model="form.expirationTime">
|
|
<template #append>
|
|
<el-button @click="onChangeExpirationTime" icon="Setting">
|
|
{{ $t('commons.button.set') }}
|
|
</el-button>
|
|
</template>
|
|
</el-input>
|
|
<div>
|
|
<span class="input-help" v-if="form.expirationTime !== $t('setting.unSetting')">
|
|
{{ $t('setting.timeoutHelper', [loadTimeOut()]) }}
|
|
</span>
|
|
<span class="input-help" v-else>
|
|
{{ $t('setting.noneSetting') }}
|
|
</span>
|
|
</div>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('setting.complexity')" prop="complexityVerification">
|
|
<el-switch
|
|
@change="onSaveComplexity"
|
|
v-model="form.complexityVerification"
|
|
active-value="enable"
|
|
inactive-value="disable"
|
|
/>
|
|
<span class="input-help">
|
|
{{ $t('setting.complexityHelper') }}
|
|
</span>
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="$t('setting.mfa')">
|
|
<el-switch
|
|
@change="handleMFA"
|
|
v-model="form.mfaStatus"
|
|
active-value="enable"
|
|
inactive-value="disable"
|
|
/>
|
|
<span class="input-help">
|
|
{{ $t('setting.mfaHelper') }}
|
|
</span>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="https" prop="ssl">
|
|
<el-switch
|
|
@change="handleSSL"
|
|
v-model="form.ssl"
|
|
active-value="enable"
|
|
inactive-value="disable"
|
|
/>
|
|
<span class="input-help">{{ $t('setting.https') }}</span>
|
|
<div v-if="form.ssl === 'enable' && sslInfo">
|
|
<el-tag>{{ $t('setting.domainOrIP') }} {{ sslInfo.domain }}</el-tag>
|
|
<el-tag style="margin-left: 5px">
|
|
{{ $t('setting.timeOut') }} {{ sslInfo.timeout }}
|
|
</el-tag>
|
|
<div>
|
|
<el-button link type="primary" @click="handleSSL">
|
|
{{ $t('commons.button.view') }}
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</template>
|
|
</LayoutContent>
|
|
|
|
<PortSetting ref="portRef" />
|
|
<MfaSetting ref="mfaRef" @search="search" />
|
|
<SSLSetting ref="sslRef" @search="search" />
|
|
<EntranceSetting ref="entranceRef" @search="search" />
|
|
<TimeoutSetting ref="timeoutref" @search="search" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive, onMounted } from 'vue';
|
|
import { ElForm, ElMessageBox } from 'element-plus';
|
|
import LayoutContent from '@/layout/layout-content.vue';
|
|
import PortSetting from '@/views/setting/safe/port/index.vue';
|
|
import SSLSetting from '@/views/setting/safe/ssl/index.vue';
|
|
import MfaSetting from '@/views/setting/safe/mfa/index.vue';
|
|
import TimeoutSetting from '@/views/setting/safe/timeout/index.vue';
|
|
import EntranceSetting from '@/views/setting/safe/entrance/index.vue';
|
|
import { updateSetting, getSettingInfo, getSystemAvailable, updateSSL, loadSSLInfo } from '@/api/modules/setting';
|
|
import i18n from '@/lang';
|
|
import { MsgSuccess } from '@/utils/message';
|
|
import { Setting } from '@/api/interface/setting';
|
|
|
|
const loading = ref(false);
|
|
const entranceRef = ref();
|
|
const portRef = ref();
|
|
const timeoutref = ref();
|
|
const mfaRef = ref();
|
|
|
|
const sslRef = ref();
|
|
const sslInfo = ref<Setting.SSLInfo>();
|
|
|
|
const form = reactive({
|
|
serverPort: 9999,
|
|
ssl: 'disable',
|
|
sslType: 'self',
|
|
securityEntrance: '',
|
|
expirationDays: 0,
|
|
expirationTime: '',
|
|
complexityVerification: 'disable',
|
|
mfaStatus: 'disable',
|
|
});
|
|
|
|
const unset = ref(i18n.global.t('setting.unSetting'));
|
|
|
|
const search = async () => {
|
|
const res = await getSettingInfo();
|
|
form.serverPort = Number(res.data.serverPort);
|
|
form.ssl = res.data.ssl;
|
|
form.sslType = res.data.sslType;
|
|
if (form.ssl === 'enable') {
|
|
loadInfo();
|
|
}
|
|
form.securityEntrance = res.data.securityEntrance;
|
|
form.expirationDays = Number(res.data.expirationDays);
|
|
form.expirationTime = res.data.expirationTime;
|
|
form.complexityVerification = res.data.complexityVerification;
|
|
form.mfaStatus = res.data.mfaStatus;
|
|
};
|
|
|
|
const onSaveComplexity = async () => {
|
|
let param = {
|
|
key: 'ComplexityVerification',
|
|
value: form.complexityVerification,
|
|
};
|
|
loading.value = true;
|
|
await updateSetting(param)
|
|
.then(() => {
|
|
loading.value = false;
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
search();
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
};
|
|
|
|
const handleMFA = async () => {
|
|
if (form.mfaStatus === 'enable') {
|
|
mfaRef.value.acceptParams();
|
|
return;
|
|
}
|
|
loading.value = true;
|
|
await updateSetting({ key: 'MFAStatus', value: 'disable' })
|
|
.then(() => {
|
|
loading.value = false;
|
|
search();
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
};
|
|
|
|
const onChangeEntrance = async () => {
|
|
entranceRef.value.acceptParams({ securityEntrance: form.securityEntrance });
|
|
};
|
|
const onChangePort = async () => {
|
|
portRef.value.acceptParams({ serverPort: form.serverPort });
|
|
};
|
|
const handleSSL = async () => {
|
|
if (form.ssl === 'enable') {
|
|
let params = {
|
|
ssl: form.ssl,
|
|
sslType: form.sslType,
|
|
sslInfo: sslInfo.value,
|
|
};
|
|
sslRef.value!.acceptParams(params);
|
|
return;
|
|
}
|
|
ElMessageBox.confirm(i18n.global.t('setting.sslDisableHelper'), i18n.global.t('setting.sslDisable'), {
|
|
confirmButtonText: i18n.global.t('commons.button.confirm'),
|
|
cancelButtonText: i18n.global.t('commons.button.cancel'),
|
|
type: 'info',
|
|
})
|
|
.then(async () => {
|
|
await updateSSL({ ssl: 'disable', domain: '', sslType: '', key: '', cert: '', sslID: 0 });
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
let href = window.location.href;
|
|
let address = href.split('://')[1];
|
|
window.open(`http://${address}/`, '_self');
|
|
})
|
|
.catch(() => {
|
|
form.ssl = 'enable';
|
|
});
|
|
};
|
|
|
|
const loadInfo = async () => {
|
|
await loadSSLInfo().then(async (res) => {
|
|
sslInfo.value = res.data;
|
|
});
|
|
};
|
|
|
|
const onChangeExpirationTime = async () => {
|
|
timeoutref.value.acceptParams({ expirationDays: form.expirationDays });
|
|
};
|
|
|
|
function loadTimeOut() {
|
|
if (form.expirationDays === 0) {
|
|
form.expirationTime = i18n.global.t('setting.unSetting');
|
|
return i18n.global.t('setting.unSetting');
|
|
}
|
|
let staytimeGap = new Date(form.expirationTime).getTime() - new Date().getTime();
|
|
if (staytimeGap < 0) {
|
|
form.expirationTime = i18n.global.t('setting.unSetting');
|
|
return i18n.global.t('setting.unSetting');
|
|
}
|
|
return Math.floor(staytimeGap / (3600 * 1000 * 24));
|
|
}
|
|
|
|
onMounted(() => {
|
|
search();
|
|
getSystemAvailable();
|
|
});
|
|
</script>
|