-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
55 lines (45 loc) · 1.37 KB
/
config.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package client
import "github.com/pkg/errors"
// ConnectionConfig contains data required to establish grpc connection to a peer or orderer
type ConnectionConfig struct {
Address string
TlsRootCertFile string
ServerNameOverride string
}
// ClientConfig will be updated after the CR for token client config is merged, where the config data
// will be populated based on a config file.
type ClientConfig struct {
ChannelId string
MspDir string
MspId string
TlsEnabled bool
OrdererCfg ConnectionConfig
CommitPeerCfg ConnectionConfig
ProverPeerCfg ConnectionConfig
}
func ValidateClientConfig(config *ClientConfig) error {
if config == nil {
return errors.New("client config is nil")
}
if config.ChannelId == "" {
return errors.New("missing channelId")
}
if config.OrdererCfg.Address == "" {
return errors.New("missing orderer address")
}
if config.TlsEnabled && config.OrdererCfg.TlsRootCertFile == "" {
return errors.New("missing orderer TlsRootCertFile")
}
if config.OrdererCfg.Address == "" {
return errors.New("missing commit peer address")
}
if config.TlsEnabled && config.OrdererCfg.TlsRootCertFile == "" {
return errors.New("missing commit peer TlsRootCertFile")
}
// TODO: add prover peer validation in a different CR
return nil
}