2020-07-08 13:56:37 +02:00
|
|
|
package management
|
2020-03-24 10:14:39 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-07-08 13:56:37 +02:00
|
|
|
|
2020-05-11 10:16:27 +02:00
|
|
|
"github.com/golang/protobuf/ptypes/empty"
|
2020-07-08 13:56:37 +02:00
|
|
|
|
|
|
|
"github.com/caos/zitadel/internal/api/authz"
|
|
|
|
"github.com/caos/zitadel/pkg/grpc/management"
|
2020-03-24 10:14:39 +01:00
|
|
|
)
|
|
|
|
|
2020-07-08 13:56:37 +02:00
|
|
|
func (s *Server) SearchUserGrants(ctx context.Context, in *management.UserGrantSearchRequest) (*management.UserGrantSearchResponse, error) {
|
2020-05-12 06:30:53 +02:00
|
|
|
request := userGrantSearchRequestsToModel(in)
|
2020-07-08 13:56:37 +02:00
|
|
|
request.AppendMyOrgQuery(authz.GetCtxData(ctx).OrgID)
|
2020-05-12 06:30:53 +02:00
|
|
|
response, err := s.usergrant.SearchUserGrants(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return userGrantSearchResponseFromModel(response), nil
|
2020-03-24 10:14:39 +01:00
|
|
|
}
|
|
|
|
|
2020-07-08 13:56:37 +02:00
|
|
|
func (s *Server) UserGrantByID(ctx context.Context, request *management.UserGrantID) (*management.UserGrantView, error) {
|
2020-05-11 10:16:27 +02:00
|
|
|
user, err := s.usergrant.UserGrantByID(ctx, request.Id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-23 07:06:07 +02:00
|
|
|
return userGrantViewFromModel(user), nil
|
2020-03-24 10:14:39 +01:00
|
|
|
}
|
|
|
|
|
2020-07-22 14:00:29 +02:00
|
|
|
func (s *Server) CreateUserGrant(ctx context.Context, in *management.UserGrantCreate) (*management.UserGrant, error) {
|
|
|
|
user, err := s.usergrant.AddUserGrant(ctx, userGrantCreateToModel(in))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return usergrantFromModel(user), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) UpdateUserGrant(ctx context.Context, in *management.UserGrantUpdate) (*management.UserGrant, error) {
|
|
|
|
user, err := s.usergrant.ChangeUserGrant(ctx, userGrantUpdateToModel(in))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return usergrantFromModel(user), nil
|
|
|
|
}
|
|
|
|
|
2020-07-08 13:56:37 +02:00
|
|
|
func (s *Server) DeactivateUserGrant(ctx context.Context, in *management.UserGrantID) (*management.UserGrant, error) {
|
2020-05-11 10:16:27 +02:00
|
|
|
user, err := s.usergrant.DeactivateUserGrant(ctx, in.Id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return usergrantFromModel(user), nil
|
2020-03-24 10:14:39 +01:00
|
|
|
}
|
2020-07-08 13:56:37 +02:00
|
|
|
func (s *Server) ReactivateUserGrant(ctx context.Context, in *management.UserGrantID) (*management.UserGrant, error) {
|
2020-05-11 10:16:27 +02:00
|
|
|
user, err := s.usergrant.ReactivateUserGrant(ctx, in.Id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return usergrantFromModel(user), nil
|
|
|
|
}
|
|
|
|
|
2020-07-08 13:56:37 +02:00
|
|
|
func (s *Server) RemoveUserGrant(ctx context.Context, in *management.UserGrantID) (*empty.Empty, error) {
|
2020-05-11 10:16:27 +02:00
|
|
|
err := s.usergrant.RemoveUserGrant(ctx, in.Id)
|
|
|
|
return &empty.Empty{}, err
|
2020-06-19 15:32:03 +02:00
|
|
|
}
|
|
|
|
|
2020-07-08 13:56:37 +02:00
|
|
|
func (s *Server) BulkRemoveUserGrant(ctx context.Context, in *management.UserGrantRemoveBulk) (*empty.Empty, error) {
|
2020-06-19 15:32:03 +02:00
|
|
|
err := s.usergrant.BulkRemoveUserGrant(ctx, userGrantRemoveBulkToModel(in)...)
|
|
|
|
return &empty.Empty{}, err
|
2020-03-24 10:14:39 +01:00
|
|
|
}
|