mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 12:58:00 +00:00
1dd82ab1b7
* Changes added * Reading of events for applications changed. * Proto changed * Tests added * Added more tests. * Struct for Data expanded with additional fields. * refactoring * Changes from review. * Merge in to Master * Changes from review. * fix: generate proto Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
95 lines
3.3 KiB
Go
95 lines
3.3 KiB
Go
package grpc
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
)
|
|
|
|
func (s *Server) SearchApplications(ctx context.Context, in *ApplicationSearchRequest) (*ApplicationSearchResponse, error) {
|
|
response, err := s.project.SearchApplications(ctx, applicationSearchRequestsToModel(in))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return applicationSearchResponseFromModel(response), nil
|
|
}
|
|
|
|
func (s *Server) ApplicationByID(ctx context.Context, in *ApplicationID) (*Application, error) {
|
|
app, err := s.project.ApplicationByID(ctx, in.ProjectId, in.Id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return appFromModel(app), nil
|
|
}
|
|
|
|
func (s *Server) CreateOIDCApplication(ctx context.Context, in *OIDCApplicationCreate) (*Application, error) {
|
|
app, err := s.project.AddApplication(ctx, oidcAppCreateToModel(in))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return appFromModel(app), nil
|
|
}
|
|
func (s *Server) UpdateApplication(ctx context.Context, in *ApplicationUpdate) (*Application, error) {
|
|
app, err := s.project.ChangeApplication(ctx, appUpdateToModel(in))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return appFromModel(app), nil
|
|
}
|
|
func (s *Server) DeactivateApplication(ctx context.Context, in *ApplicationID) (*Application, error) {
|
|
if s.IsZitadel(ctx, in.ProjectId) {
|
|
return nil, errors.ThrowInvalidArgument(nil, "GRPC-LSped", "Zitadel Project Applications should not be deactivated")
|
|
}
|
|
app, err := s.project.DeactivateApplication(ctx, in.ProjectId, in.Id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return appFromModel(app), nil
|
|
}
|
|
func (s *Server) ReactivateApplication(ctx context.Context, in *ApplicationID) (*Application, error) {
|
|
app, err := s.project.ReactivateApplication(ctx, in.ProjectId, in.Id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return appFromModel(app), nil
|
|
}
|
|
|
|
func (s *Server) RemoveApplication(ctx context.Context, in *ApplicationID) (*empty.Empty, error) {
|
|
if s.IsZitadel(ctx, in.ProjectId) {
|
|
return nil, errors.ThrowInvalidArgument(nil, "GRPC-LSpee", "Zitadel Project Applications should not be removed")
|
|
}
|
|
err := s.project.RemoveApplication(ctx, in.ProjectId, in.Id)
|
|
return &empty.Empty{}, err
|
|
}
|
|
|
|
func (s *Server) UpdateApplicationOIDCConfig(ctx context.Context, in *OIDCConfigUpdate) (*OIDCConfig, error) {
|
|
if s.IsZitadel(ctx, in.ProjectId) {
|
|
return nil, errors.ThrowInvalidArgument(nil, "GRPC-LSpee", "Zitadel Project Applications OIdc Config should not be changed")
|
|
}
|
|
config, err := s.project.ChangeOIDCConfig(ctx, oidcConfigUpdateToModel(in))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return oidcConfigFromModel(config), nil
|
|
}
|
|
|
|
func (s *Server) RegenerateOIDCClientSecret(ctx context.Context, in *ApplicationID) (*ClientSecret, error) {
|
|
if s.IsZitadel(ctx, in.ProjectId) {
|
|
return nil, errors.ThrowInvalidArgument(nil, "GRPC-Lps4d", "Zitadel Project Applications OIdc Config should not be changed")
|
|
}
|
|
config, err := s.project.ChangeOIDConfigSecret(ctx, in.ProjectId, in.Id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &ClientSecret{ClientSecret: config.ClientSecretString}, nil
|
|
}
|
|
|
|
func (s *Server) ApplicationChanges(ctx context.Context, changesRequest *ChangeRequest) (*Changes, error) {
|
|
response, err := s.project.ApplicationChanges(ctx, changesRequest.Id, changesRequest.SecId, 0, 0)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return appChangesToResponse(response, changesRequest.GetSequenceOffset(), changesRequest.GetLimit()), nil
|
|
}
|