mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 00:09:40 +02:00
* feat(registries): registries accessibility to all authorized people and not only admins * feat(registry): dockerhub settings for admin only * feat(registry): remove registry config access for non admin users * feat(api): use AuthenticatedAccess policy instead of RestrictedAccess for extensionList operation * refactor(api): minor update to security package * refactor(api): revert unexporting function changes * refactor(api): apply gofmt
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
angular.module('portainer.extensions.registrymanagement')
|
|
.controller('RegistryRepositoriesController', ['$transition$', '$scope', 'RegistryService', 'RegistryV2Service', 'Notifications', 'Authentication',
|
|
function ($transition$, $scope, RegistryService, RegistryV2Service, Notifications, Authentication) {
|
|
|
|
$scope.state = {
|
|
displayInvalidConfigurationMessage: false
|
|
};
|
|
|
|
function initView() {
|
|
var registryId = $transition$.params().id;
|
|
|
|
var authenticationEnabled = $scope.applicationState.application.authentication;
|
|
if (authenticationEnabled) {
|
|
var userDetails = Authentication.getUserDetails();
|
|
var isAdmin = userDetails.role === 1;
|
|
$scope.isAdmin = isAdmin;
|
|
}
|
|
|
|
RegistryService.registry(registryId)
|
|
.then(function success(data) {
|
|
$scope.registry = data;
|
|
|
|
RegistryV2Service.ping(registryId, false)
|
|
.then(function success() {
|
|
return RegistryV2Service.repositories(registryId);
|
|
})
|
|
.then(function success(data) {
|
|
$scope.repositories = data;
|
|
})
|
|
.catch(function error() {
|
|
$scope.state.displayInvalidConfigurationMessage = true;
|
|
});
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to retrieve registry details');
|
|
});
|
|
}
|
|
|
|
initView();
|
|
}]);
|