mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
7dfa1925cc
* feat: add new org scope * change default of UserLoginMustBeDomain to false * return resource owner claims * fix: use email style for first user * fix: ensure email style for default users (backwards compatibility) * change to external domain (as it was before UserLoginMustBeDomain change) * update e2e tests to use email style usernames * document new scope * lint e2e Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com>
77 lines
1.7 KiB
Go
77 lines
1.7 KiB
Go
package system
|
|
|
|
import (
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/zitadel/zitadel/internal/admin/repository"
|
|
|
|
"github.com/zitadel/zitadel/internal/admin/repository/eventsourcing"
|
|
"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/query"
|
|
"github.com/zitadel/zitadel/pkg/grpc/system"
|
|
)
|
|
|
|
const (
|
|
systemAPI = "System-API"
|
|
)
|
|
|
|
var _ system.SystemServiceServer = (*Server)(nil)
|
|
|
|
type Server struct {
|
|
system.UnimplementedSystemServiceServer
|
|
database string
|
|
command *command.Commands
|
|
query *query.Queries
|
|
administrator repository.AdministratorRepository
|
|
defaultInstance command.InstanceSetup
|
|
externalDomain string
|
|
}
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
}
|
|
|
|
func CreateServer(
|
|
command *command.Commands,
|
|
query *query.Queries,
|
|
repo repository.Repository,
|
|
database string,
|
|
defaultInstance command.InstanceSetup,
|
|
externalDomain string,
|
|
) *Server {
|
|
return &Server{
|
|
command: command,
|
|
query: query,
|
|
administrator: repo,
|
|
database: database,
|
|
defaultInstance: defaultInstance,
|
|
externalDomain: externalDomain,
|
|
}
|
|
}
|
|
|
|
func (s *Server) RegisterServer(grpcServer *grpc.Server) {
|
|
system.RegisterSystemServiceServer(grpcServer, s)
|
|
}
|
|
|
|
func (s *Server) AppName() string {
|
|
return systemAPI
|
|
}
|
|
|
|
func (s *Server) MethodPrefix() string {
|
|
return system.SystemService_MethodPrefix
|
|
}
|
|
|
|
func (s *Server) AuthMethods() authz.MethodMapping {
|
|
return system.SystemService_AuthMethods
|
|
}
|
|
|
|
func (s *Server) RegisterGateway() server.GatewayFunc {
|
|
return system.RegisterSystemServiceHandlerFromEndpoint
|
|
}
|
|
|
|
func (s *Server) GatewayPathPrefix() string {
|
|
return "/system/v1"
|
|
}
|