frostfs-http-gw/receive.go

162 lines
3.9 KiB
Go
Raw Normal View History

package main
import (
"context"
"io"
"net/http"
"path"
"strconv"
"strings"
"time"
2020-02-04 10:32:38 +00:00
"github.com/nspcc-dev/neofs-api/container"
"github.com/nspcc-dev/neofs-api/object"
"github.com/nspcc-dev/neofs-api/refs"
"github.com/nspcc-dev/neofs-api/service"
"github.com/valyala/fasthttp"
"go.uber.org/zap"
2020-02-25 10:31:20 +00:00
"google.golang.org/grpc"
)
func (a *app) receiveFile(c *fasthttp.RequestCtx) {
var (
err error
cid refs.CID
oid refs.ObjectID
start = time.Now()
con *grpc.ClientConn
cli object.Service_GetClient
ctx context.Context
sCID, _ = c.UserValue("cid").(string)
sOID, _ = c.UserValue("oid").(string)
)
log := a.log.With(
2020-02-25 10:31:20 +00:00
// zap.String("node", con.Target()),
zap.String("cid", sCID),
zap.String("oid", sOID))
if err = cid.Parse(sCID); err != nil {
log.Error("wrong container id", zap.Error(err))
c.Error("wrong container id", fasthttp.StatusBadRequest)
return
} else if err = oid.Parse(sOID); err != nil {
log.Error("wrong object id", zap.Error(err))
c.Error("wrong object id", fasthttp.StatusBadRequest)
return
}
2020-02-25 10:31:20 +00:00
{ // try to connect or throw http error:
ctx, cancel := context.WithTimeout(c, a.timeout)
2020-02-25 10:31:20 +00:00
defer cancel()
if con, err = a.pool.getConnection(ctx); err != nil {
log.Error("getConnection timeout", zap.Error(err))
c.Error("could not get alive connection", fasthttp.StatusBadRequest)
return
2020-02-25 10:31:20 +00:00
}
}
ctx, cancel := context.WithTimeout(c, a.timeout)
defer cancel()
2020-02-25 10:31:20 +00:00
log = log.With(zap.String("node", con.Target()))
defer func() {
if err != nil {
return
}
2020-02-27 09:51:11 +00:00
log.Info("object sent to client", zap.Stringer("elapsed", time.Since(start)))
}()
req := &object.GetRequest{Address: refs.Address{ObjectID: oid, CID: cid}}
req.SetTTL(service.SingleForwardingTTL)
if err = service.SignRequestHeader(a.key, req); err != nil {
log.Error("could not sign request", zap.Error(err))
c.Error("could not sign request", fasthttp.StatusBadRequest)
return
}
if cli, err = object.NewServiceClient(con).Get(ctx, req); err != nil {
log.Error("could not prepare connection", zap.Error(err))
c.Error("could not prepare connection", fasthttp.StatusBadRequest)
return
} else if err = receiveObject(c, cli); err != nil {
log.Error("could not receive object",
zap.Stringer("elapsed", time.Since(start)),
zap.Error(err))
switch {
case strings.Contains(err.Error(), object.ErrNotFound.Error()),
strings.Contains(err.Error(), container.ErrNotFound.Error()):
c.Error("object not found", fasthttp.StatusNotFound)
default:
c.Error("could not receive object", fasthttp.StatusBadRequest)
}
return
}
}
func receiveObject(c *fasthttp.RequestCtx, cli object.Service_GetClient) error {
var (
typ string
put = c.Request.URI().QueryArgs().GetBool("download")
)
for {
resp, err := cli.Recv()
if err != nil {
if err == io.EOF {
break
}
return err
}
switch o := resp.R.(type) {
case *object.GetResponse_Object:
obj := o.Object
c.Response.Header.Set("Content-Length", strconv.FormatUint(obj.SystemHeader.PayloadLength, 10))
c.Response.Header.Set("x-object-id", obj.SystemHeader.ID.String())
c.Response.Header.Set("x-owner-id", obj.SystemHeader.OwnerID.String())
c.Response.Header.Set("x-container-id", obj.SystemHeader.CID.String())
for i := range obj.Headers {
if hdr := obj.Headers[i].GetUserHeader(); hdr != nil {
c.Response.Header.Set("x-"+hdr.Key, hdr.Value)
if hdr.Key == object.FilenameHeader && put {
// NOTE: we use path.Base because hdr.Value can be something like `/path/to/filename.ext`
c.Response.Header.Set("Content-Disposition", "attachment; filename="+path.Base(hdr.Value))
}
}
}
typ = http.DetectContentType(obj.Payload)
if _, err = c.Write(obj.Payload); err != nil {
return err
}
case *object.GetResponse_Chunk:
if typ == "" {
typ = http.DetectContentType(o.Chunk)
}
if _, err = c.Write(o.Chunk); err != nil {
return err
}
}
}
c.SetContentType(typ)
return nil
}