forked from tw-bc-group/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
79 lines (66 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package discovery
import (
"encoding/json"
"fmt"
"io"
"github.com/hyperledger/fabric/cmd/common"
"github.com/hyperledger/fabric/discovery/client"
"github.com/pkg/errors"
)
// NewConfigCmd creates a new ConfigCmd
func NewConfigCmd(stub Stub, parser ResponseParser) *ConfigCmd {
return &ConfigCmd{
stub: stub,
parser: parser,
}
}
// ConfigCmd executes a command that retrieves config
type ConfigCmd struct {
stub Stub
server *string
channel *string
parser ResponseParser
}
// SetServer sets the server of the ConfigCmd
func (pc *ConfigCmd) SetServer(server *string) {
pc.server = server
}
// SetChannel sets the channel of the ConfigCmd
func (pc *ConfigCmd) SetChannel(channel *string) {
pc.channel = channel
}
// Execute executes the command
func (pc *ConfigCmd) Execute(conf common.Config) error {
if pc.server == nil || *pc.server == "" {
return errors.New("no server specified")
}
if pc.channel == nil || *pc.channel == "" {
return errors.New("no channel specified")
}
server := *pc.server
channel := *pc.channel
req := discovery.NewRequest().OfChannel(channel).AddConfigQuery()
res, err := pc.stub.Send(server, conf, req)
if err != nil {
return err
}
return pc.parser.ParseResponse(channel, res)
}
// ConfigResponseParser parses config responses
type ConfigResponseParser struct {
io.Writer
}
// ParseResponse parses the given response for the given channel
func (parser *ConfigResponseParser) ParseResponse(channel string, res ServiceResponse) error {
chanConf, err := res.ForChannel(channel).Config()
if err != nil {
return err
}
jsonBytes, _ := json.MarshalIndent(chanConf, "", "\t")
fmt.Fprintln(parser.Writer, string(jsonBytes))
return nil
}