2022-04-21 10:37:39 +00:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"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"
|
2022-04-21 10:37:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
systemAPI = "System-API"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ system.SystemServiceServer = (*Server)(nil)
|
|
|
|
|
|
|
|
type Server struct {
|
|
|
|
system.UnimplementedSystemServiceServer
|
2022-05-25 12:15:13 +00:00
|
|
|
database string
|
2022-04-21 10:37:39 +00:00
|
|
|
command *command.Commands
|
|
|
|
query *query.Queries
|
|
|
|
administrator repository.AdministratorRepository
|
2022-09-23 12:08:10 +00:00
|
|
|
defaultInstance command.InstanceSetup
|
|
|
|
externalDomain string
|
2022-04-21 10:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Repository eventsourcing.Config
|
|
|
|
}
|
|
|
|
|
2022-09-23 12:08:10 +00:00
|
|
|
func CreateServer(
|
|
|
|
command *command.Commands,
|
2022-04-21 10:37:39 +00:00
|
|
|
query *query.Queries,
|
|
|
|
repo repository.Repository,
|
2022-05-25 12:15:13 +00:00
|
|
|
database string,
|
2022-04-21 10:37:39 +00:00
|
|
|
defaultInstance command.InstanceSetup,
|
2022-09-23 12:08:10 +00:00
|
|
|
externalDomain string,
|
2022-04-28 08:30:41 +00:00
|
|
|
) *Server {
|
2022-04-21 10:37:39 +00:00
|
|
|
return &Server{
|
|
|
|
command: command,
|
|
|
|
query: query,
|
|
|
|
administrator: repo,
|
2022-05-25 12:15:13 +00:00
|
|
|
database: database,
|
2022-09-23 12:08:10 +00:00
|
|
|
defaultInstance: defaultInstance,
|
|
|
|
externalDomain: externalDomain,
|
2022-04-21 10:37:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) RegisterServer(grpcServer *grpc.Server) {
|
|
|
|
system.RegisterSystemServiceServer(grpcServer, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) AppName() string {
|
|
|
|
return systemAPI
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) MethodPrefix() string {
|
2023-04-25 07:02:29 +00:00
|
|
|
return system.SystemService_ServiceDesc.ServiceName
|
2022-04-21 10:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) AuthMethods() authz.MethodMapping {
|
|
|
|
return system.SystemService_AuthMethods
|
|
|
|
}
|
|
|
|
|
2023-04-11 13:37:42 +00:00
|
|
|
func (s *Server) RegisterGateway() server.RegisterGatewayFunc {
|
|
|
|
return system.RegisterSystemServiceHandler
|
2022-04-21 10:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) GatewayPathPrefix() string {
|
|
|
|
return "/system/v1"
|
|
|
|
}
|