Project

General

Profile

Download (2.82 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 service
* @name Bastion.organizations.factory:Organization
*
* @requires BastionResource
* @requires CurrentOrganization
*
* @description
* Provides a BastionResource for organization(s).
*/
angular.module('Bastion.organizations').factory('Organization',
['BastionResource', 'CurrentOrganization', function (BastionResource, CurrentOrganization) {
return BastionResource('/api/v2/organizations/:id/:action',
{id: '@id'},
{
update: { method: 'PUT'},
repoDiscover: { method: 'POST', params: {action: 'repo_discover'}},
cancelRepoDiscover: {method: 'POST', params: {action: 'cancel_repo_discover'}},
autoAttachSubscriptions: {method: 'POST', params: {action: 'autoattach_subscriptions'}},
paths: {
method: 'GET',
url: '/api/v2/organizations/:id/environments/paths',
isArray: true,
transformResponse: function (data) {
return angular.fromJson(data)["results"];
}
},
readableEnvironments: {
method: 'GET',
url: '/api/v2/organizations/:id/environments/paths',
isArray: true,
transformResponse: function (data) {
// transform [{environments : [{id, name, permissions: {readable : true}}]}]
// to [[{id, name, select: true}]]
return _.map(angular.fromJson(data), function (path) {
return _.map(path["environments"], function (env) {
return {
id: env.id,
name: env.name,
select: env.permissions["readable"]
};
});
});
}
},
redhatProvider: {
method: 'GET',
url: '/api/v2/organizations/:organization_id/redhat_provider',
params: {'organization_id': CurrentOrganization}
}
}
);

}]
);
(1-1/2)