-
Notifications
You must be signed in to change notification settings - Fork 0
/
status.go
72 lines (63 loc) · 1.95 KB
/
status.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package node
import (
"fmt"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/common/crypto"
"github.com/hyperledger/fabric/peer/common"
common2 "github.com/hyperledger/fabric/protos/common"
pb "github.com/hyperledger/fabric/protos/peer"
"github.com/hyperledger/fabric/protos/utils"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"golang.org/x/net/context"
)
func statusCmd() *cobra.Command {
return nodeStatusCmd
}
var nodeStatusCmd = &cobra.Command{
Use: "status",
Short: "Returns status of the node.",
Long: `Returns the status of the running node.`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 0 {
return fmt.Errorf("trailing args detected: %s", args)
}
// Parsing of the command line is done so silence cmd usage
cmd.SilenceUsage = true
return status()
},
}
func status() (err error) {
adminClient, err := common.GetAdminClient()
if err != nil {
logger.Warningf("%s", err)
fmt.Println(&pb.ServerStatus{Status: pb.ServerStatus_UNKNOWN})
return err
}
signer, err := common.GetDefaultSignerFnc()
if err != nil {
fmt.Println(&pb.ServerStatus{Status: pb.ServerStatus_UNKNOWN})
return errors.Errorf("failed obtaining default signer: %v", err)
}
localSigner := crypto.NewSignatureHeaderCreator(signer)
wrapEnv := func(msg proto.Message) *common2.Envelope {
env, err := utils.CreateSignedEnvelope(common2.HeaderType_PEER_ADMIN_OPERATION, "", localSigner, msg, 0, 0)
if err != nil {
logger.Panicf("Failed signing: %v", err)
}
return env
}
status, err := adminClient.GetStatus(context.Background(), wrapEnv(&pb.AdminOperation{}))
if err != nil {
logger.Infof("Error trying to get status from local peer: %s", err)
err = fmt.Errorf("Error trying to connect to local peer: %s", err)
fmt.Println(&pb.ServerStatus{Status: pb.ServerStatus_UNKNOWN})
return err
}
fmt.Println(status)
return nil
}