octavia-dashboard/octavia_dashboard/static/dashboard/project/lbaasv2/loadbalancers/actions/delete/delete.action.service.js

170 lines
5.3 KiB
JavaScript

/*
* Copyright 2016 IBM Corp.
* Copyright 2017 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.loadbalancers')
.factory('horizon.dashboard.project.lbaasv2.loadbalancers.actions.delete', deleteService);
deleteService.$inject = [
'horizon.dashboard.project.lbaasv2.loadbalancers.resourceType',
'horizon.framework.util.actions.action-result.service',
'$location',
'horizon.framework.widgets.modal.deleteModalService',
'horizon.app.core.openstack-service-api.lbaasv2',
'horizon.app.core.openstack-service-api.policy',
'horizon.framework.widgets.toast.service',
'horizon.framework.util.i18n.gettext',
'horizon.framework.util.q.extensions'
];
/**
* @ngDoc factory
* @name horizon.dashboard.project.lbaasv2.loadbalancers.actions.deleteService
* @description
*
* Brings up the delete load balancers confirmation modal dialog.
* On submit, deletes selected load balancers.
* On cancel, does nothing.
*
* @param resourceType The loadbalancer resource type.
* @param actionResultService The horizon action result service.
* @param $location The angular $location service.
* @param deleteModal The horizon delete modal service.
* @param api The LBaaS v2 API service.
* @param policy The horizon policy service.
* @param toast The horizon message service.
* @param gettext The horizon gettext function for translation.
* @param qExtensions Horizon extensions to the $q service.
*
* @returns The load balancers delete service.
*/
function deleteService(
resourceType, actionResultService, $location, deleteModal, api,
policy, toast, gettext, qExtensions
) {
var scope;
var context = { };
var service = {
perform: perform,
allowed: allowed
};
return service;
//////////////
function perform(items, _scope_) {
scope = _scope_;
var loadbalancers = angular.isArray(items) ? items : [items];
context.labels = labelize(loadbalancers.length);
context.deleteEntity = deleteItem;
return qExtensions.allSettled(loadbalancers.map(checkPermission)).then(afterCheck);
}
function labelize(count) {
return {
title: ngettext(
'Confirm Delete Load Balancer',
'Confirm Delete Load Balancers', count),
message: ngettext(
'You have selected "%s". Deleted load balancer is not recoverable ' +
'and this deletion will delete all of the sub-resources.',
'You have selected "%s". Deleted load balancers are not recoverable ' +
'and this deletion will delete all of the sub-resources.', count),
submit: ngettext(
'Delete Load Balancer',
'Delete Load Balancers', count),
success: ngettext(
'Deleted Load Balancer: %s.',
'Deleted Load Balancers: %s.', count),
error: ngettext(
'Unable to delete Load Balancer: %s.',
'Unable to delete Load Balancers: %s.', count)
};
}
function deleteResult(deleteModalResult) {
// To make the result of this action generically useful, reformat the return
// from the deleteModal into a standard form
var actionResult = actionResultService.getActionResult();
deleteModalResult.pass.forEach(function markDeleted(item) {
actionResult.deleted(resourceType, item.context.id);
});
deleteModalResult.fail.forEach(function markFailed(item) {
actionResult.failed(resourceType, item.context.id);
});
if (actionResult.result.failed.length === 0 && actionResult.result.deleted.length > 0) {
var path = 'project/load_balancer';
$location.path(path);
}
return actionResult.result;
}
function allowed() {
return policy.ifAllowed({
rules: [['load-balancer', 'os_load-balancer_api:loadbalancer:delete']]
});
}
function canBeDeleted(item) {
var status = item.provisioning_status;
return qExtensions.booleanAsPromise(status === 'ACTIVE' || status === 'ERROR');
}
function checkPermission(item) {
return { promise: canBeDeleted(item), context: item };
}
function afterCheck(result) {
if (result.fail.length > 0) {
toast.add('error', getMessage(context.labels.error, result.fail));
}
if (result.pass.length > 0) {
return deleteModal.open(scope, result.pass.map(getEntity), context).then(deleteResult);
}
}
function deleteItem(id) {
return api.deleteLoadBalancer(id, true);
}
function getMessage(message, entities) {
return interpolate(message, [entities.map(getName).join(", ")]);
}
function getName(result) {
return getEntity(result).name;
}
function getEntity(result) {
return result.context;
}
}
})();