-
Notifications
You must be signed in to change notification settings - Fork 0
/
organization.go
93 lines (71 loc) · 2.11 KB
/
organization.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package channelconfig
import (
"fmt"
"github.com/hyperledger/fabric/msp"
cb "github.com/hyperledger/fabric/protos/common"
mspprotos "github.com/hyperledger/fabric/protos/msp"
"github.com/pkg/errors"
)
const (
// MSPKey is the key for the MSP definition in orderer groups
MSPKey = "MSP"
)
// OrganizationProtos are used to deserialize the organization config
type OrganizationProtos struct {
MSP *mspprotos.MSPConfig
}
// OrganizationConfig stores the configuration for an organization
type OrganizationConfig struct {
protos *OrganizationProtos
mspConfigHandler *MSPConfigHandler
msp msp.MSP
mspID string
name string
}
// NewOrganizationConfig creates a new config for an organization
func NewOrganizationConfig(name string, orgGroup *cb.ConfigGroup, mspConfigHandler *MSPConfigHandler) (*OrganizationConfig, error) {
if len(orgGroup.Groups) > 0 {
return nil, fmt.Errorf("organizations do not support sub-groups")
}
oc := &OrganizationConfig{
protos: &OrganizationProtos{},
name: name,
mspConfigHandler: mspConfigHandler,
}
if err := DeserializeProtoValuesFromGroup(orgGroup, oc.protos); err != nil {
return nil, errors.Wrap(err, "failed to deserialize values")
}
if err := oc.Validate(); err != nil {
return nil, err
}
return oc, nil
}
// Name returns the name this org is referred to in config
func (oc *OrganizationConfig) Name() string {
return oc.name
}
// MSPID returns the MSP ID associated with this org
func (oc *OrganizationConfig) MSPID() string {
return oc.mspID
}
// Validate returns whether the configuration is valid
func (oc *OrganizationConfig) Validate() error {
return oc.validateMSP()
}
func (oc *OrganizationConfig) validateMSP() error {
var err error
logger.Debugf("Setting up MSP for org %s", oc.name)
oc.msp, err = oc.mspConfigHandler.ProposeMSP(oc.protos.MSP)
if err != nil {
return err
}
oc.mspID, _ = oc.msp.GetIdentifier()
if oc.mspID == "" {
return fmt.Errorf("MSP for org %s has empty MSP ID", oc.name)
}
return nil
}