| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{params.title === 'edit' ? $t('compute.text_982') : params.title === 'create' ? $t('compute.perform_create') : $t('compute.text_983')}}{{$t('compute.rule')}}</div>
- <div slot="body">
- <a-form
- v-bind="formItemLayout"
- :form="form.fc">
- <a-form-item :label="$t('compute.text_175')" v-if="params.title !== 'edit'">
- <a-select
- v-decorator="decorators.type"
- :disabled="typeDisabled"
- :placeholder="$t('compute.text_219')"
- @change="typeChange">
- <a-select-option v-for="item in typeOptions" :key="item.value" :value="item.value">
- {{item.label}}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :label="decLabel" :extra="$t('compute.text_995')">
- <a-select
- mode="combobox"
- @change="fetchSecgroups"
- option-filter-prop="children"
- :placeholder="$t('compute.secgroup.source.placeholder')"
- :disabled="cidrDisabled || cidrChecked"
- v-decorator="decorators.source">
- <a-select-opt-group>
- <span slot="label">CIDR</span>
- <a-select-option v-for="item in cidrOptions" :key="item.value" :value="item.value">
- {{item.label}}
- </a-select-option>
- </a-select-opt-group>
- <!-- <a-select-opt-group>
- <span slot="label">{{$t('dictionary.secgroup')}}</span>
- <a-select-option v-for="item in secgroupOpts" :key="item.id" :value="item.name">
- {{item.name}}
- </a-select-option>
- </a-select-opt-group> -->
- </a-select>
- <a-checkbox v-if="cidrCheckedShow" class="right-checkbox" @change="cidrChange" :checked="cidrChecked">{{$t('compute.any_cidr.text')}}</a-checkbox>
- </a-form-item>
- <a-form-item :label="$t('compute.text_980')">
- <a-select v-decorator="decorators.protocol" @change="protocolChange" :disabled="protocolDisabled || cidrDisabled">
- <a-select-option v-for="item in protocolOptions" :key="item.value" :value="item.value">
- {{item.label}}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :label="$t('compute.text_998')" :extra="portExtra">
- <a-input :disabled="portsDisabled || cidrDisabled" v-decorator="decorators.ports" :placeholder="$t('compute.text_350')" />
- <a-checkbox class="right-checkbox" @change="portsChange" :checked="portsChecked" :disabled="portsCheckboxDisabled || cidrDisabled">{{$t('compute.text_1000')}}</a-checkbox>
- </a-form-item>
- <a-form-item :label="$t('compute.text_694')">
- <a-select v-decorator="decorators.action" :disabled="!isPrioritySupport || cidrDisabled">
- <a-select-option v-for="item in actionOptions" :key="item.value" :value="item.value">
- {{item.label}}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item v-if="isPrioritySupport" :label="$t('compute.text_1001')" :extra="priorityExtra">
- <a-input-number :min="priorityMin" :max="priorityMax" :disabled="priorityDisabled || cidrDisabled" v-decorator="decorators.priority" />
- </a-form-item>
- <a-form-item :extra="isAws ? $t('compute.use_en_comment') : ''">
- <span slot="label">{{$t('compute.text_312')}}</span>
- <a-input v-decorator="decorators.description" :placeholder="$t('common_367')" />
- </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 { REGEXP } from '@/utils/validate'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import { priorityRuleMap } from '../constants'
- export default {
- name: 'EditRulesDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- const selectItem = this.params.data[0]
- const { brand, cloud_env } = this.params
- const item = brand ? priorityRuleMap[brand.toLowerCase()] || {} : {}
- const priorityMin = !item.priorityNoSupport ? item.min : 1
- const priorityMax = !item.priorityNoSupport ? item.max : 1
- let cidrChecked = JSON.stringify(selectItem) === '{}' ? true : !selectItem.cidr
- let cidrCheckedShow = true
- if (cloud_env === 'public') {
- cidrCheckedShow = false
- cidrChecked = false
- }
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- type: [
- 'type',
- ],
- source: [
- 'source',
- {
- validateFirst: true,
- initialValue: selectItem.cidr || (cidrCheckedShow ? 'ALL' : '0.0.0.0/0'),
- rules: [
- { validator: this.validateCIDR, required: !cidrCheckedShow },
- ],
- },
- ],
- protocol: [
- 'protocol',
- {
- initialValue: selectItem.protocol || 'tcp',
- },
- ],
- ports: [
- 'ports',
- {
- validateFirst: true,
- initialValue: JSON.stringify(selectItem) === '{}' ? '' : selectItem.ports ? selectItem.ports : 'ALL',
- rules: [
- { required: true, message: this.$t('compute.text_347') },
- { validator: this.validatePorts },
- ],
- },
- ],
- action: [
- 'action',
- {
- initialValue: selectItem.action || 'allow',
- rules: [
- { required: true },
- ],
- },
- ],
- priority: [
- 'priority',
- {
- initialValue: selectItem.priority || priorityMin,
- },
- ],
- description: [
- 'description',
- {
- initialValue: selectItem.description || '',
- rules: [
- {
- validator: (rule, value, callback) => {
- if (value && (this.isKsyun || this.isAws)) {
- if (/[\u4e00-\u9fff]/.test(value)) {
- callback(new Error(this.$t('scope.text_339')))
- }
- }
- callback()
- },
- },
- ],
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 15,
- },
- labelCol: {
- span: 3,
- },
- },
- typeOptions: [
- { label: this.$t('compute.text_144'), value: 'custom', description: '' },
- { label: this.$t('compute.text_1003'), value: 'windows', description: this.$t('compute.text_1004') },
- { label: 'SSH (22)', value: 'linux', description: this.$t('compute.text_1005') },
- { label: 'HTTP(80)', value: 'http', description: this.$t('compute.text_1006') },
- { label: 'HTTPS(443)', value: 'https', description: this.$t('compute.text_1007') },
- { label: 'Ping', value: 'ping', description: this.$t('compute.text_1008') },
- ],
- actionOptions: [
- { label: this.$t('compute.text_976'), value: 'allow' },
- { label: this.$t('compute.text_977'), value: 'deny' },
- ],
- cidrOptions: [
- // { label: this.$t('compute.any_cidr.text'), value: '' },
- { label: '0.0.0.0/0', value: '0.0.0.0/0' },
- { label: '10.0.0.0/8', value: '10.0.0.0/8' },
- { label: '172.16.0.0/12', value: '172.16.0.0/12' },
- { label: '192.168.0.0/16', value: '192.168.0.0/16' },
- { label: '::/0', value: '::/0' },
- { label: 'fd::/64', value: 'fd::/64' },
- ],
- secgroupOpts: [
- ],
- cidrChecked,
- cidrCheckedShow,
- typeDisabled: false,
- portsDisabled: JSON.stringify(selectItem) === '{}' ? false : !selectItem.ports,
- portsCheckboxDisabled: selectItem.protocol === 'any' || selectItem.protocol === 'icmp',
- portsChecked: JSON.stringify(selectItem) === '{}' ? false : !selectItem.ports,
- decLabel: this.params.type === 'in' ? this.$t('compute.text_979') : this.$t('compute.text_978'),
- protocolDisabled: this.params.title !== 'edit',
- priorityMin,
- priorityMax,
- isPrioritySupport: !item.priorityNoSupport,
- priorityItem: item,
- cloud_env,
- }
- },
- computed: {
- ...mapGetters(['scope']),
- priorityExtra () {
- if (this.priorityItem.priorityNoSupport) {
- return ''
- } else if (this.priorityItem.max) {
- return `${this.priorityItem.min}-${this.priorityItem.max}, ${this.priorityItem.isMaxHigh ? this.$t('compute.secgroup_priority_tip2') : this.$t('compute.secgroup_priority_tip')}${this.priorityItem.noRepeat ? ', ' + this.$t('compute.secgroup_priority_no_repeat') : ''}`
- }
- return this.$t('compute.text_1002')
- },
- portExtra () {
- if (this.priorityItem.portSupportComma) {
- return this.$t('compute.text_999')
- }
- return this.$t('compute.text_999_1')
- },
- isAws () {
- return this.params.brand === 'Aws'
- },
- isKsyun () {
- return this.params.brand === 'Ksyun'
- },
- protocolOptions () {
- let ret = [
- { label: 'TCP', value: 'tcp' },
- { label: 'UDP', value: 'udp' },
- { label: 'ICMP', value: 'icmp' },
- { label: this.$t('compute.any_protocol.text'), value: 'any' },
- ]
- if (this.params.brand && this.params.brand.toLowerCase() === 'ucloud') {
- ret = ret.filter(item => item.value !== 'any')
- }
- return ret
- },
- cidrDisabled () {
- if (this.params.title === 'edit' && ['ctyun'].includes(this.params.brand.toLowerCase())) {
- return true
- }
- return false
- },
- priorityDisabled () {
- return this.params.title === 'edit' && ['qcloud'].includes(this.params.brand.toLowerCase())
- },
- },
- created () {
- // this.fetchSecgroups('')
- },
- methods: {
- validatePorts (rule, value, callback) {
- const portReg = /^\d+$/
- if (value === 'ALL') {
- callback()
- return
- }
- if (!value) {
- callback(new Error(this.$t('validator.ports')))
- return
- }
- if (!this.priorityItem.portSupportComma && value.indexOf(',') !== -1) {
- callback(new Error(this.$t('validator.ports')))
- return
- }
- if (value.indexOf(',') !== -1) {
- const ports = value.split(',')
- if (ports.some(item => !portReg.test(item) || +item < 0 || +item > 65535)) {
- callback(new Error(this.$t('validator.ports')))
- return
- }
- } else if (value.indexOf('-') !== -1) {
- const ports = value.split('-')
- if (ports.length !== 2 || ports.some(item => !portReg.test(item) || +item < 3306 || +item > 20000)) {
- callback(new Error(this.$t('validator.ports')))
- return
- }
- } else if (!portReg.test(value) || +value < 0 || +value > 65535) {
- callback(new Error(this.$t('validator.ports')))
- return
- }
- callback()
- },
- validateCIDR (rule, value, callback) {
- if (!this.cidrCheckedShow && !value) {
- callback(new Error(this.$t('common.tips.input', [this.decLabel])))
- }
- if (this.cidrChecked || !value) {
- callback()
- } else if (!REGEXP.IPv6.regexp.test(value) && !REGEXP.IPv4.regexp.test(value) && !REGEXP.cidr.regexp.test(value) && !REGEXP.cidr6.regexp.test(value)) {
- callback(new Error(this.$t('common.tips.input', ['IPv6'])))
- }
- callback()
- },
- changeCidrChecked (bool) {
- this.cidrChecked = this.cidrCheckedShow ? bool : this.cidrCheckedShow
- },
- typeChange (e) {
- if (e === 'windows') {
- this.form.fc.setFieldsValue({ ports: '3389', protocol: 'tcp' })
- this.changeCidrChecked(true)
- this.portsChecked = false
- this.portsDisabled = true
- this.portsCheckboxDisabled = true
- this.protocolDisabled = true
- } else if (e === 'linux') {
- this.form.fc.setFieldsValue({ ports: '22', protocol: 'tcp' })
- this.changeCidrChecked(true)
- this.portsChecked = false
- this.portsDisabled = true
- this.portsCheckboxDisabled = true
- this.protocolDisabled = true
- } else if (e === 'http') {
- this.form.fc.setFieldsValue({ ports: '80', protocol: 'tcp' })
- this.changeCidrChecked(true)
- this.portsChecked = false
- this.portsDisabled = true
- this.portsCheckboxDisabled = true
- this.protocolDisabled = true
- } else if (e === 'https') {
- this.form.fc.setFieldsValue({ ports: '443', protocol: 'tcp' })
- this.changeCidrChecked(true)
- this.portsChecked = false
- this.portsDisabled = true
- this.portsCheckboxDisabled = true
- this.protocolDisabled = true
- } else if (e === 'ping') {
- this.form.fc.setFieldsValue({ ports: 'ALL', protocol: 'icmp' })
- this.changeCidrChecked(true)
- this.portsChecked = true
- this.portsDisabled = true
- this.portsCheckboxDisabled = true
- this.protocolDisabled = true
- } else {
- this.changeCidrChecked(true)
- this.portsChecked = false
- this.portsDisabled = false
- this.form.fc.resetFields(['ports'])
- this.portsCheckboxDisabled = false
- this.protocolDisabled = false
- }
- },
- protocolChange (e) {
- if (e === 'icmp') {
- this.portsChecked = true
- this.portsDisabled = true
- this.$nextTick(() => {
- this.form.fc.setFieldsValue({ ports: 'ALL' })
- })
- this.portsCheckboxDisabled = true
- } else {
- if (e === 'any') {
- this.portsChecked = true
- this.$nextTick(() => {
- this.form.fc.setFieldsValue({ ports: 'ALL' })
- })
- this.portsCheckboxDisabled = true
- this.portsDisabled = true
- this.typeDisabled = true
- } else {
- this.portsCheckboxDisabled = false
- this.typeDisabled = false
- }
- }
- },
- // async fetchSecgroups (value) {
- // const params = {
- // filter: [
- // `id.notequals("${this.params.secgroup}")`,
- // ],
- // scope: this.scope,
- // limit: 10,
- // }
- // if (value.length > 0) {
- // params.filter.push(`name.contains("${value}")`)
- // }
- // await new this.$Manager('secgroups').list({ params })
- // .then(({ data: { data = [] } }) => {
- // this.secgroupOpts.splice(0, this.secgroupOpts.length, ...data)
- // })
- // },
- portsChange (e) {
- this.portsChecked = !this.portsChecked
- this.portsDisabled = !this.portsDisabled
- if (e.target.checked) {
- this.$nextTick(() => {
- this.form.fc.setFieldsValue({ ports: 'ALL' })
- })
- } else {
- this.$nextTick(() => {
- this.form.fc.setFieldsValue({ ports: '' })
- })
- }
- },
- cidrChange (e) {
- this.cidrChecked = !this.cidrChecked
- if (e.target.checked) {
- this.$nextTick(() => {
- this.form.fc.setFieldsValue({ source: 'ALL' })
- })
- } else {
- this.$nextTick(() => {
- this.form.fc.setFieldsValue({ source: '0.0.0.0/0' })
- })
- }
- },
- saveEdit (data) {
- if (this.params.title === 'clone') {
- let description = ''
- this.typeOptions.forEach((item) => {
- if (item.value === data.type) {
- description = item.description
- }
- })
- const params = {
- ...this.params.data[0],
- ...data,
- secgroup: this.params.secgroup,
- description: data.description && data.description.length > 0 ? data.description : description,
- }
- return new this.$Manager('secgrouprules').create({
- data: params,
- })
- } else if (this.params.title === 'create') {
- let description = ''
- this.typeOptions.forEach((item) => {
- if (item.value === data.type) {
- description = item.description
- }
- })
- const params = {
- ...data,
- secgroup: this.params.secgroup,
- description: data.description && data.description.length > 0 ? data.description : description,
- direction: this.params.type,
- }
- return new this.$Manager('secgrouprules').create({
- data: params,
- })
- } else {
- const id = this.params.data[0].id
- return new this.$Manager('secgrouprules').update({
- id,
- data,
- })
- }
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- if (values.ports === 'ALL') {
- values.ports = ''
- }
- if (this.cidrChecked) {
- values.cidr = ''
- if (values.source) {
- delete values.source
- }
- } else if (values.source) {
- // const isCidr = validate(values.source, 'cidr')
- // if (!isCidr || isCidr.result === false) {
- // values.peer_secgroup_id = values.source
- // } else {
- values.cidr = values.source
- // }
- delete values.source
- } else {
- values.cidr = ''
- }
- await this.saveEdit(values)
- this.loading = false
- this.params.refresh && this.params.refresh()
- this.cancelDialog()
- } catch (e) {
- this.loading = false
- throw e
- }
- },
- },
- }
- </script>
- <style lang="less" scoped>
- .right-checkbox {
- width: 100px;
- height: 40px;
- left: 500px;
- font-size: 12px!important;
- color: #ccc;
- position: absolute;
- }
- </style>
|