diff --git a/cmd/neofs-cli/internal/client/client.go b/cmd/neofs-cli/internal/client/client.go index de16962e..d64903b6 100644 --- a/cmd/neofs-cli/internal/client/client.go +++ b/cmd/neofs-cli/internal/client/client.go @@ -30,7 +30,7 @@ type BalanceOfRes struct { } // Balance returns the current balance. -func (x BalanceOfRes) Balance() *accounting.Decimal { +func (x BalanceOfRes) Balance() accounting.Decimal { return x.cliRes.Amount() } @@ -95,12 +95,7 @@ func (x PutContainerRes) ID() cid.ID { func PutContainer(prm PutContainerPrm) (res PutContainerRes, err error) { cliRes, err := prm.cli.ContainerPut(context.Background(), prm.PrmContainerPut) if err == nil { - cnr := cliRes.ID() - if cnr == nil { - err = errors.New("missing container ID in response") - } else { - res.cnr = *cnr - } + res.cnr = cliRes.ID() } return @@ -171,7 +166,7 @@ type EACLRes struct { } // EACL returns requested eACL table. -func (x EACLRes) EACL() *eacl.Table { +func (x EACLRes) EACL() eacl.Table { return x.cliRes.Table() } @@ -219,7 +214,7 @@ type NetworkInfoRes struct { } // NetworkInfo returns structured information about the NeoFS network. -func (x NetworkInfoRes) NetworkInfo() *netmap.NetworkInfo { +func (x NetworkInfoRes) NetworkInfo() netmap.NetworkInfo { return x.cliRes.Info() } @@ -245,11 +240,11 @@ type NodeInfoRes struct { // NodeInfo returns information about the node from netmap. func (x NodeInfoRes) NodeInfo() netmap.NodeInfo { - return *x.cliRes.NodeInfo() + return x.cliRes.NodeInfo() } // LatestVersion returns the latest NeoFS API version in use. -func (x NodeInfoRes) LatestVersion() *version.Version { +func (x NodeInfoRes) LatestVersion() version.Version { return x.cliRes.LatestVersion() } @@ -406,13 +401,9 @@ func PutObject(prm PutObjectPrm) (*PutObjectRes, error) { return nil, fmt.Errorf("client failure: %w", err) } - var res PutObjectRes - - if !cliRes.ReadStoredObjectID(&res.id) { - return nil, errors.New("missing ID of the stored object") - } - - return &res, nil + return &PutObjectRes{ + id: cliRes.StoredObjectID(), + }, nil } // DeleteObjectPrm groups parameters of DeleteObject operation. @@ -454,14 +445,8 @@ func DeleteObject(prm DeleteObjectPrm) (*DeleteObjectRes, error) { return nil, fmt.Errorf("remove object via client: %w", err) } - var id oid.ID - - if !cliRes.ReadTombstoneID(&id) { - return nil, errors.New("object removed but tombstone ID is missing") - } - return &DeleteObjectRes{ - tomb: id, + tomb: cliRes.Tombstone(), }, nil } diff --git a/cmd/neofs-cli/modules/accounting/balance.go b/cmd/neofs-cli/modules/accounting/balance.go index 583b2b4b..2864d0fc 100644 --- a/cmd/neofs-cli/modules/accounting/balance.go +++ b/cmd/neofs-cli/modules/accounting/balance.go @@ -58,11 +58,7 @@ func initAccountingBalanceCmd() { ff.String(ownerFlag, "", "owner of balance account (omit to use owner from private key)") } -func prettyPrintDecimal(cmd *cobra.Command, decimal *accounting.Decimal) { - if decimal == nil { - return - } - +func prettyPrintDecimal(cmd *cobra.Command, decimal accounting.Decimal) { if viper.GetBool(commonflags.Verbose) { cmd.Println("value:", decimal.Value()) cmd.Println("precision:", decimal.Precision()) diff --git a/cmd/neofs-cli/modules/container/get_eacl.go b/cmd/neofs-cli/modules/container/get_eacl.go index d1a5d989..23ee36a5 100644 --- a/cmd/neofs-cli/modules/container/get_eacl.go +++ b/cmd/neofs-cli/modules/container/get_eacl.go @@ -30,7 +30,7 @@ var getExtendedACLCmd = &cobra.Command{ if containerPathTo == "" { cmd.Println("eACL: ") - common.PrettyPrintJSON(cmd, eaclTable, "eACL") + common.PrettyPrintJSON(cmd, &eaclTable, "eACL") return } diff --git a/cmd/neofs-cli/modules/container/set_eacl.go b/cmd/neofs-cli/modules/container/set_eacl.go index 89e8ea6c..4bb82b9c 100644 --- a/cmd/neofs-cli/modules/container/set_eacl.go +++ b/cmd/neofs-cli/modules/container/set_eacl.go @@ -63,7 +63,8 @@ Container ID in EACL table will be substituted with ID from the CLI.`, res, err := internalclient.EACL(getEACLPrm) if err == nil { // compare binary values because EACL could have been set already - got, err := res.EACL().Marshal() + table := res.EACL() + got, err := table.Marshal() if err != nil { continue } diff --git a/go.mod b/go.mod index f88396dc..6910b70b 100644 --- a/go.mod +++ b/go.mod @@ -19,7 +19,7 @@ require ( github.com/nspcc-dev/neo-go/pkg/interop v0.0.0-20220727202624-6c7a401f776a // indirect github.com/nspcc-dev/neofs-api-go/v2 v2.13.2-0.20220818094951-98db3fa28419 github.com/nspcc-dev/neofs-contract v0.15.3 - github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.6.0.20220801165707-7a99cc916c8e + github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.6.0.20220822101910-7578b54fac3f github.com/nspcc-dev/tzhash v1.6.1 github.com/panjf2000/ants/v2 v2.4.0 github.com/paulmach/orb v0.2.2 diff --git a/go.sum b/go.sum index 73a0ba98..fcd29357 100644 Binary files a/go.sum and b/go.sum differ diff --git a/pkg/services/object/internal/client/client.go b/pkg/services/object/internal/client/client.go index 87bc9979..f7cd14de 100644 --- a/pkg/services/object/internal/client/client.go +++ b/pkg/services/object/internal/client/client.go @@ -408,13 +408,9 @@ func PutObject(prm PutObjectPrm) (*PutObjectRes, error) { return nil, fmt.Errorf("write object via client: %w", err) } - var res PutObjectRes - - if !cliRes.ReadStoredObjectID(&res.id) { - return nil, errors.New("missing identifier in the response") - } - - return &res, nil + return &PutObjectRes{ + id: cliRes.StoredObjectID(), + }, nil } // SearchObjectsPrm groups parameters of SearchObjects operation.