mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
5463244376
* enable overwrite of adminUser fields in defaults.yaml * create schema and table * cli: create keys * cli: create keys * read encryptionkey from db * merge v2 * file names * cleanup defaults.yaml * remove custom errors * load encryptionKeys on start * cleanup * fix merge * update system defaults * fix error message
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
package auth
|
|
|
|
import (
|
|
"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/crypto"
|
|
"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,
|
|
userCodeAlg crypto.EncryptionAlgorithm,
|
|
) *Server {
|
|
return &Server{
|
|
command: command,
|
|
query: query,
|
|
repo: authRepo,
|
|
defaults: defaults,
|
|
assetsAPIDomain: assetsAPIDomain,
|
|
userCodeAlg: userCodeAlg,
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|