[#11] accounting: Implement ServiceExecutor on Neo:Morph client

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Leonard Lyubich 2020-08-22 18:20:12 +03:00 committed by Alex Vanin
parent 3ae7f7e914
commit 5022362c1a
1 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,54 @@
package accounting
import (
"context"
"github.com/nspcc-dev/neofs-api-go/v2/accounting"
"github.com/nspcc-dev/neofs-node/pkg/morph/client/balance"
accountingSvc "github.com/nspcc-dev/neofs-node/pkg/services/accounting"
"github.com/pkg/errors"
)
type morphExecutor struct {
// TODO: use client wrapper
client *balance.Client
}
func NewExecutor(client *balance.Client) accountingSvc.ServiceExecutor {
return &morphExecutor{
client: client,
}
}
func (s *morphExecutor) Balance(ctx context.Context, body *accounting.BalanceRequestBody) (*accounting.BalanceResponseBody, error) {
id := body.GetOwnerID()
idBytes, err := id.StableMarshal(nil)
if err != nil {
return nil, errors.Wrap(err, "could not marshal wallet owner ID")
}
argsBalance := balance.GetBalanceOfArgs{}
argsBalance.SetWallet(idBytes)
vBalance, err := s.client.BalanceOf(argsBalance)
if err != nil {
return nil, errors.Wrap(err, "could not call BalanceOf method")
}
argsDecimals := balance.DecimalsArgs{}
vDecimals, err := s.client.Decimals(argsDecimals)
if err != nil {
return nil, errors.Wrap(err, "could not call decimals method")
}
dec := new(accounting.Decimal)
dec.SetValue(vBalance.Amount())
dec.SetPrecision(uint32(vDecimals.Decimals()))
res := new(accounting.BalanceResponseBody)
res.SetBalance(dec)
return res, nil
}