mirror of
https://github.com/linka-cloud/grpc.git
synced 2024-11-04 18:26:25 +00:00
31 lines
777 B
Go
31 lines
777 B
Go
package service
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
|
|
"github.com/tmc/grpc-websocket-proxy/wsproxy"
|
|
)
|
|
|
|
var defaultGatewayOptions = []runtime.ServeMuxOption{
|
|
runtime.WithIncomingHeaderMatcher(func(s string) (string, bool) {
|
|
return s, true
|
|
}),
|
|
}
|
|
|
|
func (s *service) gateway(opts ...runtime.ServeMuxOption) error {
|
|
if !s.opts.Gateway() {
|
|
return nil
|
|
}
|
|
mux := runtime.NewServeMux(append(defaultGatewayOptions, opts...)...)
|
|
if err := s.opts.gateway(s.opts.ctx, mux, s.inproc); err != nil {
|
|
return err
|
|
}
|
|
if s.opts.gatewayPrefix != "" {
|
|
s.opts.mux.Handle(s.opts.gatewayPrefix+"/", http.StripPrefix(s.opts.gatewayPrefix, wsproxy.WebsocketProxy(mux)))
|
|
} else {
|
|
s.opts.mux.Handle("/", wsproxy.WebsocketProxy(mux))
|
|
}
|
|
return nil
|
|
}
|