Add delete machine
This commit is contained in:
parent
b2c76ddf0a
commit
cddd9682e6
4 changed files with 26 additions and 3 deletions
|
@ -5,6 +5,9 @@
|
|||
*/
|
||||
mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','Identity', 'Image', function ($scope, Compute, $rootScope, Loading, Identity, Image)
|
||||
{
|
||||
$scope.raiseShowMachineCreationEvent = function () {
|
||||
$rootScope.$broadcast("showMachineCreationEvent", Compute.getData().axioms);
|
||||
};
|
||||
var displayMachine = function(){
|
||||
var machineNames = [];
|
||||
var i = 0;
|
||||
|
|
|
@ -41,6 +41,8 @@ mainApp.controller('machineDetailsCtrl', ['$scope', 'Compute', '$rootScope', '$t
|
|||
//Todo
|
||||
};
|
||||
|
||||
|
||||
$scope.deleteMachine=function(){
|
||||
Compute.deleteMachine(function(){console.log("deleted")},$scope.machine.id);
|
||||
}
|
||||
|
||||
}]);
|
||||
|
|
|
@ -108,7 +108,22 @@ mainApp.factory('Compute', ['$http', 'Identity', function ($http, Identity) {
|
|||
var createMachine = function (callback, machine) {
|
||||
// Send listServers request
|
||||
var result = $http.post('../server/index.php',
|
||||
$.param({"token": Identity.getToken(), "task": "compute", "action": "createServer", 'name':machine.name, "imageId":machine.imageId,"flavorId":machine.flavorId}));
|
||||
$.param({"token": Identity.getToken(), "task": "compute", "action": "createServer", 'name': machine.name, "imageId": machine.imageId, "flavorId": machine.flavorId}));
|
||||
|
||||
// Wait and handle the response
|
||||
result.then(function (response) {
|
||||
callback();
|
||||
console.log(response.data.Error)
|
||||
}, function (response) {
|
||||
console.log("error")
|
||||
callback();
|
||||
});
|
||||
};
|
||||
|
||||
var deleteMachine = function (callback, machineId) {
|
||||
// Send listServers request
|
||||
var result = $http.post('../server/index.php',
|
||||
$.param({"token": Identity.getToken(), "task": "compute", "action": "deleteServer", 'serverId': machineId}));
|
||||
|
||||
// Wait and handle the response
|
||||
result.then(function (response) {
|
||||
|
@ -149,7 +164,8 @@ mainApp.factory('Compute', ['$http', 'Identity', function ($http, Identity) {
|
|||
return {
|
||||
pullMachines: pullMachines,
|
||||
pullData: pullData,
|
||||
createMachine:createMachine,
|
||||
createMachine: createMachine,
|
||||
deleteMachine: deleteMachine,
|
||||
getData: getData
|
||||
};
|
||||
|
||||
|
|
|
@ -63,6 +63,8 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
<a href="#" data-dismiss="modal" class="btn btn-primary">Apply</a>
|
||||
<a href="#" data-dismiss="modal" ng-click="deleteMachine()" class="btn btn-danger">Delete</a>
|
||||
|
||||
<a href="#" data-dismiss="modal" class="btn btn-default">Cancel</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue