2016-06-02 05:34:03 +00:00
|
|
|
angular.module('container', [])
|
2017-05-23 18:56:10 +00:00
|
|
|
.controller('ContainerController', ['$scope', '$state','$stateParams', '$filter', 'Container', 'ContainerCommit', 'ContainerService', 'ImageHelper', 'Network', 'Notifications', 'Pagination', 'ModalService', 'ControllerDataPipeline',
|
|
|
|
function ($scope, $state, $stateParams, $filter, Container, ContainerCommit, ContainerService, ImageHelper, Network, Notifications, Pagination, ModalService, ControllerDataPipeline) {
|
2016-08-19 06:41:45 +00:00
|
|
|
$scope.activityTime = 0;
|
|
|
|
$scope.portBindings = [];
|
|
|
|
$scope.config = {
|
|
|
|
Image: '',
|
|
|
|
Registry: ''
|
2016-06-02 05:34:03 +00:00
|
|
|
};
|
2017-01-24 01:28:40 +00:00
|
|
|
$scope.state = {};
|
|
|
|
$scope.state.pagination_count = Pagination.getPaginationCount('container_networks');
|
|
|
|
|
|
|
|
$scope.changePaginationCount = function() {
|
|
|
|
Pagination.setPaginationCount('container_networks', $scope.state.pagination_count);
|
|
|
|
};
|
2016-06-02 05:34:03 +00:00
|
|
|
|
|
|
|
var update = function () {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 05:34:03 +00:00
|
|
|
Container.get({id: $stateParams.id}, function (d) {
|
2017-05-23 18:56:10 +00:00
|
|
|
var container = new ContainerDetailsViewModel(d);
|
|
|
|
$scope.container = container;
|
|
|
|
ControllerDataPipeline.setAccessControlData('container', $stateParams.id, container.ResourceControl);
|
2016-06-02 05:34:03 +00:00
|
|
|
$scope.container.edit = false;
|
2017-05-23 18:56:10 +00:00
|
|
|
$scope.container.newContainerName = $filter('trimcontainername')(container.Name);
|
2016-06-02 05:34:03 +00:00
|
|
|
|
2017-05-23 18:56:10 +00:00
|
|
|
if (container.State.Running) {
|
|
|
|
$scope.activityTime = moment.duration(moment(container.State.StartedAt).utc().diff(moment().utc())).humanize();
|
|
|
|
} else if (container.State.Status === 'created') {
|
|
|
|
$scope.activityTime = moment.duration(moment(container.Created).utc().diff(moment().utc())).humanize();
|
2016-08-19 06:41:45 +00:00
|
|
|
} else {
|
2017-05-23 18:56:10 +00:00
|
|
|
$scope.activityTime = moment.duration(moment().utc().diff(moment(container.State.FinishedAt).utc())).humanize();
|
2016-06-02 05:34:03 +00:00
|
|
|
}
|
|
|
|
|
2016-08-19 06:41:45 +00:00
|
|
|
$scope.portBindings = [];
|
2017-05-23 18:56:10 +00:00
|
|
|
if (container.NetworkSettings.Ports) {
|
|
|
|
angular.forEach(Object.keys(container.NetworkSettings.Ports), function(portMapping) {
|
|
|
|
if (container.NetworkSettings.Ports[portMapping]) {
|
2016-08-19 06:41:45 +00:00
|
|
|
var mapping = {};
|
|
|
|
mapping.container = portMapping;
|
2017-05-23 18:56:10 +00:00
|
|
|
mapping.host = container.NetworkSettings.Ports[portMapping][0].HostIp + ':' + container.NetworkSettings.Ports[portMapping][0].HostPort;
|
2016-08-19 06:41:45 +00:00
|
|
|
$scope.portBindings.push(mapping);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').hide();
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').hide();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to retrieve container info');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.start = function () {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2016-09-02 01:51:49 +00:00
|
|
|
Container.start({id: $scope.container.Id}, {}, function (d) {
|
2016-06-02 05:34:03 +00:00
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container started', $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to start container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.stop = function () {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 05:34:03 +00:00
|
|
|
Container.stop({id: $stateParams.id}, function (d) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container stopped', $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to stop container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.kill = function () {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 05:34:03 +00:00
|
|
|
Container.kill({id: $stateParams.id}, function (d) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container killed', $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to kill container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.commit = function () {
|
2016-08-19 06:41:45 +00:00
|
|
|
$('#createImageSpinner').show();
|
2016-12-31 00:25:42 +00:00
|
|
|
var image = $scope.config.Image;
|
|
|
|
var registry = $scope.config.Registry;
|
2016-12-13 20:33:24 +00:00
|
|
|
var imageConfig = ImageHelper.createImageConfigForCommit(image, registry);
|
2016-08-19 06:41:45 +00:00
|
|
|
ContainerCommit.commit({id: $stateParams.id, tag: imageConfig.tag, repo: imageConfig.repo}, function (d) {
|
|
|
|
$('#createImageSpinner').hide();
|
2016-09-02 05:40:03 +00:00
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container commited', $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
2016-08-19 06:41:45 +00:00
|
|
|
$('#createImageSpinner').hide();
|
2016-09-02 05:40:03 +00:00
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to commit container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
2016-08-19 06:41:45 +00:00
|
|
|
|
2016-06-02 05:34:03 +00:00
|
|
|
$scope.pause = function () {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 05:34:03 +00:00
|
|
|
Container.pause({id: $stateParams.id}, function (d) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container paused', $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to pause container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.unpause = function () {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 05:34:03 +00:00
|
|
|
Container.unpause({id: $stateParams.id}, function (d) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container unpaused', $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to unpause container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-04-25 08:20:57 +00:00
|
|
|
$scope.confirmRemove = function () {
|
2017-05-01 10:18:06 +00:00
|
|
|
var title = 'You are about to remove a container.';
|
2017-04-25 08:20:57 +00:00
|
|
|
if ($scope.container.State.Running) {
|
2017-05-01 10:18:06 +00:00
|
|
|
title = 'You are about to remove a running container.';
|
2017-04-25 08:20:57 +00:00
|
|
|
}
|
2017-05-01 10:18:06 +00:00
|
|
|
ModalService.confirmContainerDeletion(
|
|
|
|
title,
|
|
|
|
function (result) {
|
|
|
|
if(!result) { return; }
|
|
|
|
var cleanAssociatedVolumes = false;
|
|
|
|
if (result[0]) {
|
|
|
|
cleanAssociatedVolumes = true;
|
|
|
|
}
|
|
|
|
$scope.remove(cleanAssociatedVolumes);
|
|
|
|
}
|
|
|
|
);
|
2017-04-25 08:20:57 +00:00
|
|
|
};
|
|
|
|
|
2017-05-01 10:18:06 +00:00
|
|
|
$scope.remove = function(cleanAssociatedVolumes) {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2017-05-23 18:56:10 +00:00
|
|
|
ContainerService.remove($scope.container, cleanAssociatedVolumes)
|
|
|
|
.then(function success() {
|
|
|
|
Notifications.success('Container successfully removed');
|
|
|
|
$state.go('containers', {}, {reload: true});
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to remove container');
|
|
|
|
})
|
|
|
|
.finally(function final() {
|
|
|
|
$('#loadingViewSpinner').hide();
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.restart = function () {
|
2016-07-07 00:44:58 +00:00
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 05:34:03 +00:00
|
|
|
Container.restart({id: $stateParams.id}, function (d) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container restarted', $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to restart container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.renameContainer = function () {
|
2017-06-01 08:23:59 +00:00
|
|
|
var container = $scope.container;
|
|
|
|
Container.rename({id: $stateParams.id, 'name': container.newContainerName}, function (d) {
|
|
|
|
if (d.message) {
|
|
|
|
container.newContainerName = container.Name;
|
|
|
|
Notifications.error('Unable to rename container', {}, d.message);
|
2016-09-02 03:25:20 +00:00
|
|
|
} else {
|
2017-06-01 08:23:59 +00:00
|
|
|
container.Name = container.newContainerName;
|
|
|
|
Notifications.success('Container successfully renamed', container.Name);
|
2016-09-02 03:25:20 +00:00
|
|
|
}
|
|
|
|
}, function (e) {
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to rename container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
$scope.container.edit = false;
|
|
|
|
};
|
|
|
|
|
2016-11-07 04:36:00 +00:00
|
|
|
$scope.containerLeaveNetwork = function containerLeaveNetwork(container, networkId) {
|
|
|
|
$('#loadingViewSpinner').show();
|
|
|
|
Network.disconnect({id: networkId}, { Container: $stateParams.id, Force: false }, function (d) {
|
2017-05-23 18:56:10 +00:00
|
|
|
if (container.message) {
|
2016-11-07 04:36:00 +00:00
|
|
|
$('#loadingViewSpinner').hide();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Error', d, 'Unable to disconnect container from network');
|
2016-11-07 04:36:00 +00:00
|
|
|
} else {
|
|
|
|
$('#loadingViewSpinner').hide();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.success('Container left network', $stateParams.id);
|
2016-11-10 02:25:31 +00:00
|
|
|
$state.go('container', {id: $stateParams.id}, {reload: true});
|
2016-11-07 04:36:00 +00:00
|
|
|
}
|
|
|
|
}, function (e) {
|
|
|
|
$('#loadingViewSpinner').hide();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to disconnect container from network');
|
2016-11-07 04:36:00 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-06-29 13:49:35 +00:00
|
|
|
$scope.containerJoinNetwork = function containerJoinNetwork(container, networkId) {
|
|
|
|
$('#joinNetworkSpinner').show();
|
|
|
|
Network.connect({id: networkId}, { Container: $stateParams.id }, function (d) {
|
|
|
|
if (container.message) {
|
|
|
|
$('#joinNetworkSpinner').hide();
|
|
|
|
Notifications.error('Error', d, 'Unable to connect container to network');
|
|
|
|
} else {
|
|
|
|
$('#joinNetworkSpinner').hide();
|
|
|
|
Notifications.success('Container joined network', $stateParams.id);
|
|
|
|
$state.go('container', {id: $stateParams.id}, {reload: true});
|
|
|
|
}
|
|
|
|
}, function (e) {
|
|
|
|
$('#joinNetworkSpinner').hide();
|
|
|
|
Notifications.error('Failure', e, 'Unable to connect container to network');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
Network.query({}, function (d) {
|
|
|
|
var networks = d;
|
|
|
|
if ($scope.applicationState.endpoint.mode.provider === 'DOCKER_SWARM' || $scope.applicationState.endpoint.mode.provider === 'DOCKER_SWARM_MODE') {
|
|
|
|
networks = d.filter(function (network) {
|
|
|
|
if (network.Scope === 'global') {
|
|
|
|
return network;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
networks.push({Name: 'bridge'});
|
|
|
|
networks.push({Name: 'host'});
|
|
|
|
networks.push({Name: 'none'});
|
|
|
|
}
|
|
|
|
$scope.availableNetworks = networks;
|
|
|
|
if (!_.find(networks, {'Name': 'bridge'})) {
|
2017-06-29 14:04:49 +00:00
|
|
|
networks.push({Name: 'nat'});
|
2017-06-29 13:49:35 +00:00
|
|
|
}
|
|
|
|
}, function (e) {
|
|
|
|
Notifications.error('Failure', e, 'Unable to retrieve networks');
|
|
|
|
});
|
|
|
|
|
2016-06-02 05:34:03 +00:00
|
|
|
update();
|
|
|
|
}]);
|