dataease/frontend/src/views/system/datasource/form.vue

530 lines
19 KiB
Vue
Raw Normal View History

<template>
<layout-content :header="formType=='add' ? $t('datasource.create') : $t('datasource.modify')">
<template v-slot:header>
2021-12-07 17:09:20 +08:00
<el-icon name="back" class="back-button" @click.native="backToList"/>
2021-11-24 18:49:41 +08:00
{{
params && params.id && params.showModel && params.showModel === 'show' && !canEdit ? $t('datasource.show_info') : formType == 'add' ? $t('datasource.create') : $t('datasource.modify')
}}
</template>
<div>
<el-form
ref="dsForm"
:model="form"
:rules="rule"
size="small"
:disabled="params && params.id && params.showModel && params.showModel === 'show' && !canEdit "
label-width="180px"
label-position="right"
>
<el-form-item :label="$t('commons.name')" prop="name">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.name" autocomplete="off"/>
</el-form-item>
<el-form-item :label="$t('commons.description')" prop="desc">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.desc" autocomplete="off"/>
</el-form-item>
<el-form-item :label="$t('datasource.type')" prop="type">
<el-select
v-model="form.type"
:placeholder="$t('datasource.please_choose_type')"
class="select-width"
:disabled="formType=='modify' || (formType==='add' && params && !!params.type)"
@change="changeType()"
>
<el-option
v-for="item in allTypes"
:key="item.name"
:label="item.label"
:value="item.name"
/>
</el-select>
</el-form-item>
<el-form-item
v-if="form.configuration.dataSourceType=='jdbc'"
:label="$t('datasource.host')"
prop="configuration.host"
>
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.host" autocomplete="off"/>
</el-form-item>
<el-form-item
v-if="form.configuration.dataSourceType=='es'"
:label="$t('datasource.datasource_url')"
prop="configuration.url"
>
<el-input
v-model="form.configuration.url"
:placeholder="$t('datasource.please_input_datasource_url')"
autocomplete="off"
/>
</el-form-item>
<el-form-item
v-if="form.configuration.dataSourceType=='jdbc'"
:label="$t('datasource.data_base')"
prop="configuration.dataBase"
>
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.dataBase" autocomplete="off"/>
</el-form-item>
2021-06-30 10:11:12 +08:00
<el-form-item
v-if="form.type=='oracle'"
:label="$t('datasource.oracle_connection_type')"
prop="configuration.connectionType"
>
2021-06-30 10:11:12 +08:00
<el-radio v-model="form.configuration.connectionType" label="sid">{{ $t('datasource.oracle_sid') }}</el-radio>
2021-11-24 18:49:41 +08:00
<el-radio v-model="form.configuration.connectionType" label="serviceName">
{{ $t('datasource.oracle_service_name') }}
</el-radio>
2021-06-30 10:11:12 +08:00
</el-form-item>
2021-11-10 18:42:44 +08:00
<el-form-item v-if="form.configuration.dataSourceType=='jdbc'" :label="$t('datasource.user_name')">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.username" autocomplete="off"/>
</el-form-item>
2021-11-10 18:42:44 +08:00
<el-form-item v-if="form.configuration.dataSourceType=='jdbc'" :label="$t('datasource.password')">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.password" autocomplete="off" show-password/>
</el-form-item>
2021-11-24 18:49:41 +08:00
<el-form-item v-if="form.configuration.dataSourceType=='es'" :label="$t('datasource.user_name')">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.esUsername" autocomplete="off"/>
</el-form-item>
2021-11-24 18:49:41 +08:00
<el-form-item v-if="form.configuration.dataSourceType=='es'" :label="$t('datasource.password')">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.esPassword" autocomplete="off" show-password/>
</el-form-item>
<el-form-item
v-if="form.configuration.dataSourceType=='jdbc' && form.type!=='oracle'"
:label="$t('datasource.extra_params')"
>
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.extraParams" autocomplete="off"/>
</el-form-item>
<el-form-item
v-if="form.configuration.dataSourceType=='jdbc'"
:label="$t('datasource.port')"
prop="configuration.port"
>
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.port" autocomplete="off" type="number" min="0"/>
</el-form-item>
2021-12-07 17:09:20 +08:00
<el-form-item v-if="form.type=='oracle' || form.type=='sqlServer' || form.type=='pg' || form.type=='redshift' || form.type=='db2'">
<el-button icon="el-icon-plus" size="mini" @click="getSchema()">
{{ $t('datasource.get_schema') }}
</el-button>
</el-form-item>
<el-form-item
2021-12-07 17:09:20 +08:00
v-if="form.type=='oracle' || form.type=='sqlServer' || form.type=='pg' || form.type=='redshift' || form.type=='db2'"
:label="$t('datasource.schema')"
>
<el-select
v-model="form.configuration.schema"
filterable
:placeholder="$t('datasource.please_choose_schema')"
class="select-width"
>
<el-option
v-for="item in schemas"
:key="item"
:label="item"
:value="item"
/>
</el-select>
</el-form-item>
<el-collapse v-if="form.configuration.dataSourceType=='jdbc'">
2021-08-16 18:05:46 +08:00
<el-collapse-item :title="$t('datasource.priority')" name="1">
<el-form-item :label="$t('datasource.initial_pool_size')" prop="configuration.initialPoolSize">
<el-input
v-model="form.configuration.initialPoolSize"
autocomplete="off"
type="number"
min="0"
size="small"
/>
2021-08-16 18:05:46 +08:00
</el-form-item>
<el-form-item :label="$t('datasource.min_pool_size')" prop="configuration.minPoolSize">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.minPoolSize" autocomplete="off" type="number" min="0"/>
2021-08-16 18:05:46 +08:00
</el-form-item>
<el-form-item :label="$t('datasource.max_pool_size')" prop="configuration.maxPoolSize">
2021-12-07 17:09:20 +08:00
<el-input v-model="form.configuration.maxPoolSize" autocomplete="off" type="number" min="0"/>
2021-08-16 18:05:46 +08:00
</el-form-item>
2021-08-16 18:05:46 +08:00
</el-collapse-item>
</el-collapse>
</el-form>
<div v-if="canEdit" slot="footer" class="dialog-footer">
<el-button
v-if="formType==='add'?true: hasDataPermission('manage',params.privileges)"
@click="validaDatasource"
>{{ $t('commons.validate') }}
2021-11-24 18:49:41 +08:00
</el-button>
<el-button
v-if="formType==='add'?true: hasDataPermission('manage',params.privileges)"
type="primary"
@click="save"
>{{ $t('commons.save') }}
2021-11-24 18:49:41 +08:00
</el-button>
</div>
<div v-else slot="footer" class="dialog-footer">
<el-button
v-if="formType==='add'?true: hasDataPermission('manage',params.privileges)"
@click="validaDatasource"
>{{ $t('commons.validate') }}
2021-11-24 18:49:41 +08:00
</el-button>
<el-button
v-if="formType==='add'?true: hasDataPermission('manage',params.privileges)"
type="primary"
@click="changeEdit"
>{{ $t('commons.edit') }}
2021-11-24 18:49:41 +08:00
</el-button>
</div>
</div>
</layout-content>
</template>
<script>
import LayoutContent from '@/components/business/LayoutContent'
2021-12-07 17:09:20 +08:00
import {addDs, editDs, getSchema, validateDs, validateDsById} from '@/api/system/datasource'
import {$confirm} from '@/utils/message'
2021-12-01 11:56:05 +08:00
import i18n from '@/lang/index'
2021-08-03 12:21:10 +08:00
export default {
name: 'DsForm',
2021-12-07 17:09:20 +08:00
components: {LayoutContent},
props: {
params: {
type: Object,
default: null
},
tData: {
type: Array,
default: null
}
},
data() {
return {
2021-08-16 18:27:20 +08:00
form: {
configuration: {
2021-08-16 18:05:46 +08:00
initialPoolSize: 5,
extraParams: '',
2021-08-16 18:05:46 +08:00
minPoolSize: 5,
maxPoolSize: 50,
maxIdleTime: 30,
acquireIncrement: 5,
idleConnectionTestPeriod: 5,
connectTimeout: 5
2021-08-16 18:27:20 +08:00
}
},
rule: {
2021-12-07 17:09:20 +08:00
name: [{required: true, message: i18n.t('datasource.input_name'), trigger: 'blur'},
{min: 2, max: 25, message: i18n.t('datasource.input_limit_2_25', [2, 25]), trigger: 'blur'}],
desc: [{min: 0, max: 50, message: i18n.t('datasource.input_limit_0_50'), trigger: 'blur'}],
type: [{required: true, message: i18n.t('datasource.please_choose_type'), trigger: 'change'}],
2021-11-24 18:49:41 +08:00
'configuration.dataBase': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_data_base'),
2021-11-24 18:49:41 +08:00
trigger: 'blur'
}],
'configuration.connectionType': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_select_oracle_type'),
2021-11-24 18:49:41 +08:00
trigger: 'blur'
}],
'configuration.username': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_user_name'),
2021-11-24 18:49:41 +08:00
trigger: 'blur'
}],
'configuration.password': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_password'),
2021-11-24 18:49:41 +08:00
trigger: 'change'
}],
2021-12-07 17:09:20 +08:00
'configuration.host': [{required: true, message: i18n.t('datasource.please_input_host'), trigger: 'change'}],
'configuration.url': [{required: true, message: i18n.t('datasource.please_input_url'), trigger: 'change'}],
'configuration.port': [{required: true, message: i18n.t('datasource.please_input_port'), trigger: 'change'}],
2021-11-24 18:49:41 +08:00
'configuration.initialPoolSize': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_initial_pool_size'),
2021-11-24 18:49:41 +08:00
trigger: 'change'
}],
'configuration.minPoolSize': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_min_pool_size'),
2021-11-24 18:49:41 +08:00
trigger: 'change'
}],
'configuration.maxPoolSize': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_max_pool_size'),
2021-11-24 18:49:41 +08:00
trigger: 'change'
}],
'configuration.maxIdleTime': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_max_idle_time'),
2021-11-24 18:49:41 +08:00
trigger: 'change'
}],
'configuration.acquireIncrement': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_acquire_increment'),
2021-11-24 18:49:41 +08:00
trigger: 'change'
}],
'configuration.connectTimeout': [{
required: true,
2021-12-01 11:56:05 +08:00
message: i18n.t('datasource.please_input_connect_timeout'),
2021-11-24 18:49:41 +08:00
trigger: 'change'
}]
},
2021-09-15 18:20:31 +08:00
allTypes: [
2021-12-07 17:09:20 +08:00
{name: 'mysql', label: 'MySQL', type: 'jdbc', extraParams: 'characterEncoding=UTF-8&connectTimeout=5000&useSSL=false&allowPublicKeyRetrieval=true'
2021-11-24 18:49:41 +08:00
},
2021-12-07 17:09:20 +08:00
{name: 'hive', label: 'Apache Hive', type: 'jdbc', extraParams: ''},
{name: 'oracle', label: 'Oracle', type: 'jdbc'},
{name: 'sqlServer', label: 'SQL Server', type: 'jdbc', extraParams: ''},
{name: 'pg', label: 'PostgreSQL', type: 'jdbc', extraParams: ''},
{name: 'es', label: 'Elasticsearch', type: 'es'},
{name: 'mariadb', label: 'MariaDB', type: 'jdbc', extraParams: 'characterEncoding=UTF-8&connectTimeout=5000&useSSL=false&allowPublicKeyRetrieval=true'},
{name: 'ds_doris', label: 'Doris', type: 'jdbc', extraParams: 'characterEncoding=UTF-8&connectTimeout=5000&useSSL=false&allowPublicKeyRetrieval=true'},
{name: 'ck', label: 'ClickHouse', type: 'jdbc', extraParams: ''},
{name: 'redshift', label: 'AWS Redshift', type: 'jdbc'},
{name: 'mongo', label: 'MongoDB', type: 'jdbc', extraParams: ''},
{name: 'db2', label: 'Db2', type: 'jdbc', extraParams: ''}
2021-11-24 18:49:41 +08:00
],
schemas: [],
2021-08-03 12:21:10 +08:00
canEdit: false,
originConfiguration: {}
}
},
created() {
if (this.params && this.params.id) {
const row = this.params
this.edit(row)
} else {
this.create()
2021-06-24 11:09:07 +08:00
if (this.params && this.params.type) {
this.setType()
}
}
},
mounted() {
},
methods: {
2021-06-24 11:09:07 +08:00
setType() {
this.form.type = this.params.type
2021-08-16 18:05:46 +08:00
this.form.configuration = {
initialPoolSize: 5,
extraParams: '',
2021-08-16 18:05:46 +08:00
minPoolSize: 5,
maxPoolSize: 50,
maxIdleTime: 30,
acquireIncrement: 5,
idleConnectionTestPeriod: 5,
connectTimeout: 5
}
2021-06-24 11:09:07 +08:00
this.changeType()
},
changeEdit() {
this.canEdit = true
this.formType = 'modify'
},
create() {
this.formType = 'add'
this.canEdit = true
},
edit(row) {
this.formType = 'modify'
this.form = Object.assign({}, row)
2021-08-03 12:21:10 +08:00
this.originConfiguration = this.form.configuration
this.form.configuration = JSON.parse(this.form.configuration)
},
reset() {
this.$refs.dsForm.resetFields()
},
save() {
2021-08-16 18:05:46 +08:00
if (!this.form.configuration.schema && (this.form.type === 'oracle' || this.form.type === 'sqlServer')) {
2021-12-01 11:56:05 +08:00
this.$message.error(i18n.t('datasource.please_choose_schema'))
return
}
2021-10-11 15:06:18 +08:00
if (this.form.configuration.dataSourceType === 'jdbc' && this.form.configuration.port <= 0) {
2021-12-01 11:56:05 +08:00
this.$message.error(i18n.t('datasource.port_no_less_then_0'))
2021-10-11 15:06:18 +08:00
return
}
if (this.form.configuration.initialPoolSize < 0 || this.form.configuration.minPoolSize < 0 || this.form.configuration.maxPoolSize < 0) {
2021-12-01 11:56:05 +08:00
this.$message.error(i18n.t('datasource.no_less_then_0'))
2021-08-16 18:05:46 +08:00
return
}
let repeat = false
let repeatDsName = ''
this.tData.forEach(item => {
if(item.id === this.form.type){
item.children.forEach(child => {
2022-01-23 15:08:42 +08:00
if(this.formType === 'modify' && child.id===this.form.id){
return
}
let configuration = JSON.parse(child.configuration)
switch (this.form.type) {
case 'mysql':
case 'hive':
case 'mariadb':
case 'ds_doris':
case 'ck':
case 'mongo':
case 'mariadb':
if(configuration.host == this.form.configuration.host && configuration.dataBase == this.form.configuration.dataBase && configuration.port == this.form.configuration.port){
repeat = true
repeatDsName = child.name
}
break
case 'pg':
case 'sqlServer':
case 'redshift':
case 'oracle':
case 'db2':
if(configuration.host == this.form.configuration.host && configuration.dataBase == this.form.configuration.dataBase && configuration.port == this.form.configuration.port && configuration.schema == this.form.configuration.schema){
repeat = true
}
break
case 'es':
if(configuration.url == this.form.configuration.url){
repeat = true
}
break
default:
break
}
})
}
})
this.$refs.dsForm.validate(valid => {
if (!valid) {
return false
}
const method = this.formType === 'add' ? addDs : editDs
const form = JSON.parse(JSON.stringify(this.form))
form.configuration = JSON.stringify(form.configuration)
if (this.formType === 'modify' && this.originConfiguration !== form.configuration) {
if(repeat){
$confirm(i18n.t('datasource.repeat_datasource_msg') + '[' + repeatDsName + '], ' + i18n.t('datasource.confirm_save'), () => {
$confirm(i18n.t('datasource.edit_datasource_msg'), () => {
this.method(method, form)
2021-08-03 12:21:10 +08:00
})
})
}else {
$confirm(i18n.t('datasource.edit_datasource_msg'), () => {
this.method(method, form)
2021-08-03 12:21:10 +08:00
})
}
return
}
if(repeat){
$confirm(i18n.t('datasource.repeat_datasource_msg') + '[' + repeatDsName + '], ' + i18n.t('datasource.confirm_save'), () => {
this.method(method, form)
})
}else {
this.method(method, form)
}
})
},
method(method, form){
method(form).then(res => {
this.$success(i18n.t('commons.save_success'))
this.refreshType(form)
this.backToList()
})
},
2021-07-06 16:22:19 +08:00
getSchema() {
this.$refs.dsForm.validate(valid => {
if (valid) {
const data = JSON.parse(JSON.stringify(this.form))
data.configuration = JSON.stringify(data.configuration)
getSchema(data).then(res => {
this.schemas = res.data
2021-12-01 11:56:05 +08:00
this.$success(i18n.t('commons.success'))
})
} else {
return false
}
})
},
validaDatasource() {
2021-07-08 09:54:08 +08:00
if (!this.form.configuration.schema && this.form.type === 'oracle') {
2021-12-01 11:56:05 +08:00
this.$message.error(i18n.t('datasource.please_choose_schema'))
2021-07-08 09:54:08 +08:00
return
}
2021-10-11 17:09:29 +08:00
if (this.form.configuration.dataSourceType === 'jdbc' && this.form.configuration.port <= 0) {
2021-12-01 11:56:05 +08:00
this.$message.error(i18n.t('datasource.port_no_less_then_0'))
2021-10-11 17:09:29 +08:00
return
}
this.$refs.dsForm.validate(valid => {
if (valid) {
const data = JSON.parse(JSON.stringify(this.form))
data.configuration = JSON.stringify(data.configuration)
2021-09-03 14:40:47 +08:00
if (data.showModel === 'show' && !this.canEdit) {
validateDsById(data.id).then(res => {
2021-09-03 14:40:47 +08:00
if (res.success) {
2021-12-01 11:56:05 +08:00
this.$success(i18n.t('datasource.validate_success'))
2021-09-03 14:40:47 +08:00
} else {
if(res.message.length < 2500){
this.$error(res.message)
}else {
this.$error(res.message.substring(0,2500) + '......')
}
}
2021-11-03 10:36:35 +08:00
this.refreshType(data)
})
2021-09-03 14:40:47 +08:00
} else {
validateDs(data).then(res => {
2021-09-03 14:40:47 +08:00
if (res.success) {
2021-12-01 11:56:05 +08:00
this.$success(i18n.t('datasource.validate_success'))
2021-09-03 14:40:47 +08:00
} else {
if(res.message.length < 2500){
this.$error(res.message)
}else {
this.$error(res.message.substring(0,2500) + '......')
}
}
}).catch(res => {
this.$error(res.message)
})
}
} else {
return false
}
})
},
changeType() {
for (let i = 0; i < this.allTypes.length; i++) {
if (this.allTypes[i].name === this.form.type) {
this.form.configuration.dataSourceType = this.allTypes[i].type
this.form.configuration.extraParams = this.allTypes[i].extraParams
}
}
},
backToList() {
2021-11-24 18:49:41 +08:00
this.$emit('switch-component', {})
2021-06-17 19:34:46 +08:00
},
refreshType(form) {
this.$emit('refresh-type', form)
}
}
}
</script>
<style lang="scss" scoped>
.back-button {
cursor: pointer;
margin-right: 10px;
font-weight: 600;
&:active {
transform: scale(0.85);
}
}
2021-08-16 18:05:46 +08:00
.el-input {
width: 300px;
}
2021-11-24 18:49:41 +08:00
2021-08-16 18:05:46 +08:00
.el-select {
width: 300px;
}
</style>