mirror of
https://github.com/linka-cloud/grpc.git
synced 2024-11-04 18:26:25 +00:00
36 lines
837 B
Go
36 lines
837 B
Go
package service
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/improbable-eng/grpc-web/go/grpcweb"
|
|
)
|
|
|
|
var defaultWebOptions = []grpcweb.Option{
|
|
grpcweb.WithWebsockets(true),
|
|
grpcweb.WithWebsocketOriginFunc(func(req *http.Request) bool {
|
|
return true
|
|
}),
|
|
grpcweb.WithCorsForRegisteredEndpointsOnly(false),
|
|
grpcweb.WithOriginFunc(func(origin string) bool {
|
|
return true
|
|
}),
|
|
grpcweb.WithWebsocketPingInterval(time.Second),
|
|
}
|
|
|
|
func (s *service) grpcWeb(opts ...grpcweb.Option) error {
|
|
if !s.opts.grpcWeb {
|
|
return nil
|
|
}
|
|
h := grpcweb.WrapServer(s.server, append(defaultWebOptions, opts...)...)
|
|
for _, v := range grpcweb.ListGRPCResources(s.server) {
|
|
if s.opts.grpcWebPrefix != "" {
|
|
s.opts.mux.Handle(s.opts.grpcWebPrefix+v, http.StripPrefix(s.opts.grpcWebPrefix, h))
|
|
} else {
|
|
s.opts.mux.Handle(v, h)
|
|
}
|
|
}
|
|
return nil
|
|
}
|