mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
a4763b1e4c
* features * features * features * fix json tags * add features handler to auth * mocks for tests * add setup step * fixes * add featurelist to auth api * grandfather state and typos * typo * merge new-eventstore * fix login policy tests * label policy in features * audit log retention
71 lines
1.7 KiB
Go
71 lines
1.7 KiB
Go
package admin
|
|
|
|
import (
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/caos/zitadel/internal/admin/repository"
|
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/api/authz"
|
|
"github.com/caos/zitadel/internal/api/grpc/server"
|
|
"github.com/caos/zitadel/internal/command"
|
|
"github.com/caos/zitadel/internal/query"
|
|
"github.com/caos/zitadel/pkg/grpc/admin"
|
|
)
|
|
|
|
const (
|
|
adminName = "Admin-API"
|
|
)
|
|
|
|
var _ admin.AdminServiceServer = (*Server)(nil)
|
|
|
|
type Server struct {
|
|
admin.UnimplementedAdminServiceServer
|
|
command *command.Commands
|
|
query *query.Queries
|
|
org repository.OrgRepository
|
|
iam repository.IAMRepository
|
|
administrator repository.AdministratorRepository
|
|
repo repository.Repository
|
|
features repository.FeaturesRepository
|
|
}
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
}
|
|
|
|
func CreateServer(command *command.Commands, query *query.Queries, repo repository.Repository) *Server {
|
|
return &Server{
|
|
command: command,
|
|
query: query,
|
|
org: repo,
|
|
iam: repo,
|
|
administrator: repo,
|
|
repo: repo,
|
|
features: repo,
|
|
}
|
|
}
|
|
|
|
func (s *Server) RegisterServer(grpcServer *grpc.Server) {
|
|
admin.RegisterAdminServiceServer(grpcServer, s)
|
|
}
|
|
|
|
func (s *Server) AppName() string {
|
|
return adminName
|
|
}
|
|
|
|
func (s *Server) MethodPrefix() string {
|
|
return admin.AdminService_MethodPrefix
|
|
}
|
|
|
|
func (s *Server) AuthMethods() authz.MethodMapping {
|
|
return admin.AdminService_AuthMethods
|
|
}
|
|
|
|
func (s *Server) RegisterGateway() server.GatewayFunc {
|
|
return admin.RegisterAdminServiceHandlerFromEndpoint
|
|
}
|
|
|
|
func (s *Server) GatewayPathPrefix() string {
|
|
return "/admin/v1"
|
|
}
|