[#315] control: Implement SetNetmapStatus on Server

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Leonard Lyubich 2021-01-15 14:51:34 +03:00 committed by Alex Vanin
parent f39d08bda7
commit 619f8826e1
2 changed files with 51 additions and 0 deletions

View File

@ -29,6 +29,11 @@ type HealthChecker interface {
HealthStatus() control.HealthStatus
}
// NodeState is an interface of storage node network state.
type NodeState interface {
SetNetmapStatus(control.NetmapStatus) error
}
// Option of the Server's constructor.
type Option func(*cfg)
@ -40,6 +45,8 @@ type cfg struct {
healthChecker HealthChecker
netMapSrc netmap.Source
nodeState NodeState
}
func defaultCfg() *cfg {
@ -89,3 +96,10 @@ func WithNetMapSource(netMapSrc netmap.Source) Option {
c.netMapSrc = netMapSrc
}
}
// WithNodeState returns option to set node network state component.
func WithNodeState(state NodeState) Option {
return func(c *cfg) {
c.nodeState = state
}
}

View File

@ -0,0 +1,37 @@
package control
import (
"context"
"github.com/nspcc-dev/neofs-node/pkg/services/control"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
// SetNetmapStatus sets node status in NeoFS network.
//
// If request is unsigned or signed by disallowed key, permission error returns.
func (s *Server) SetNetmapStatus(ctx context.Context, req *control.SetNetmapStatusRequest) (*control.SetNetmapStatusResponse, error) {
// verify request
if err := s.isValidRequest(req); err != nil {
return nil, status.Error(codes.PermissionDenied, err.Error())
}
// set node status
if err := s.nodeState.SetNetmapStatus(req.GetBody().GetStatus()); err != nil {
return nil, status.Error(codes.Aborted, err.Error())
}
// create and fill response
resp := new(control.SetNetmapStatusResponse)
body := new(control.SetNetmapStatusResponse_Body)
resp.SetBody(body)
// sign the response
if err := SignMessage(s.key, resp); err != nil {
return nil, status.Error(codes.Internal, err.Error())
}
return resp, nil
}