
Enable users to create l7 policies and rules on a listener. Change-Id: I29130311346c8627473222491a76777a9dc95f52
110 lines
3.8 KiB
JavaScript
110 lines
3.8 KiB
JavaScript
/*
|
|
* Copyright 2018 Walmart.
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
(function() {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('horizon.dashboard.project.lbaasv2.l7policies')
|
|
.controller('L7PolicyDetailController', L7PolicyDetailController);
|
|
|
|
L7PolicyDetailController.$inject = [
|
|
'loadbalancer',
|
|
'listener',
|
|
'l7policy',
|
|
'horizon.dashboard.project.lbaasv2.loadbalancers.service',
|
|
'horizon.dashboard.project.lbaasv2.l7policies.resourceType',
|
|
'horizon.framework.conf.resource-type-registry.service',
|
|
'horizon.framework.widgets.modal-wait-spinner.service',
|
|
'$q'
|
|
];
|
|
|
|
/**
|
|
* @ngdoc controller
|
|
* @name L7PolicyDetailController
|
|
*
|
|
* @description
|
|
* Controller for the LBaaS v2 l7policy detail page.
|
|
*
|
|
* @param loadbalancer The loadbalancer object.
|
|
* @param listener The listener object.
|
|
* @param l7policy The l7policy object.
|
|
* @param loadBalancersService The LBaaS v2 load balancers service.
|
|
* @param resourceType The load balancer resource type.
|
|
* @param typeRegistry The horizon type registry service.
|
|
* @param spinnerService The horizon modal wait spinner service.
|
|
* @param $q The angular service for promises.
|
|
*
|
|
* @returns undefined
|
|
*/
|
|
|
|
function L7PolicyDetailController(
|
|
loadbalancer, listener, l7policy, loadBalancersService,
|
|
resourceType, typeRegistry, spinnerService, $q
|
|
) {
|
|
var ctrl = this;
|
|
|
|
ctrl.operatingStatus = loadBalancersService.operatingStatus;
|
|
ctrl.provisioningStatus = loadBalancersService.provisioningStatus;
|
|
ctrl.l7policyAction = loadBalancersService.l7policyAction;
|
|
ctrl.loadbalancer = loadbalancer;
|
|
ctrl.listener = listener;
|
|
ctrl.l7policy = l7policy;
|
|
ctrl.listFunctionExtraParams = {
|
|
loadbalancerId: ctrl.loadbalancer.id,
|
|
listenerId: ctrl.listener.id,
|
|
l7policyId: ctrl.l7policy.id
|
|
};
|
|
ctrl.resourceType = typeRegistry.getResourceType(resourceType);
|
|
ctrl.context = {};
|
|
ctrl.context.identifier = l7policy.id;
|
|
|
|
ctrl.resultHandler = actionResultHandler;
|
|
|
|
function actionResultHandler(returnValue) {
|
|
return $q.when(returnValue, actionSuccessHandler);
|
|
}
|
|
|
|
function loadData(response) {
|
|
spinnerService.hideModalSpinner();
|
|
ctrl.showDetails = true;
|
|
ctrl.resourceType.initActions();
|
|
ctrl.l7policy = response.data;
|
|
ctrl.l7policy.loadbalancerId = ctrl.loadbalancer.id;
|
|
ctrl.l7policy.listenerId = ctrl.listener.id;
|
|
}
|
|
|
|
function actionSuccessHandler(result) {
|
|
// The action has completed (for whatever "complete" means to that
|
|
// action. Notice the view doesn't really need to know the semantics of the
|
|
// particular action because the actions return data in a standard form.
|
|
// That return includes the id and type of each created, updated, deleted
|
|
// and failed item.
|
|
// Currently just refreshes the display each time.
|
|
if (result) {
|
|
if (result.failed.length === 0 && result.deleted.length > 0) {
|
|
// handle a race condition where the resource is already deleted
|
|
return;
|
|
}
|
|
spinnerService.showModalSpinner(gettext('Please Wait'));
|
|
ctrl.showDetails = false;
|
|
ctrl.context.loadPromise = ctrl.resourceType.load(ctrl.context.identifier);
|
|
ctrl.context.loadPromise.then(loadData);
|
|
}
|
|
}
|
|
}
|
|
|
|
})();
|