Project

General

Profile

Download (3.02 KB) Statistics
| Branch: | Tag: | Revision:
/**
* Copyright 2014 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public
* License as published by the Free Software Foundation; either version
* 2 of the License (GPLv2) or (at your option) any later version.
* There is NO WARRANTY for this software, express or implied,
* including the implied warranties of MERCHANTABILITY,
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
* have received a copy of GPLv2 along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
*/

/**
* @ngdoc object
* @name Bastion.content-hosts.controller:ContentHostHostCollectionsController
*
* @requires $scope
* @requires $q
* @requires $location
* @requires translate
* @requires ContentHost
* @requires Nutupane
*
* @description
* Provides the functionality for the list host collections details action pane.
*/
angular.module('Bastion.content-hosts').controller('ContentHostHostCollectionsController',
['$scope', '$q', '$location', 'translate', 'ContentHost', 'Nutupane',
function ($scope, $q, $location, translate, ContentHost, Nutupane) {
var hostCollectionsPane, params;

$scope.successMessages = [];
$scope.errorMessages = [];

params = {
'id': $scope.$stateParams.contentHostId,
'search': $location.search().search || "",
'order': 'name ASC',
'paged': true
};

hostCollectionsPane = new Nutupane(ContentHost, params, 'hostCollections');
$scope.hostCollectionsTable = hostCollectionsPane.table;

$scope.removeHostCollections = function (contentHost) {
var deferred = $q.defer(),
success,
error,
hostCollections,
hostCollectionsToRemove;

success = function (data) {
$scope.successMessages = [translate('Removed %x host collections from content host "%y".')
.replace('%x', $scope.hostCollectionsTable.numSelected).replace('%y', $scope.contentHost.name)];
$scope.hostCollectionsTable.working = false;
$scope.hostCollectionsTable.selectAll(false);
hostCollectionsPane.refresh();
$scope.contentHost.$get();
deferred.resolve(data);
};

error = function (error) {
deferred.reject(error.data.errors);
$scope.errorMessages = error.data.errors;
$scope.hostCollectionsTable.working = false;
};

$scope.hostCollectionsTable.working = true;

hostCollections = _.pluck($scope.contentHost.hostCollections, 'id');
hostCollectionsToRemove = _.pluck($scope.hostCollectionsTable.getSelected(), 'id');
contentHost["host_collection_ids"] = _.difference(hostCollections, hostCollectionsToRemove);

contentHost.$update({id: $scope.contentHost.uuid}, success, error);
return deferred.promise;
};
}]
);
(6-6/9)