-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-2324] Add reader/writer/admin defaults
https://jira.hyperledger.org/browse/FAB-2324 This CR adds default reader/writer/admin policies to the dynamically generated gensis block. There are currently no consumers of these policies, but will be added later. Change-Id: I000220feb9ff1bd806a724b77ea9dcf62f5aa294 Signed-off-by: Jason Yellick <jyellick@us.ibm.com>
- Loading branch information
Jason Yellick
committed
Feb 17, 2017
1 parent
018d888
commit a9ad961
Showing
2 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
Copyright IBM Corp. 2016 All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package policies | ||
|
||
import ( | ||
cb "github.com/hyperledger/fabric/protos/common" | ||
"github.com/hyperledger/fabric/protos/utils" | ||
) | ||
|
||
// TemplateImplicitMetaPolicy creates a policy at the specified path with the given policyName | ||
// It utilizes the policyName for the subPolicyName as well, as this is the standard usage pattern | ||
func TemplateImplicitMetaPolicy(path []string, policyName string, rule cb.ImplicitMetaPolicy_Rule) *cb.ConfigGroup { | ||
root := cb.NewConfigGroup() | ||
group := root | ||
for _, element := range path { | ||
group.Groups[element] = cb.NewConfigGroup() | ||
group = group.Groups[element] | ||
} | ||
|
||
group.Policies[policyName] = &cb.ConfigPolicy{ | ||
Policy: &cb.Policy{ | ||
Type: int32(cb.Policy_IMPLICIT_META), | ||
Policy: utils.MarshalOrPanic(&cb.ImplicitMetaPolicy{ | ||
Rule: rule, | ||
SubPolicy: policyName, | ||
}), | ||
}, | ||
} | ||
return root | ||
} | ||
|
||
// TempateImplicitMetaAnyPolicy returns TemplateImplicitMetaPolicy with cb.ImplicitMetaPolicy_ANY as the rule | ||
func TemplateImplicitMetaAnyPolicy(path []string, policyName string) *cb.ConfigGroup { | ||
return TemplateImplicitMetaPolicy(path, policyName, cb.ImplicitMetaPolicy_ANY) | ||
} | ||
|
||
// TempateImplicitMetaAnyPolicy returns TemplateImplicitMetaPolicy with cb.ImplicitMetaPolicy_ALL as the rule | ||
func TemplateImplicitMetaAllPolicy(path []string, policyName string) *cb.ConfigGroup { | ||
return TemplateImplicitMetaPolicy(path, policyName, cb.ImplicitMetaPolicy_ALL) | ||
} | ||
|
||
// TempateImplicitMetaAnyPolicy returns TemplateImplicitMetaPolicy with cb.ImplicitMetaPolicy_MAJORITY as the rule | ||
func TemplateImplicitMetaMajorityPolicy(path []string, policyName string) *cb.ConfigGroup { | ||
return TemplateImplicitMetaPolicy(path, policyName, cb.ImplicitMetaPolicy_MAJORITY) | ||
} |