mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
* feat(endpoint): migrate security settings to endpoint * feat(endpoint): check for specific endpoint settings * feat(endpoint): check security settings * feat(docker): add config page * feat(endpoint): save settings page * feat(endpoints): disable features when not agent * feat(sidebar): hide docker settings for regular user * fix(docker): small fixes in configs * fix(volumes): hide browse button for non admins * refactor(docker): introduce switch component * refactor(components/switch): seprate label from switch * feat(app/components): align switch label * refactor(app/components): move switch css * fix(docker/settings): add ngijnect * feat(endpoints): set default security values * style(portainer): sort types * fix(endpoint): rename security heading * fix(endpoints): update endpoints settings
100 lines
2.9 KiB
JavaScript
100 lines
2.9 KiB
JavaScript
import angular from 'angular';
|
|
import _ from 'lodash';
|
|
|
|
angular.module('portainer.docker').controller('DashboardController', [
|
|
'$scope',
|
|
'$q',
|
|
'Authentication',
|
|
'ContainerService',
|
|
'ImageService',
|
|
'NetworkService',
|
|
'VolumeService',
|
|
'SystemService',
|
|
'ServiceService',
|
|
'StackService',
|
|
'EndpointService',
|
|
'Notifications',
|
|
'EndpointProvider',
|
|
'StateManager',
|
|
'TagService',
|
|
'endpoint',
|
|
function (
|
|
$scope,
|
|
$q,
|
|
Authentication,
|
|
ContainerService,
|
|
ImageService,
|
|
NetworkService,
|
|
VolumeService,
|
|
SystemService,
|
|
ServiceService,
|
|
StackService,
|
|
EndpointService,
|
|
Notifications,
|
|
EndpointProvider,
|
|
StateManager,
|
|
TagService,
|
|
endpoint
|
|
) {
|
|
$scope.dismissInformationPanel = function (id) {
|
|
StateManager.dismissInformationPanel(id);
|
|
};
|
|
|
|
$scope.offlineMode = false;
|
|
$scope.showStacks = false;
|
|
|
|
async function initView() {
|
|
const endpointMode = $scope.applicationState.endpoint.mode;
|
|
const endpointId = EndpointProvider.endpointID();
|
|
$scope.endpointId = endpointId;
|
|
|
|
$scope.showStacks = await shouldShowStacks();
|
|
|
|
$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),
|
|
tags: TagService.tags(),
|
|
})
|
|
.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;
|
|
$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
|
|
),
|
|
', '
|
|
)
|
|
: '-';
|
|
$scope.offlineMode = EndpointProvider.offlineMode();
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to load dashboard data');
|
|
});
|
|
}
|
|
|
|
async function shouldShowStacks() {
|
|
const isAdmin = Authentication.isAdmin();
|
|
|
|
return isAdmin || endpoint.SecuritySettings.allowStackManagementForRegularUsers;
|
|
}
|
|
|
|
initView();
|
|
},
|
|
]);
|