forked from TrueCloudLab/frostfs-node
bf2c33d7a9
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
22 lines
572 B
Go
22 lines
572 B
Go
package getsvc
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
|
objectV2 "github.com/nspcc-dev/neofs-api-go/v2/object"
|
|
getsvc "github.com/nspcc-dev/neofs-node/pkg/services/object/get"
|
|
)
|
|
|
|
func toPrm(req *objectV2.GetRequest) *getsvc.Prm {
|
|
return new(getsvc.Prm).
|
|
WithAddress(
|
|
object.NewAddressFromV2(req.GetBody().GetAddress()),
|
|
).
|
|
OnlyLocal(req.GetMetaHeader().GetTTL() == 1) // FIXME: use constant
|
|
}
|
|
|
|
func fromResponse(res *getsvc.Streamer) objectV2.GetObjectStreamer {
|
|
return &streamer{
|
|
stream: res,
|
|
body: new(objectV2.GetResponseBody),
|
|
}
|
|
}
|