mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-02 21:00:54 +00:00

* feat: add default language to eventstore * feat: add secret generator configs events * feat: tests * feat: secret generators in eventstore * feat: secret generators in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * feat: smtp config in eventstore * fix: migrations * fix migration version * fix test * feat: change secret generator type to enum * feat: change smtp attribute names * feat: change smtp attribute names * feat: remove engryption algorithms from command side * feat: remove engryption algorithms from command side * feat: smtp config * feat: smtp config * format smtp from header Co-authored-by: Livio Amstutz <livio.a@gmail.com>
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
package auth
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/caos/zitadel/internal/api/authz"
|
|
"github.com/caos/zitadel/internal/api/grpc/server"
|
|
"github.com/caos/zitadel/internal/auth/repository"
|
|
"github.com/caos/zitadel/internal/auth/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/command"
|
|
"github.com/caos/zitadel/internal/config/systemdefaults"
|
|
"github.com/caos/zitadel/internal/query"
|
|
"github.com/caos/zitadel/pkg/grpc/auth"
|
|
)
|
|
|
|
var _ auth.AuthServiceServer = (*Server)(nil)
|
|
|
|
const (
|
|
authName = "Auth-API"
|
|
)
|
|
|
|
type Server struct {
|
|
auth.UnimplementedAuthServiceServer
|
|
command *command.Commands
|
|
query *query.Queries
|
|
repo repository.Repository
|
|
defaults systemdefaults.SystemDefaults
|
|
assetsAPIDomain string
|
|
UserCodeAlg crypto.EncryptionAlgorithm
|
|
}
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
}
|
|
|
|
func CreateServer(command *command.Commands, query *query.Queries, authRepo repository.Repository, defaults systemdefaults.SystemDefaults, assetsAPIDomain string, userCrypto *crypto.AESCrypto) *Server {
|
|
return &Server{
|
|
command: command,
|
|
query: query,
|
|
repo: authRepo,
|
|
defaults: defaults,
|
|
assetsAPIDomain: assetsAPIDomain,
|
|
UserCodeAlg: userCrypto,
|
|
}
|
|
}
|
|
|
|
func (s *Server) RegisterServer(grpcServer *grpc.Server) {
|
|
auth.RegisterAuthServiceServer(grpcServer, s)
|
|
}
|
|
|
|
func (s *Server) AppName() string {
|
|
return authName
|
|
}
|
|
|
|
func (s *Server) MethodPrefix() string {
|
|
return auth.AuthService_MethodPrefix
|
|
}
|
|
|
|
func (s *Server) AuthMethods() authz.MethodMapping {
|
|
return auth.AuthService_AuthMethods
|
|
}
|
|
|
|
func (s *Server) RegisterGateway() server.GatewayFunc {
|
|
return auth.RegisterAuthServiceHandlerFromEndpoint
|
|
}
|
|
|
|
func (s *Server) GatewayPathPrefix() string {
|
|
return "/auth/v1"
|
|
}
|