forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
64 lines (55 loc) · 1.44 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package comm
import (
"time"
"github.com/hyperledger/fabric/common/crypto/tlsgen"
"github.com/hyperledger/fabric/common/util"
"github.com/hyperledger/fabric/internal/pkg/comm"
"github.com/pkg/errors"
"google.golang.org/grpc"
)
const defaultTimeout = time.Second * 5
// Client deals with TLS connections
// to the discovery server
type Client struct {
TLSCertHash []byte
*comm.GRPCClient
}
// NewClient creates a new comm client out of the given configuration
func NewClient(conf Config) (*Client, error) {
if conf.Timeout == time.Duration(0) {
conf.Timeout = defaultTimeout
}
sop, err := conf.ToSecureOptions(newSelfSignedTLSCert)
if err != nil {
return nil, errors.WithStack(err)
}
cl, err := comm.NewGRPCClient(comm.ClientConfig{
SecOpts: sop,
Timeout: conf.Timeout,
})
if err != nil {
return nil, err
}
return &Client{GRPCClient: cl, TLSCertHash: util.ComputeSHA256(sop.Certificate)}, nil
}
// NewDialer creates a new dialer from the given endpoint
func (c *Client) NewDialer(endpoint string) func() (*grpc.ClientConn, error) {
return func() (*grpc.ClientConn, error) {
conn, err := c.NewConnection(endpoint)
if err != nil {
return nil, errors.WithStack(err)
}
return conn, nil
}
}
func newSelfSignedTLSCert() (*tlsgen.CertKeyPair, error) {
ca, err := tlsgen.NewCA()
if err != nil {
return nil, err
}
return ca.NewClientCertKeyPair()
}