zitadel/internal/api/grpc/auth/gateway.go

51 lines
1.1 KiB
Go
Raw Normal View History

package auth
2020-03-24 10:20:45 +00:00
import (
"strings"
2020-03-25 10:17:38 +00:00
"github.com/grpc-ecosystem/grpc-gateway/runtime"
grpc_util "github.com/caos/zitadel/internal/api/grpc"
"github.com/caos/zitadel/internal/api/grpc/server"
"github.com/caos/zitadel/pkg/grpc/auth"
2020-03-25 10:17:38 +00:00
)
2020-03-24 10:20:45 +00:00
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 auth.RegisterAuthServiceHandlerFromEndpoint
2020-03-24 10:20:45 +00:00
}
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 runtime.DefaultHeaderMatcher(header)
2020-03-24 10:20:45 +00:00
}),
}
}