2020-08-17 00:30:02 +00:00
|
|
|
import angular from 'angular';
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
angular.module('portainer.docker').controller('DashboardController', [
|
|
|
|
'$scope',
|
|
|
|
'$q',
|
2020-07-27 07:11:32 +00:00
|
|
|
'Authentication',
|
2020-04-10 21:54:53 +00:00
|
|
|
'ContainerService',
|
|
|
|
'ImageService',
|
|
|
|
'NetworkService',
|
|
|
|
'VolumeService',
|
|
|
|
'SystemService',
|
|
|
|
'ServiceService',
|
|
|
|
'StackService',
|
|
|
|
'EndpointService',
|
|
|
|
'Notifications',
|
|
|
|
'EndpointProvider',
|
|
|
|
'StateManager',
|
2020-08-17 00:30:02 +00:00
|
|
|
'TagService',
|
2020-04-10 21:54:53 +00:00
|
|
|
function (
|
|
|
|
$scope,
|
|
|
|
$q,
|
2020-07-27 07:11:32 +00:00
|
|
|
Authentication,
|
2020-04-10 21:54:53 +00:00
|
|
|
ContainerService,
|
|
|
|
ImageService,
|
|
|
|
NetworkService,
|
|
|
|
VolumeService,
|
|
|
|
SystemService,
|
|
|
|
ServiceService,
|
|
|
|
StackService,
|
|
|
|
EndpointService,
|
|
|
|
Notifications,
|
|
|
|
EndpointProvider,
|
2020-08-17 00:30:02 +00:00
|
|
|
StateManager,
|
|
|
|
TagService
|
2020-04-10 21:54:53 +00:00
|
|
|
) {
|
|
|
|
$scope.dismissInformationPanel = function (id) {
|
|
|
|
StateManager.dismissInformationPanel(id);
|
|
|
|
};
|
2018-08-21 18:40:42 +00:00
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
$scope.offlineMode = false;
|
2020-07-27 07:11:32 +00:00
|
|
|
$scope.showStacks = false;
|
2016-07-13 22:58:39 +00:00
|
|
|
|
2020-07-27 07:11:32 +00:00
|
|
|
async function initView() {
|
2020-07-14 20:46:38 +00:00
|
|
|
const endpointMode = $scope.applicationState.endpoint.mode;
|
|
|
|
const endpointId = EndpointProvider.endpointID();
|
|
|
|
$scope.endpointId = endpointId;
|
2018-10-28 09:27:06 +00:00
|
|
|
|
2020-07-27 07:11:32 +00:00
|
|
|
$scope.showStacks = await shouldShowStacks();
|
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
$q.all({
|
|
|
|
containers: ContainerService.containers(1),
|
|
|
|
images: ImageService.images(false),
|
|
|
|
volumes: VolumeService.volumes(),
|
|
|
|
networks: NetworkService.networks(true, true, true),
|
|
|
|
services: endpointMode.provider === 'DOCKER_SWARM_MODE' && endpointMode.role === 'MANAGER' ? ServiceService.services() : [],
|
|
|
|
stacks: StackService.stacks(true, endpointMode.provider === 'DOCKER_SWARM_MODE' && endpointMode.role === 'MANAGER', endpointId),
|
|
|
|
info: SystemService.info(),
|
|
|
|
endpoint: EndpointService.endpoint(endpointId),
|
2020-08-17 00:30:02 +00:00
|
|
|
tags: TagService.tags(),
|
2020-04-10 21:54:53 +00:00
|
|
|
})
|
|
|
|
.then(function success(data) {
|
|
|
|
$scope.containers = data.containers;
|
|
|
|
$scope.images = data.images;
|
|
|
|
$scope.volumeCount = data.volumes.length;
|
|
|
|
$scope.networkCount = data.networks.length;
|
|
|
|
$scope.serviceCount = data.services.length;
|
|
|
|
$scope.stackCount = data.stacks.length;
|
|
|
|
$scope.info = data.info;
|
|
|
|
$scope.endpoint = data.endpoint;
|
2020-08-17 00:30:02 +00:00
|
|
|
$scope.endpointTags = $scope.endpoint.TagIds.length
|
|
|
|
? _.join(
|
|
|
|
_.filter(
|
|
|
|
_.map($scope.endpoint.TagIds, (id) => {
|
|
|
|
const tag = data.tags.find((tag) => tag.Id === id);
|
|
|
|
return tag ? tag.Name : '';
|
|
|
|
}),
|
|
|
|
Boolean
|
|
|
|
),
|
|
|
|
', '
|
|
|
|
)
|
|
|
|
: '-';
|
2020-04-10 21:54:53 +00:00
|
|
|
$scope.offlineMode = EndpointProvider.offlineMode();
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to load dashboard data');
|
|
|
|
});
|
|
|
|
}
|
2017-10-15 17:24:40 +00:00
|
|
|
|
2020-07-27 07:11:32 +00:00
|
|
|
async function shouldShowStacks() {
|
|
|
|
const isAdmin = Authentication.isAdmin();
|
|
|
|
const { allowStackManagementForRegularUsers } = $scope.applicationState.application;
|
|
|
|
|
2020-08-11 05:41:37 +00:00
|
|
|
return isAdmin || allowStackManagementForRegularUsers;
|
2020-07-27 07:11:32 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
initView();
|
|
|
|
},
|
|
|
|
]);
|