2021-03-31 16:58:42 +00:00
|
|
|
package uploader
|
2021-01-25 19:36:46 +00:00
|
|
|
|
|
|
|
import (
|
2021-02-16 15:38:30 +00:00
|
|
|
"context"
|
2021-01-25 19:36:46 +00:00
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2022-11-08 06:55:13 +00:00
|
|
|
"net/http"
|
2021-01-25 19:36:46 +00:00
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
|
2023-03-07 14:08:53 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-http-gw/resolver"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-http-gw/response"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-http-gw/tokens"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-http-gw/utils"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/bearer"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/pool"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user"
|
2021-01-25 19:36:46 +00:00
|
|
|
"github.com/valyala/fasthttp"
|
2022-09-09 06:57:48 +00:00
|
|
|
"go.uber.org/atomic"
|
2021-01-25 19:36:46 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2021-04-28 08:39:12 +00:00
|
|
|
const (
|
|
|
|
jsonHeader = "application/json; charset=UTF-8"
|
|
|
|
drainBufSize = 4096
|
|
|
|
)
|
2021-04-05 14:48:01 +00:00
|
|
|
|
2021-05-13 12:22:03 +00:00
|
|
|
// Uploader is an upload request handler.
|
2021-03-31 16:58:42 +00:00
|
|
|
type Uploader struct {
|
2022-09-09 06:33:31 +00:00
|
|
|
log *zap.Logger
|
|
|
|
pool *pool.Pool
|
|
|
|
ownerID *user.ID
|
|
|
|
settings *Settings
|
|
|
|
containerResolver *resolver.ContainerResolver
|
2021-01-25 19:36:46 +00:00
|
|
|
}
|
|
|
|
|
2022-09-16 12:47:16 +00:00
|
|
|
// Settings stores reloading parameters, so it has to provide atomic getters and setters.
|
2022-09-09 06:33:31 +00:00
|
|
|
type Settings struct {
|
|
|
|
defaultTimestamp atomic.Bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Settings) DefaultTimestamp() bool {
|
|
|
|
return s.defaultTimestamp.Load()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Settings) SetDefaultTimestamp(val bool) {
|
|
|
|
s.defaultTimestamp.Store(val)
|
|
|
|
}
|
|
|
|
|
2021-05-13 12:22:03 +00:00
|
|
|
// New creates a new Uploader using specified logger, connection pool and
|
|
|
|
// other options.
|
2023-05-30 14:01:20 +00:00
|
|
|
func New(params *utils.AppParams, settings *Settings) *Uploader {
|
2022-04-20 09:17:20 +00:00
|
|
|
return &Uploader{
|
2022-09-09 06:33:31 +00:00
|
|
|
log: params.Logger,
|
|
|
|
pool: params.Pool,
|
|
|
|
ownerID: params.Owner,
|
|
|
|
settings: settings,
|
|
|
|
containerResolver: params.Resolver,
|
2022-04-20 09:17:20 +00:00
|
|
|
}
|
2021-01-25 19:36:46 +00:00
|
|
|
}
|
|
|
|
|
2021-05-13 12:22:03 +00:00
|
|
|
// Upload handles multipart upload request.
|
2023-05-24 09:19:15 +00:00
|
|
|
func (u *Uploader) Upload(req *fasthttp.RequestCtx) {
|
2021-01-25 19:36:46 +00:00
|
|
|
var (
|
2021-04-28 08:39:12 +00:00
|
|
|
file MultipartFile
|
2022-08-22 15:00:13 +00:00
|
|
|
idObj oid.ID
|
2022-07-25 09:47:48 +00:00
|
|
|
addr oid.Address
|
2023-05-24 09:19:15 +00:00
|
|
|
scid, _ = req.UserValue("cid").(string)
|
2021-04-28 08:39:12 +00:00
|
|
|
log = u.log.With(zap.String("cid", scid))
|
2023-05-24 09:19:15 +00:00
|
|
|
bodyStream = req.RequestBodyStream()
|
2021-04-28 08:39:12 +00:00
|
|
|
drainBuf = make([]byte, drainBufSize)
|
2021-01-25 19:36:46 +00:00
|
|
|
)
|
2022-04-20 09:17:20 +00:00
|
|
|
|
2023-05-30 14:01:20 +00:00
|
|
|
ctx := utils.GetContextFromRequest(req)
|
2023-05-24 09:19:15 +00:00
|
|
|
|
|
|
|
idCnr, err := utils.GetContainerID(ctx, scid, u.containerResolver)
|
2022-04-20 09:17:20 +00:00
|
|
|
if err != nil {
|
2021-01-25 19:36:46 +00:00
|
|
|
log.Error("wrong container id", zap.Error(err))
|
2023-05-24 09:19:15 +00:00
|
|
|
response.Error(req, "wrong container id", fasthttp.StatusBadRequest)
|
2021-01-25 19:36:46 +00:00
|
|
|
return
|
|
|
|
}
|
2022-04-20 09:17:20 +00:00
|
|
|
|
2021-01-25 19:36:46 +00:00
|
|
|
defer func() {
|
2021-04-07 12:54:30 +00:00
|
|
|
// If the temporary reader can be closed - let's close it.
|
2021-02-13 16:17:01 +00:00
|
|
|
if file == nil {
|
2021-01-26 08:35:05 +00:00
|
|
|
return
|
|
|
|
}
|
2021-03-30 22:46:33 +00:00
|
|
|
err := file.Close()
|
|
|
|
log.Debug(
|
|
|
|
"close temporary multipart/form file",
|
2021-02-13 16:17:01 +00:00
|
|
|
zap.Stringer("address", addr),
|
|
|
|
zap.String("filename", file.FileName()),
|
2021-03-30 22:46:33 +00:00
|
|
|
zap.Error(err),
|
|
|
|
)
|
2021-01-25 19:36:46 +00:00
|
|
|
}()
|
2023-05-24 09:19:15 +00:00
|
|
|
boundary := string(req.Request.Header.MultipartFormBoundary())
|
2021-04-28 08:39:12 +00:00
|
|
|
if file, err = fetchMultipartFile(u.log, bodyStream, boundary); err != nil {
|
2021-01-26 15:36:53 +00:00
|
|
|
log.Error("could not receive multipart/form", zap.Error(err))
|
2023-05-24 09:19:15 +00:00
|
|
|
response.Error(req, "could not receive multipart/form: "+err.Error(), fasthttp.StatusBadRequest)
|
2021-01-25 19:36:46 +00:00
|
|
|
return
|
2021-01-26 15:36:53 +00:00
|
|
|
}
|
2023-05-24 09:19:15 +00:00
|
|
|
filtered, err := filterHeaders(u.log, &req.Request.Header)
|
2022-11-17 15:01:38 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error("could not process headers", zap.Error(err))
|
2023-05-24 09:19:15 +00:00
|
|
|
response.Error(req, err.Error(), fasthttp.StatusBadRequest)
|
2022-11-17 15:01:38 +00:00
|
|
|
return
|
|
|
|
}
|
2022-11-08 06:55:13 +00:00
|
|
|
|
2023-03-16 08:40:08 +00:00
|
|
|
now := time.Now()
|
2023-05-24 09:19:15 +00:00
|
|
|
if rawHeader := req.Request.Header.Peek(fasthttp.HeaderDate); rawHeader != nil {
|
2023-03-16 08:40:08 +00:00
|
|
|
if parsed, err := time.Parse(http.TimeFormat, string(rawHeader)); err != nil {
|
|
|
|
log.Warn("could not parse client time", zap.String("Date header", string(rawHeader)), zap.Error(err))
|
|
|
|
} else {
|
|
|
|
now = parsed
|
2022-11-08 06:55:13 +00:00
|
|
|
}
|
2023-03-16 08:40:08 +00:00
|
|
|
}
|
2022-11-08 06:55:13 +00:00
|
|
|
|
2023-05-24 09:19:15 +00:00
|
|
|
if err = utils.PrepareExpirationHeader(req, u.pool, filtered, now); err != nil {
|
2023-03-16 08:40:08 +00:00
|
|
|
log.Error("could not prepare expiration header", zap.Error(err))
|
2023-05-24 09:19:15 +00:00
|
|
|
response.Error(req, "could not prepare expiration header: "+err.Error(), fasthttp.StatusBadRequest)
|
2023-03-16 08:40:08 +00:00
|
|
|
return
|
2021-11-26 12:44:07 +00:00
|
|
|
}
|
|
|
|
|
2022-03-16 08:10:56 +00:00
|
|
|
attributes := make([]object.Attribute, 0, len(filtered))
|
2021-01-26 15:36:53 +00:00
|
|
|
// prepares attributes from filtered headers
|
2021-01-25 19:36:46 +00:00
|
|
|
for key, val := range filtered {
|
|
|
|
attribute := object.NewAttribute()
|
|
|
|
attribute.SetKey(key)
|
|
|
|
attribute.SetValue(val)
|
2022-03-16 08:10:56 +00:00
|
|
|
attributes = append(attributes, *attribute)
|
2021-01-25 19:36:46 +00:00
|
|
|
}
|
2021-01-26 15:36:53 +00:00
|
|
|
// sets FileName attribute if it wasn't set from header
|
2021-01-28 13:48:45 +00:00
|
|
|
if _, ok := filtered[object.AttributeFileName]; !ok {
|
2021-01-25 19:36:46 +00:00
|
|
|
filename := object.NewAttribute()
|
|
|
|
filename.SetKey(object.AttributeFileName)
|
2021-02-13 16:17:01 +00:00
|
|
|
filename.SetValue(file.FileName())
|
2022-03-16 08:10:56 +00:00
|
|
|
attributes = append(attributes, *filename)
|
2021-01-25 19:36:46 +00:00
|
|
|
}
|
2021-01-26 15:36:53 +00:00
|
|
|
// sets Timestamp attribute if it wasn't set from header and enabled by settings
|
2022-09-09 06:33:31 +00:00
|
|
|
if _, ok := filtered[object.AttributeTimestamp]; !ok && u.settings.DefaultTimestamp() {
|
2021-01-25 19:36:46 +00:00
|
|
|
timestamp := object.NewAttribute()
|
|
|
|
timestamp.SetKey(object.AttributeTimestamp)
|
|
|
|
timestamp.SetValue(strconv.FormatInt(time.Now().Unix(), 10))
|
2022-03-16 08:10:56 +00:00
|
|
|
attributes = append(attributes, *timestamp)
|
2021-01-25 19:36:46 +00:00
|
|
|
}
|
2023-05-30 14:01:20 +00:00
|
|
|
id, bt := u.fetchOwnerAndBearerToken(ctx)
|
2021-05-28 08:57:28 +00:00
|
|
|
|
2022-03-02 10:46:11 +00:00
|
|
|
obj := object.New()
|
2022-04-19 15:46:51 +00:00
|
|
|
obj.SetContainerID(*idCnr)
|
2022-03-02 10:46:11 +00:00
|
|
|
obj.SetOwnerID(id)
|
|
|
|
obj.SetAttributes(attributes...)
|
2021-05-28 08:57:28 +00:00
|
|
|
|
2022-04-07 12:56:18 +00:00
|
|
|
var prm pool.PrmObjectPut
|
|
|
|
prm.SetHeader(*obj)
|
|
|
|
prm.SetPayload(file)
|
2022-04-19 15:46:51 +00:00
|
|
|
|
|
|
|
if bt != nil {
|
|
|
|
prm.UseBearer(*bt)
|
|
|
|
}
|
2022-04-07 12:56:18 +00:00
|
|
|
|
2023-05-24 09:19:15 +00:00
|
|
|
if idObj, err = u.pool.PutObject(ctx, prm); err != nil {
|
|
|
|
u.handlePutFrostFSErr(req, err)
|
2021-01-25 19:36:46 +00:00
|
|
|
return
|
2021-01-26 15:36:53 +00:00
|
|
|
}
|
2021-05-28 08:57:28 +00:00
|
|
|
|
2022-08-22 15:00:13 +00:00
|
|
|
addr.SetObject(idObj)
|
2022-07-25 09:47:48 +00:00
|
|
|
addr.SetContainer(*idCnr)
|
2021-05-28 08:57:28 +00:00
|
|
|
|
2021-03-31 18:24:41 +00:00
|
|
|
// Try to return the response, otherwise, if something went wrong, throw an error.
|
2023-05-24 09:19:15 +00:00
|
|
|
if err = newPutResponse(addr).encode(req); err != nil {
|
2022-04-20 10:03:06 +00:00
|
|
|
log.Error("could not encode response", zap.Error(err))
|
2023-05-24 09:19:15 +00:00
|
|
|
response.Error(req, "could not encode response", fasthttp.StatusBadRequest)
|
2021-01-25 19:36:46 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2021-04-28 08:39:12 +00:00
|
|
|
// Multipart is multipart and thus can contain more than one part which
|
|
|
|
// we ignore at the moment. Also, when dealing with chunked encoding
|
|
|
|
// the last zero-length chunk might be left unread (because multipart
|
|
|
|
// reader only cares about its boundary and doesn't look further) and
|
|
|
|
// it will be (erroneously) interpreted as the start of the next
|
|
|
|
// pipelined header. Thus we need to drain the body buffer.
|
|
|
|
for {
|
|
|
|
_, err = bodyStream.Read(drainBuf)
|
|
|
|
if err == io.EOF || err == io.ErrUnexpectedEOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 18:24:41 +00:00
|
|
|
// Report status code and content type.
|
2023-05-24 09:19:15 +00:00
|
|
|
req.Response.SetStatusCode(fasthttp.StatusOK)
|
|
|
|
req.Response.Header.SetContentType(jsonHeader)
|
2021-01-25 19:36:46 +00:00
|
|
|
}
|
2021-03-31 16:58:42 +00:00
|
|
|
|
2023-03-13 11:55:19 +00:00
|
|
|
func (u *Uploader) handlePutFrostFSErr(r *fasthttp.RequestCtx, err error) {
|
|
|
|
statusCode, msg, additionalFields := response.FormErrorResponse("could not store file in frostfs", err)
|
|
|
|
logFields := append([]zap.Field{zap.Error(err)}, additionalFields...)
|
|
|
|
|
|
|
|
u.log.Error("could not store file in frostfs", logFields...)
|
|
|
|
response.Error(r, msg, statusCode)
|
|
|
|
}
|
|
|
|
|
2022-04-19 15:46:51 +00:00
|
|
|
func (u *Uploader) fetchOwnerAndBearerToken(ctx context.Context) (*user.ID, *bearer.Token) {
|
2021-05-28 08:57:28 +00:00
|
|
|
if tkn, err := tokens.LoadBearerToken(ctx); err == nil && tkn != nil {
|
2022-07-25 09:47:48 +00:00
|
|
|
issuer := bearer.ResolveIssuer(*tkn)
|
2022-04-19 15:46:51 +00:00
|
|
|
return &issuer, tkn
|
2021-03-31 16:58:42 +00:00
|
|
|
}
|
2022-07-25 09:47:48 +00:00
|
|
|
return u.ownerID, nil
|
2021-03-31 16:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type putResponse struct {
|
2021-04-05 14:48:01 +00:00
|
|
|
ObjectID string `json:"object_id"`
|
|
|
|
ContainerID string `json:"container_id"`
|
2021-03-31 16:58:42 +00:00
|
|
|
}
|
|
|
|
|
2022-07-25 09:47:48 +00:00
|
|
|
func newPutResponse(addr oid.Address) *putResponse {
|
2021-03-31 16:58:42 +00:00
|
|
|
return &putResponse{
|
2022-07-25 09:47:48 +00:00
|
|
|
ObjectID: addr.Object().EncodeToString(),
|
|
|
|
ContainerID: addr.Container().EncodeToString(),
|
2021-03-31 16:58:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pr *putResponse) encode(w io.Writer) error {
|
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
enc.SetIndent("", "\t")
|
|
|
|
return enc.Encode(pr)
|
|
|
|
}
|