mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
37 lines
759 B
Go
37 lines
759 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"crypto/tls"
|
||
|
"fmt"
|
||
|
"net/url"
|
||
|
|
||
|
"google.golang.org/grpc"
|
||
|
"google.golang.org/grpc/credentials"
|
||
|
)
|
||
|
|
||
|
// NewGrpcConnection parses a GRPC endpoint and creates a connection to it
|
||
|
func NewGrpcConnection(endpoint string) (*grpc.ClientConn, error) {
|
||
|
grpcUrl, err := url.Parse(endpoint)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
var secureOpt grpc.DialOption
|
||
|
switch grpcUrl.Scheme {
|
||
|
case "http":
|
||
|
secureOpt = grpc.WithInsecure()
|
||
|
case "https":
|
||
|
creds := credentials.NewTLS(&tls.Config{})
|
||
|
secureOpt = grpc.WithTransportCredentials(creds)
|
||
|
default:
|
||
|
return nil, fmt.Errorf("unknown grpc url scheme: %s", grpcUrl.Scheme)
|
||
|
}
|
||
|
|
||
|
grpcConn, err := grpc.Dial(grpcUrl.Host, secureOpt)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return grpcConn, nil
|
||
|
}
|