forked from TrueCloudLab/frostfs-node
07465849a4
Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
85 lines
2 KiB
Go
85 lines
2 KiB
Go
package netmap
|
|
|
|
import (
|
|
"crypto/elliptic"
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
"github.com/nspcc-dev/neo-go/pkg/network/payload"
|
|
"github.com/nspcc-dev/neofs-contract/netmap"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
)
|
|
|
|
type UpdatePeer struct {
|
|
publicKey *keys.PublicKey
|
|
|
|
online bool
|
|
|
|
// For notary notifications only.
|
|
// Contains raw transactions of notary request.
|
|
notaryRequest *payload.P2PNotaryRequest
|
|
}
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
func (UpdatePeer) MorphEvent() {}
|
|
|
|
func (s UpdatePeer) Online() bool {
|
|
return s.online
|
|
}
|
|
|
|
func (s UpdatePeer) PublicKey() *keys.PublicKey {
|
|
return s.publicKey
|
|
}
|
|
|
|
// NotaryRequest returns raw notary request if notification
|
|
// was received via notary service. Otherwise, returns nil.
|
|
func (s UpdatePeer) NotaryRequest() *payload.P2PNotaryRequest {
|
|
return s.notaryRequest
|
|
}
|
|
|
|
const expectedItemNumUpdatePeer = 2
|
|
|
|
func ParseUpdatePeer(e *state.ContainedNotificationEvent) (event.Event, error) {
|
|
var (
|
|
ev UpdatePeer
|
|
err error
|
|
)
|
|
|
|
params, err := event.ParseStackArray(e)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not parse stack items from notify event: %w", err)
|
|
}
|
|
|
|
if ln := len(params); ln != expectedItemNumUpdatePeer {
|
|
return nil, event.WrongNumberOfParameters(expectedItemNumUpdatePeer, ln)
|
|
}
|
|
|
|
// parse public key
|
|
key, err := client.BytesFromStackItem(params[1])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not get public key: %w", err)
|
|
}
|
|
|
|
ev.publicKey, err = keys.NewPublicKeyFromBytes(key, elliptic.P256())
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not parse public key: %w", err)
|
|
}
|
|
|
|
// parse node status
|
|
st, err := client.IntFromStackItem(params[0])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not get node status: %w", err)
|
|
}
|
|
|
|
switch st {
|
|
default:
|
|
return nil, fmt.Errorf("unsupported node state %d", st)
|
|
case int64(netmap.OfflineState):
|
|
case int64(netmap.OnlineState):
|
|
ev.online = true
|
|
}
|
|
|
|
return ev, nil
|
|
}
|