mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
e87fca28e7
* feat: check if zitadel project is changed * feat: check if zitadel project is changed
90 lines
3.2 KiB
Go
90 lines
3.2 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) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-due45", "Not implemented")
|
|
}
|