-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package grpc | ||
|
||
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 | ||
} |