174efc9df3
Neo-go does not use smartcontract.Parameter to return values anymore, so it's convertes partly removed from neofs-node. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
package container
|
|
|
|
import (
|
|
"crypto/elliptic"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// Put structure of container.Put notification from morph chain.
|
|
type Put struct {
|
|
rawContainer []byte
|
|
signature []byte
|
|
publicKey *keys.PublicKey
|
|
}
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
func (Put) MorphEvent() {}
|
|
|
|
// Container is a marshalled container structure, defined in API.
|
|
func (p Put) Container() []byte { return p.rawContainer }
|
|
|
|
// Signature of marshalled container by container owner.
|
|
func (p Put) Signature() []byte { return p.signature }
|
|
|
|
// PublicKey of container owner.
|
|
func (p Put) PublicKey() *keys.PublicKey { return p.publicKey }
|
|
|
|
// ParsePut from notification into container event structure.
|
|
func ParsePut(params []stackitem.Item) (event.Event, error) {
|
|
var (
|
|
ev Put
|
|
err error
|
|
)
|
|
|
|
if ln := len(params); ln != 3 {
|
|
return nil, event.WrongNumberOfParameters(3, ln)
|
|
}
|
|
|
|
// parse container
|
|
ev.rawContainer, err = client.BytesFromStackItem(params[0])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get container")
|
|
}
|
|
|
|
// parse signature
|
|
ev.signature, err = client.BytesFromStackItem(params[1])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get signature")
|
|
}
|
|
|
|
// parse public key
|
|
key, err := client.BytesFromStackItem(params[2])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get public key")
|
|
}
|
|
|
|
ev.publicKey, err = keys.NewPublicKeyFromBytes(key, elliptic.P256())
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not parse public key")
|
|
}
|
|
|
|
return ev, nil
|
|
}
|