blob: e01d26e0cabc756e612f0b268bdd4cc33f56d50c [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
<template>
<a-spin :spinning="loading">
<a-alert
v-if="!routerHealthChecksEnabled"
banner
:message="$t('message.action.router.health.checks.disabled.warning')" />
<div v-else>
<a-button :disabled="!('getRouterHealthCheckResults' in $store.getters.apis)" type="primary" icon="play-circle" style="width: 100%; margin-bottom: 15px" @click="showGetHelathCheck">
{{ $t('label.action.router.health.checks') }}
</a-button>
<a-table
style="overflow-y: auto"
:columns="columns"
:dataSource="healthChecks"
:pagination="false"
:rowKey="record => record.checkname"
size="large">
<template slot="status" slot-scope="record">
<status class="status" :text="record.success === true ? 'True' : 'False'" displayText />
</template>
</a-table>
<a-modal
v-if="'getRouterHealthCheckResults' in $store.getters.apis"
style="top: 20px;"
:title="$t('label.action.router.health.checks')"
:visible="showGetHealthChecksForm"
:closable="true"
:maskClosable="false"
:footer="null"
@cancel="onCloseGetHealthChecksForm"
v-ctrl-enter="handleGetHealthChecksSubmit"
centered>
<a-spin :spinning="loading">
<a-form
:form="form"
@submit="handleGetHealthChecksSubmit"
layout="vertical">
<a-form-item>
<tooltip-label slot="label" :title="$t('label.perform.fresh.checks')" :tooltip="apiParams.performfreshchecks.description"/>
<a-switch
v-decorator="[$t('performfreshchecks')]"
:placeholder="apiParams.performfreshchecks.description"
autoFocus/>
</a-form-item>
<div :span="24" class="action-button">
<a-button @click="onCloseGetHealthChecksForm">{{ $t('label.cancel') }}</a-button>
<a-button ref="submit" type="primary" @click="handleGetHealthChecksSubmit">{{ $t('label.ok') }}</a-button>
</div>
</a-form>
</a-spin>
</a-modal>
</div>
</a-spin>
</template>
<script>
import { api } from '@/api'
import Status from '@/components/widgets/Status'
import TooltipLabel from '@/components/widgets/TooltipLabel'
export default {
name: 'RouterHealthCheck',
components: {
Status,
TooltipLabel
},
props: {
resource: {
type: Object,
required: true
}
},
data () {
return {
routerHealthChecksEnabled: false,
healthChecks: [],
loading: false,
columns: [
{
title: this.$t('label.router.health.check.name'),
dataIndex: 'checkname'
},
{
title: this.$t('label.type'),
dataIndex: 'checktype'
},
{
title: this.$t('label.router.health.check.success'),
scopedSlots: { customRender: 'status' }
},
{
title: this.$t('label.router.health.check.last.updated'),
dataIndex: 'lastupdated'
},
{
title: this.$t('label.details'),
dataIndex: 'details'
}
],
showGetHealthChecksForm: false
}
},
beforeCreate () {
this.form = this.$form.createForm(this)
this.apiParams = this.$getApiParams('getRouterHealthCheckResults')
},
watch: {
resource: function (newItem, oldItem) {
this.updateResource(newItem)
}
},
created () {
this.updateResource(this.resource)
},
methods: {
updateResource (resource) {
if (!resource) {
return
}
this.resource = resource
if (!resource.id) {
return
}
this.checkConfigurationAndGetHealthChecks()
},
showGetHelathCheck () {
this.showGetHealthChecksForm = true
},
onCloseGetHealthChecksForm () {
this.showGetHealthChecksForm = false
},
handleGetHealthChecksSubmit (e) {
e.preventDefault()
if (this.loading) return
this.form.validateFieldsAndScroll((err, values) => {
if (err) {
return
}
this.onCloseGetHealthChecksForm()
this.checkConfigurationAndGetHealthChecks(values.performfreshchecks)
})
},
checkConfigurationAndGetHealthChecks (performFreshChecks) {
var params = { name: 'router.health.checks.enabled' }
this.loading = true
api('listConfigurations', params).then(json => {
this.routerHealthChecksEnabled = false
if (json.listconfigurationsresponse.configuration !== null) {
var config = json.listconfigurationsresponse.configuration[0]
if (config && config.name === params.name) {
this.routerHealthChecksEnabled = config.value === 'true'
}
}
}).catch(error => {
this.$notifyError(error)
}).finally(f => {
this.loading = false
if (this.routerHealthChecksEnabled) {
this.getHealthChecks(performFreshChecks)
}
})
},
getHealthChecks (performFreshChecks) {
var params = { routerid: this.resource.id }
if (performFreshChecks) {
params.performfreshchecks = performFreshChecks
}
this.loading = true
api('getRouterHealthCheckResults', params).then(json => {
this.healthChecks = json.getrouterhealthcheckresultsresponse.routerhealthchecks.healthchecks
}).catch(error => {
this.$notifyError(error)
}).finally(f => {
this.loading = false
})
}
}
}
</script>