generated from TrueCloudLab/basic
Anton Nikiforov
b82544b0fe
All checks were successful
DCO action / DCO (pull_request) Successful in 1m5s
Tests and linters / Tests (1.21) (pull_request) Successful in 1m14s
Tests and linters / Tests (1.20) (pull_request) Successful in 1m32s
Tests and linters / Tests with -race (pull_request) Successful in 1m34s
Tests and linters / Staticcheck (pull_request) Successful in 1m34s
Tests and linters / Lint (pull_request) Successful in 2m23s
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
140 lines
3.8 KiB
Go
140 lines
3.8 KiB
Go
package policy
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"math/big"
|
|
"strings"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-contract/policy"
|
|
client "git.frostfs.info/TrueCloudLab/frostfs-contract/rpcclient/policy"
|
|
"git.frostfs.info/TrueCloudLab/policy-engine/pkg/chain"
|
|
"git.frostfs.info/TrueCloudLab/policy-engine/pkg/engine"
|
|
"github.com/nspcc-dev/neo-go/pkg/rpcclient/actor"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
"github.com/nspcc-dev/neo-go/pkg/wallet"
|
|
)
|
|
|
|
var (
|
|
ErrEmptyChainID = errors.New("chain id is not set")
|
|
|
|
ErrEngineTargetTypeUnsupported = errors.New("this target type is not supported yet")
|
|
)
|
|
|
|
// ContractStorage is the interface to manage chain rules within the policy contract.
|
|
type ContractStorage struct {
|
|
contractInterface *client.Contract
|
|
}
|
|
|
|
var _ engine.MorphRuleChainStorage = (*ContractStorage)(nil)
|
|
|
|
func NewContractStorage(actor client.Actor, contract util.Uint160) *ContractStorage {
|
|
return &ContractStorage{
|
|
contractInterface: client.New(actor, contract),
|
|
}
|
|
}
|
|
|
|
func NewContractStorageWithSimpleActor(rpcActor actor.RPCActor, acc *wallet.Account, contract util.Uint160) (*ContractStorage, error) {
|
|
act, err := actor.NewSimple(rpcActor, acc)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create simple actor: %w", err)
|
|
}
|
|
return NewContractStorage(act, contract), nil
|
|
}
|
|
|
|
func (s *ContractStorage) AddMorphRuleChain(name chain.Name, target engine.Target, c *chain.Chain) (txHash util.Uint256, vub uint32, err error) {
|
|
if c.ID == "" {
|
|
err = ErrEmptyChainID
|
|
return
|
|
}
|
|
|
|
var kind policy.Kind
|
|
kind, err = policyKind(target.Type)
|
|
if err != nil {
|
|
return
|
|
}
|
|
fullName := prefixedChainName(name, c.ID)
|
|
|
|
txHash, vub, err = s.contractInterface.AddChain(big.NewInt(int64(kind)), target.Name, fullName, c.Bytes())
|
|
return
|
|
}
|
|
|
|
func (s *ContractStorage) RemoveMorphRuleChain(name chain.Name, target engine.Target, chainID chain.ID) (txHash util.Uint256, vub uint32, err error) {
|
|
if chainID == "" {
|
|
err = ErrEmptyChainID
|
|
return
|
|
}
|
|
|
|
var kind policy.Kind
|
|
kind, err = policyKind(target.Type)
|
|
if err != nil {
|
|
return
|
|
}
|
|
fullName := prefixedChainName(name, chainID)
|
|
|
|
txHash, vub, err = s.contractInterface.RemoveChain(big.NewInt(int64(kind)), target.Name, fullName)
|
|
return
|
|
}
|
|
|
|
func (s *ContractStorage) ListMorphRuleChains(name chain.Name, target engine.Target) ([]*chain.Chain, error) {
|
|
kind, err := policyKind(target.Type)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
items, err := s.contractInterface.ListChainsByPrefix(big.NewInt(int64(kind)), target.Name, []byte(name))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var chains []*chain.Chain
|
|
for _, item := range items {
|
|
serialized, err := bytesFromStackItem(item)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c := new(chain.Chain)
|
|
if err := c.DecodeBytes(serialized); err != nil {
|
|
return nil, err
|
|
}
|
|
chains = append(chains, c)
|
|
}
|
|
|
|
return chains, nil
|
|
}
|
|
|
|
func (s *ContractStorage) GetAdmin() (util.Uint160, error) {
|
|
return s.contractInterface.GetAdmin()
|
|
}
|
|
|
|
func (s *ContractStorage) SetAdmin(addr util.Uint160) (util.Uint256, uint32, error) {
|
|
return s.contractInterface.SetAdmin(addr)
|
|
}
|
|
|
|
func bytesFromStackItem(param stackitem.Item) ([]byte, error) {
|
|
switch param.Type() {
|
|
case stackitem.BufferT, stackitem.ByteArrayT, stackitem.IntegerT:
|
|
return param.TryBytes()
|
|
case stackitem.AnyT:
|
|
if param.Value() == nil {
|
|
return nil, nil
|
|
}
|
|
fallthrough
|
|
default:
|
|
return nil, fmt.Errorf("chain/client: %s is not a byte array type", param.Type())
|
|
}
|
|
}
|
|
|
|
func prefixedChainName(name chain.Name, chainID chain.ID) []byte {
|
|
return []byte(strings.ToLower(fmt.Sprintf("%s:%s", name, chainID)))
|
|
}
|
|
|
|
func policyKind(typ engine.TargetType) (policy.Kind, error) {
|
|
if typ == engine.Namespace {
|
|
return policy.Namespace, nil
|
|
} else if typ == engine.Container {
|
|
return policy.Container, nil
|
|
}
|
|
return policy.Kind(0), ErrEngineTargetTypeUnsupported
|
|
}
|