2023-04-11 13:37:42 +00:00
|
|
|
package session
|
|
|
|
|
|
|
|
import (
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/grpc/server"
|
|
|
|
"github.com/zitadel/zitadel/internal/command"
|
2023-05-05 15:34:53 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
2023-04-11 13:37:42 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/query"
|
2023-05-05 15:34:53 +00:00
|
|
|
session "github.com/zitadel/zitadel/pkg/grpc/session/v2alpha"
|
2023-04-11 13:37:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ session.SessionServiceServer = (*Server)(nil)
|
|
|
|
|
|
|
|
type Server struct {
|
|
|
|
session.UnimplementedSessionServiceServer
|
2023-05-05 15:34:53 +00:00
|
|
|
command *command.Commands
|
|
|
|
query *query.Queries
|
|
|
|
checkPermission domain.PermissionCheck
|
2023-04-11 13:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct{}
|
|
|
|
|
|
|
|
func CreateServer(
|
|
|
|
command *command.Commands,
|
|
|
|
query *query.Queries,
|
2023-05-05 15:34:53 +00:00
|
|
|
checkPermission domain.PermissionCheck,
|
2023-04-11 13:37:42 +00:00
|
|
|
) *Server {
|
|
|
|
return &Server{
|
2023-05-05 15:34:53 +00:00
|
|
|
command: command,
|
|
|
|
query: query,
|
|
|
|
checkPermission: checkPermission,
|
2023-04-11 13:37:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) RegisterServer(grpcServer *grpc.Server) {
|
|
|
|
session.RegisterSessionServiceServer(grpcServer, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) AppName() string {
|
|
|
|
return session.SessionService_ServiceDesc.ServiceName
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) MethodPrefix() string {
|
|
|
|
return session.SessionService_ServiceDesc.ServiceName
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) AuthMethods() authz.MethodMapping {
|
|
|
|
return session.SessionService_AuthMethods
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) RegisterGateway() server.RegisterGatewayFunc {
|
|
|
|
return session.RegisterSessionServiceHandler
|
|
|
|
}
|