-
Notifications
You must be signed in to change notification settings - Fork 1
/
policy.go
33 lines (26 loc) · 977 Bytes
/
policy.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package manager
import (
"github.com/hyperledger/fabric/token/identity"
"github.com/pkg/errors"
)
// AllIssuingValidator allows all members of a channel to issue new tokens.
type AllIssuingValidator struct {
Deserializer identity.Deserializer
}
// Validate returns no error if the passed creator can issue tokens of the passed type,, an error otherwise.
func (p *AllIssuingValidator) Validate(creator identity.PublicInfo, tokenType string) error {
// Deserialize identity
identity, err := p.Deserializer.DeserializeIdentity(creator.Public())
if err != nil {
return errors.Wrapf(err, "identity [0x%x] cannot be deserialised", creator.Public())
}
// Check identity validity - in this simple policy, all valid identities are issuers.
if err := identity.Validate(); err != nil {
return errors.Wrapf(err, "identity [0x%x] cannot be validated", creator.Public())
}
return nil
}