2020-03-24 10:20:45 +00:00
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
2020-03-25 10:17:38 +00:00
|
|
|
grpc_util "github.com/caos/zitadel/internal/api/grpc"
|
2020-03-24 15:16:05 +00:00
|
|
|
"github.com/caos/zitadel/internal/api/grpc/server"
|
2020-03-24 10:20:45 +00:00
|
|
|
"github.com/grpc-ecosystem/grpc-gateway/runtime"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Gateway struct {
|
|
|
|
grpcEndpoint string
|
|
|
|
port string
|
|
|
|
cutomHeaders []string
|
|
|
|
}
|
|
|
|
|
2020-03-30 15:51:25 +00:00
|
|
|
func StartGateway(conf grpc_util.GatewayConfig) *Gateway {
|
2020-03-24 10:20:45 +00:00
|
|
|
return &Gateway{
|
|
|
|
grpcEndpoint: conf.GRPCEndpoint,
|
|
|
|
port: conf.Port,
|
|
|
|
cutomHeaders: conf.CustomHeaders,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gw *Gateway) Gateway() server.GatewayFunc {
|
|
|
|
return RegisterAdminServiceHandlerFromEndpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gw *Gateway) GRPCEndpoint() string {
|
|
|
|
return ":" + gw.grpcEndpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gw *Gateway) GatewayPort() string {
|
|
|
|
return gw.port
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gw *Gateway) GatewayServeMuxOptions() []runtime.ServeMuxOption {
|
|
|
|
return []runtime.ServeMuxOption{
|
|
|
|
runtime.WithIncomingHeaderMatcher(func(header string) (string, bool) {
|
|
|
|
for _, customHeader := range gw.cutomHeaders {
|
|
|
|
if strings.HasPrefix(strings.ToLower(header), customHeader) {
|
|
|
|
return header, true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return header, false
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|