[#58] services/object: Implement Delete service

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-09-30 13:52:14 +03:00 committed by Alex Vanin
parent b24adeae89
commit 017afbf0e3
6 changed files with 300 additions and 0 deletions

View file

@ -0,0 +1,22 @@
package deletesvc
import (
"github.com/nspcc-dev/neofs-api-go/pkg/object"
objectV2 "github.com/nspcc-dev/neofs-api-go/v2/object"
deletesvc "github.com/nspcc-dev/neofs-node/pkg/services/object/delete"
"github.com/nspcc-dev/neofs-node/pkg/services/object/util"
)
func toPrm(req *objectV2.DeleteRequest) *deletesvc.Prm {
body := req.GetBody()
return new(deletesvc.Prm).
WithAddress(
object.NewAddressFromV2(body.GetAddress()),
).
WithCommonPrm(util.CommonPrmFromV2(req))
}
func fromResponse(r *deletesvc.Response) *objectV2.DeleteResponse {
return new(objectV2.DeleteResponse)
}