mirror of https://github.com/portainer/portainer
69 lines
2.6 KiB
JavaScript
69 lines
2.6 KiB
JavaScript
import { TeamAccessViewModel, UserAccessViewModel } from 'Portainer/models/access';
|
|
|
|
class DockerRegistryAccessController {
|
|
/* @ngInject */
|
|
constructor($async, $state, Notifications, EndpointService, GroupService, RegistryService) {
|
|
this.$async = $async;
|
|
this.$state = $state;
|
|
this.Notifications = Notifications;
|
|
this.EndpointService = EndpointService;
|
|
this.GroupService = GroupService;
|
|
this.RegistryService = RegistryService;
|
|
|
|
this.updateAccess = this.updateAccess.bind(this);
|
|
this.filterUsers = this.filterUsers.bind(this);
|
|
}
|
|
|
|
updateAccess() {
|
|
return this.$async(async () => {
|
|
this.state.actionInProgress = true;
|
|
try {
|
|
await this.EndpointService.updateRegistryAccess(this.state.endpointId, this.state.registryId, this.registryEndpointAccesses);
|
|
this.Notifications.success('Access successfully updated');
|
|
this.$state.reload();
|
|
} catch (err) {
|
|
this.state.actionInProgress = false;
|
|
this.Notifications.error('Failure', err, 'Unable to update accesses');
|
|
}
|
|
});
|
|
}
|
|
|
|
filterUsers(users) {
|
|
const endpointUsers = this.endpoint.UserAccessPolicies;
|
|
const endpointTeams = this.endpoint.TeamAccessPolicies;
|
|
|
|
const endpointGroupUsers = this.endpointGroup.UserAccessPolicies;
|
|
const endpointGroupTeams = this.endpointGroup.TeamAccessPolicies;
|
|
|
|
return users.filter((userOrTeam) => {
|
|
const userAccess = userOrTeam instanceof UserAccessViewModel && (endpointUsers[userOrTeam.Id] || endpointGroupUsers[userOrTeam.Id]);
|
|
const teamAccess = userOrTeam instanceof TeamAccessViewModel && (endpointTeams[userOrTeam.Id] || endpointGroupTeams[userOrTeam.Id]);
|
|
|
|
return userAccess || teamAccess;
|
|
});
|
|
}
|
|
|
|
$onInit() {
|
|
return this.$async(async () => {
|
|
try {
|
|
this.state = {
|
|
viewReady: false,
|
|
actionInProgress: false,
|
|
endpointId: this.$state.params.endpointId,
|
|
registryId: this.$state.params.id,
|
|
};
|
|
this.registry = await this.RegistryService.registry(this.state.registryId, this.state.endpointId);
|
|
this.registryEndpointAccesses = this.registry.RegistryAccesses[this.state.endpointId] || {};
|
|
this.endpointGroup = await this.GroupService.group(this.endpoint.GroupId);
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to retrieve registry details');
|
|
} finally {
|
|
this.state.viewReady = true;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
export default DockerRegistryAccessController;
|
|
angular.module('portainer.docker').controller('DockerRegistryAccessController', DockerRegistryAccessController);
|