magnum-ui/magnum_ui/static/dashboard/containers/magnum.service.js

92 lines
2.5 KiB
JavaScript

/**
* Copyright 2015, Cisco Systems
*
* 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.app.core.openstack-service-api')
.factory('horizon.app.core.openstack-service-api.magnum', MagnumAPI);
MagnumAPI.$inject = [
'horizon.framework.util.http.service',
'horizon.framework.widgets.toast.service'
];
function MagnumAPI(apiService, toastService) {
var service = {
getBays: getBays,
deleteBay: deleteBay,
deleteBays: deleteBays,
getBayModels: getBayModels,
deleteBayModel: deleteBayModel,
deleteBayModels: deleteBayModels
};
return service;
//////////
// Bays //
//////////
function getBays() {
return apiService.get('/api/containers/bays/')
.error(function() {
toastService.add('error', gettext('Unable to retrieve the Bays.'));
});
}
function deleteBay(id) {
return apiService.delete('/api/containers/bays/', [id])
.error(function() {
toastService.add('error', gettext('Unable to delete the Bay.'));
});
}
function deleteBays(ids) {
return apiService.delete('/api/containers/bays/', ids)
.error(function() {
toastService.add('error', gettext('Unable to delete the Bays.'));
});
}
///////////////
// BayModels //
///////////////
function getBayModels() {
return apiService.get('/api/containers/baymodels/')
.error(function() {
toastService.add('error', gettext('Unable to retrieve the BayModels.'))
});
}
function deleteBayModel(id) {
return apiService.delete('/api/containers/baymodels/', [id])
.error(function() {
toastService.add('error', gettext('Unable to delete the BayModel.'))
})
}
function deleteBayModels(ids) {
return apiService.delete('/api/containers/baymodels/', ids)
.error(function() {
toastService.add('error', gettext('Unable to delete the BayModels.'))
})
}
}
}());