mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
2089992d75
* feat(crypto): use passwap for machine and app secrets * fix command package tests * add hash generator command test * naming convention, fix query tests * rename PasswordHasher and cleanup start commands * add reducer tests * fix intergration tests, cleanup old config * add app secret unit tests * solve setup panics * fix push of updated events * add missing event translations * update documentation * solve linter errors * remove nolint:SA1019 as it doesn't seem to help anyway * add nolint to deprecated filter usage * update users migration version * remove unused ClientSecret from APIConfigChangedEvent --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
78 lines
1.9 KiB
Go
78 lines
1.9 KiB
Go
package management
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/assets"
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
"github.com/zitadel/zitadel/internal/api/grpc/server"
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
"github.com/zitadel/zitadel/internal/config/systemdefaults"
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
"github.com/zitadel/zitadel/pkg/grpc/management"
|
|
)
|
|
|
|
const (
|
|
mgmtName = "Management-API"
|
|
)
|
|
|
|
var _ management.ManagementServiceServer = (*Server)(nil)
|
|
|
|
type Server struct {
|
|
management.UnimplementedManagementServiceServer
|
|
command *command.Commands
|
|
query *query.Queries
|
|
systemDefaults systemdefaults.SystemDefaults
|
|
assetAPIPrefix func(context.Context) string
|
|
userCodeAlg crypto.EncryptionAlgorithm
|
|
externalSecure bool
|
|
}
|
|
|
|
func CreateServer(
|
|
command *command.Commands,
|
|
query *query.Queries,
|
|
sd systemdefaults.SystemDefaults,
|
|
userCodeAlg crypto.EncryptionAlgorithm,
|
|
externalSecure bool,
|
|
) *Server {
|
|
return &Server{
|
|
command: command,
|
|
query: query,
|
|
systemDefaults: sd,
|
|
assetAPIPrefix: assets.AssetAPI(externalSecure),
|
|
userCodeAlg: userCodeAlg,
|
|
externalSecure: externalSecure,
|
|
}
|
|
}
|
|
|
|
func (s *Server) RegisterServer(grpcServer *grpc.Server) {
|
|
management.RegisterManagementServiceServer(grpcServer, s)
|
|
}
|
|
|
|
func (s *Server) AppName() string {
|
|
return mgmtName
|
|
}
|
|
|
|
func (s *Server) MethodPrefix() string {
|
|
return management.ManagementService_ServiceDesc.ServiceName
|
|
}
|
|
|
|
func (s *Server) AuthMethods() authz.MethodMapping {
|
|
return management.ManagementService_AuthMethods
|
|
}
|
|
|
|
func (s *Server) RegisterGateway() server.RegisterGatewayFunc {
|
|
return management.RegisterManagementServiceHandler
|
|
}
|
|
|
|
func (s *Server) GatewayPathPrefix() string {
|
|
return GatewayPathPrefix()
|
|
}
|
|
|
|
func GatewayPathPrefix() string {
|
|
return "/management/v1"
|
|
}
|