4a11ec2826
Change-Id: I9f8146760a2676a204eb1bd3410079c5fa017d70
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package nodes
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/spacemonkeygo/monkit/v3"
|
|
"github.com/zeebo/errs"
|
|
"go.uber.org/zap"
|
|
|
|
"storj.io/common/storj"
|
|
)
|
|
|
|
var (
|
|
mon = monkit.Package()
|
|
|
|
// Error is an error class for nodes service error.
|
|
Error = errs.Class("nodes service error")
|
|
)
|
|
|
|
// Service exposes all nodes related logic.
|
|
//
|
|
// architecture: Service
|
|
type Service struct {
|
|
log *zap.Logger
|
|
nodes DB
|
|
}
|
|
|
|
// NewService creates new instance of Service.
|
|
func NewService(log *zap.Logger, nodes DB) *Service {
|
|
return &Service{
|
|
log: log,
|
|
nodes: nodes,
|
|
}
|
|
}
|
|
|
|
// Add adds new node to the system.
|
|
func (service *Service) Add(ctx context.Context, id storj.NodeID, apiSecret []byte, publicAddress string) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
return Error.Wrap(service.nodes.Add(ctx, id, apiSecret, publicAddress))
|
|
}
|
|
|
|
// Remove removes node from the system.
|
|
func (service *Service) Remove(ctx context.Context, id storj.NodeID) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
return Error.Wrap(service.nodes.Remove(ctx, id))
|
|
}
|
|
|
|
// Update will update name of the specified node.
|
|
func (service *Service) Update(ctx context.Context, id storj.NodeID, name string) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
return Error.Wrap(service.nodes.UpdateName(ctx, id, name))
|
|
}
|