Chris Lu
5 years ago
24 changed files with 1095 additions and 121 deletions
-
5go.mod
-
14go.sum
-
3weed/command/volume.go
-
71weed/security/guard.go
-
23weed/security/jwt.go
-
88weed/server/common.go
-
6weed/server/filer_server_handlers_read.go
-
2weed/server/filer_server_handlers_read_dir.go
-
20weed/server/filer_server_handlers_write.go
-
4weed/server/filer_server_handlers_write_autochunk.go
-
26weed/server/master_server.go
-
12weed/server/master_server_handlers.go
-
20weed/server/master_server_handlers_admin.go
-
2weed/server/raft_server_handlers.go
-
12weed/server/volume_server.go
-
81weed/server/volume_server_fasthttp_handlers.go
-
366weed/server/volume_server_fasthttp_handlers_read.go
-
156weed/server/volume_server_fasthttp_handlers_write.go
-
18weed/server/volume_server_handlers.go
-
4weed/server/volume_server_handlers_admin.go
-
10weed/server/volume_server_handlers_read.go
-
48weed/server/volume_server_handlers_write.go
-
116weed/storage/needle/needle.go
-
109weed/topology/store_replicate.go
@ -0,0 +1,81 @@ |
|||
package weed_server |
|||
|
|||
import ( |
|||
"strings" |
|||
|
|||
"github.com/valyala/fasthttp" |
|||
|
|||
"github.com/chrislusf/seaweedfs/weed/glog" |
|||
"github.com/chrislusf/seaweedfs/weed/security" |
|||
"github.com/chrislusf/seaweedfs/weed/stats" |
|||
) |
|||
|
|||
func (vs *VolumeServer) HandleFastHTTP(ctx *fasthttp.RequestCtx) { |
|||
|
|||
switch string(ctx.Method()) { |
|||
case "GET", "HEAD": |
|||
vs.fastGetOrHeadHandler(ctx) |
|||
case "DELETE": |
|||
stats.DeleteRequest() |
|||
vs.guard.WhiteList(vs.DeleteHandler)(ctx) |
|||
case "PUT", "POST": |
|||
stats.WriteRequest() |
|||
vs.guard.WhiteList(vs.fastPostHandler)(ctx) |
|||
} |
|||
|
|||
} |
|||
|
|||
func (vs *VolumeServer) publicReadOnlyHandler(ctx *fasthttp.RequestCtx) { |
|||
switch string(ctx.Method()) { |
|||
case "GET": |
|||
stats.ReadRequest() |
|||
vs.fastGetOrHeadHandler(ctx) |
|||
case "HEAD": |
|||
stats.ReadRequest() |
|||
vs.fastGetOrHeadHandler(ctx) |
|||
} |
|||
} |
|||
|
|||
func (vs *VolumeServer) maybeCheckJwtAuthorization(ctx *fasthttp.RequestCtx, vid, fid string, isWrite bool) bool { |
|||
|
|||
var signingKey security.SigningKey |
|||
|
|||
if isWrite { |
|||
if len(vs.guard.SigningKey) == 0 { |
|||
return true |
|||
} else { |
|||
signingKey = vs.guard.SigningKey |
|||
} |
|||
} else { |
|||
if len(vs.guard.ReadSigningKey) == 0 { |
|||
return true |
|||
} else { |
|||
signingKey = vs.guard.ReadSigningKey |
|||
} |
|||
} |
|||
|
|||
tokenStr := security.GetJwt(ctx) |
|||
if tokenStr == "" { |
|||
glog.V(1).Infof("missing jwt from %s", ctx.RemoteAddr()) |
|||
return false |
|||
} |
|||
|
|||
token, err := security.DecodeJwt(signingKey, tokenStr) |
|||
if err != nil { |
|||
glog.V(1).Infof("jwt verification error from %s: %v", ctx.RemoteAddr(), err) |
|||
return false |
|||
} |
|||
if !token.Valid { |
|||
glog.V(1).Infof("jwt invalid from %s: %v", ctx.RemoteAddr(), tokenStr) |
|||
return false |
|||
} |
|||
|
|||
if sc, ok := token.Claims.(*security.SeaweedFileIdClaims); ok { |
|||
if sepIndex := strings.LastIndex(fid, "_"); sepIndex > 0 { |
|||
fid = fid[:sepIndex] |
|||
} |
|||
return sc.Fid == vid+","+fid |
|||
} |
|||
glog.V(1).Infof("unexpected jwt from %s: %v", ctx.RemoteAddr(), tokenStr) |
|||
return false |
|||
} |
@ -0,0 +1,366 @@ |
|||
package weed_server |
|||
|
|||
import ( |
|||
"bytes" |
|||
"context" |
|||
"encoding/json" |
|||
"errors" |
|||
"fmt" |
|||
"io" |
|||
"mime" |
|||
"mime/multipart" |
|||
"net/http" |
|||
"net/url" |
|||
"path" |
|||
"strconv" |
|||
"strings" |
|||
"time" |
|||
|
|||
"github.com/valyala/fasthttp" |
|||
|
|||
"github.com/chrislusf/seaweedfs/weed/glog" |
|||
"github.com/chrislusf/seaweedfs/weed/images" |
|||
"github.com/chrislusf/seaweedfs/weed/operation" |
|||
"github.com/chrislusf/seaweedfs/weed/stats" |
|||
"github.com/chrislusf/seaweedfs/weed/storage/needle" |
|||
"github.com/chrislusf/seaweedfs/weed/util" |
|||
) |
|||
|
|||
func (vs *VolumeServer) fastGetOrHeadHandler(ctx *fasthttp.RequestCtx) { |
|||
|
|||
stats.VolumeServerRequestCounter.WithLabelValues("get").Inc() |
|||
start := time.Now() |
|||
defer func() { stats.VolumeServerRequestHistogram.WithLabelValues("get").Observe(time.Since(start).Seconds()) }() |
|||
|
|||
requestPath := string(ctx.Path()) |
|||
n := new(needle.Needle) |
|||
vid, fid, filename, ext, _ := parseURLPath(requestPath) |
|||
|
|||
if !vs.maybeCheckJwtAuthorization(ctx, vid, fid, false) { |
|||
writeJsonError(ctx, http.StatusUnauthorized, errors.New("wrong jwt")) |
|||
return |
|||
} |
|||
|
|||
volumeId, err := needle.NewVolumeId(vid) |
|||
if err != nil { |
|||
glog.V(2).Infof("parsing volumd id %s error: %v", err, requestPath) |
|||
ctx.SetStatusCode(http.StatusBadRequest) |
|||
return |
|||
} |
|||
err = n.ParsePath(fid) |
|||
if err != nil { |
|||
glog.V(2).Infof("parsing fid %s error: %v", err, requestPath) |
|||
ctx.SetStatusCode(http.StatusBadRequest) |
|||
return |
|||
} |
|||
|
|||
// glog.V(4).Infoln("volume", volumeId, "reading", n)
|
|||
hasVolume := vs.store.HasVolume(volumeId) |
|||
_, hasEcVolume := vs.store.FindEcVolume(volumeId) |
|||
if !hasVolume && !hasEcVolume { |
|||
if !vs.ReadRedirect { |
|||
glog.V(2).Infoln("volume is not local:", err, requestPath) |
|||
ctx.SetStatusCode(http.StatusNotFound) |
|||
return |
|||
} |
|||
lookupResult, err := operation.Lookup(vs.GetMaster(), volumeId.String()) |
|||
glog.V(2).Infoln("volume", volumeId, "found on", lookupResult, "error", err) |
|||
if err == nil && len(lookupResult.Locations) > 0 { |
|||
u, _ := url.Parse(util.NormalizeUrl(lookupResult.Locations[0].PublicUrl)) |
|||
u.Path = fmt.Sprintf("%s/%s,%s", u.Path, vid, fid) |
|||
arg := url.Values{} |
|||
if c := ctx.FormValue("collection"); c != nil { |
|||
arg.Set("collection", string(c)) |
|||
} |
|||
u.RawQuery = arg.Encode() |
|||
ctx.Redirect(u.String(), http.StatusMovedPermanently) |
|||
|
|||
} else { |
|||
glog.V(2).Infof("lookup %s error: %v", requestPath, err) |
|||
ctx.SetStatusCode(http.StatusNotFound) |
|||
} |
|||
return |
|||
} |
|||
|
|||
cookie := n.Cookie |
|||
var count int |
|||
if hasVolume { |
|||
count, err = vs.store.ReadVolumeNeedle(volumeId, n) |
|||
} else if hasEcVolume { |
|||
count, err = vs.store.ReadEcShardNeedle(context.Background(), volumeId, n) |
|||
} |
|||
// glog.V(4).Infoln("read bytes", count, "error", err)
|
|||
if err != nil || count < 0 { |
|||
glog.V(0).Infof("read %s isNormalVolume %v error: %v", requestPath, hasVolume, err) |
|||
ctx.SetStatusCode(http.StatusNotFound) |
|||
return |
|||
} |
|||
if n.Cookie != cookie { |
|||
glog.V(0).Infof("request %s with cookie:%x expected:%x agent %s", requestPath, cookie, n.Cookie, string(ctx.UserAgent())) |
|||
ctx.SetStatusCode(http.StatusNotFound) |
|||
return |
|||
} |
|||
if n.LastModified != 0 { |
|||
ctx.Response.Header.Set("Last-Modified", time.Unix(int64(n.LastModified), 0).UTC().Format(http.TimeFormat)) |
|||
if ctx.Response.Header.Peek("If-Modified-Since") != nil { |
|||
if t, parseError := time.Parse(http.TimeFormat, string(ctx.Response.Header.Peek("If-Modified-Since"))); parseError == nil { |
|||
if t.Unix() >= int64(n.LastModified) { |
|||
ctx.SetStatusCode(http.StatusNotModified) |
|||
return |
|||
} |
|||
} |
|||
} |
|||
} |
|||
if inm := ctx.Response.Header.Peek("If-None-Match"); inm != nil && string(inm) == "\""+n.Etag()+"\"" { |
|||
ctx.SetStatusCode(http.StatusNotModified) |
|||
return |
|||
} |
|||
eTagMd5 := ctx.Response.Header.Peek("ETag-MD5") |
|||
if eTagMd5 != nil && string(eTagMd5) == "True" { |
|||
fastSetEtag(ctx, n.MD5()) |
|||
} else { |
|||
fastSetEtag(ctx, n.Etag()) |
|||
} |
|||
|
|||
if n.HasPairs() { |
|||
pairMap := make(map[string]string) |
|||
err = json.Unmarshal(n.Pairs, &pairMap) |
|||
if err != nil { |
|||
glog.V(0).Infoln("Unmarshal pairs error:", err) |
|||
} |
|||
for k, v := range pairMap { |
|||
ctx.Response.Header.Set(k, v) |
|||
} |
|||
} |
|||
|
|||
if vs.fastTryHandleChunkedFile(n, filename, ctx) { |
|||
return |
|||
} |
|||
|
|||
if n.NameSize > 0 && filename == "" { |
|||
filename = string(n.Name) |
|||
if ext == "" { |
|||
ext = path.Ext(filename) |
|||
} |
|||
} |
|||
mtype := "" |
|||
if n.MimeSize > 0 { |
|||
mt := string(n.Mime) |
|||
if !strings.HasPrefix(mt, "application/octet-stream") { |
|||
mtype = mt |
|||
} |
|||
} |
|||
|
|||
if ext != ".gz" { |
|||
if n.IsGzipped() { |
|||
acceptEncoding := ctx.Request.Header.Peek("Accept-Encoding") |
|||
if acceptEncoding != nil && strings.Contains(string(acceptEncoding), "gzip") { |
|||
ctx.Response.Header.Set("Content-Encoding", "gzip") |
|||
} else { |
|||
if n.Data, err = util.UnGzipData(n.Data); err != nil { |
|||
glog.V(0).Infoln("ungzip error:", err, requestPath) |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
rs := fastConditionallyResizeImages(bytes.NewReader(n.Data), ext, ctx) |
|||
|
|||
if e := fastWriteResponseContent(filename, mtype, rs, ctx); e != nil { |
|||
glog.V(2).Infoln("response write error:", e) |
|||
} |
|||
|
|||
} |
|||
|
|||
func (vs *VolumeServer) fastTryHandleChunkedFile(n *needle.Needle, fileName string, ctx *fasthttp.RequestCtx) (processed bool) { |
|||
if !n.IsChunkedManifest() || string(ctx.FormValue("cm")) == "false" { |
|||
return false |
|||
} |
|||
|
|||
chunkManifest, e := operation.LoadChunkManifest(n.Data, n.IsGzipped()) |
|||
if e != nil { |
|||
glog.V(0).Infof("load chunked manifest (%s) error: %v", string(ctx.Path()), e) |
|||
return false |
|||
} |
|||
if fileName == "" && chunkManifest.Name != "" { |
|||
fileName = chunkManifest.Name |
|||
} |
|||
|
|||
ext := path.Ext(fileName) |
|||
|
|||
mType := "" |
|||
if chunkManifest.Mime != "" { |
|||
mt := chunkManifest.Mime |
|||
if !strings.HasPrefix(mt, "application/octet-stream") { |
|||
mType = mt |
|||
} |
|||
} |
|||
|
|||
ctx.Response.Header.Set("X-File-Store", "chunked") |
|||
|
|||
chunkedFileReader := &operation.ChunkedFileReader{ |
|||
Manifest: chunkManifest, |
|||
Master: vs.GetMaster(), |
|||
} |
|||
defer chunkedFileReader.Close() |
|||
|
|||
rs := fastConditionallyResizeImages(chunkedFileReader, ext, ctx) |
|||
|
|||
if e := fastWriteResponseContent(fileName, mType, rs, ctx); e != nil { |
|||
glog.V(2).Infoln("response write error:", e) |
|||
} |
|||
return true |
|||
} |
|||
|
|||
func fastConditionallyResizeImages(originalDataReaderSeeker io.ReadSeeker, ext string, ctx *fasthttp.RequestCtx) io.ReadSeeker { |
|||
rs := originalDataReaderSeeker |
|||
if len(ext) > 0 { |
|||
ext = strings.ToLower(ext) |
|||
} |
|||
if ext == ".png" || ext == ".jpg" || ext == ".jpeg" || ext == ".gif" { |
|||
width, height := 0, 0 |
|||
formWidth, formHeight := ctx.FormValue("width"), ctx.FormValue("height") |
|||
if formWidth != nil { |
|||
width, _ = strconv.Atoi(string(formWidth)) |
|||
} |
|||
if formHeight != nil { |
|||
height, _ = strconv.Atoi(string(formHeight)) |
|||
} |
|||
formMode := ctx.FormValue("mode") |
|||
rs, _, _ = images.Resized(ext, originalDataReaderSeeker, width, height, string(formMode)) |
|||
} |
|||
return rs |
|||
} |
|||
|
|||
func fastWriteResponseContent(filename, mimeType string, rs io.ReadSeeker, ctx *fasthttp.RequestCtx) error { |
|||
totalSize, e := rs.Seek(0, 2) |
|||
if mimeType == "" { |
|||
if ext := path.Ext(filename); ext != "" { |
|||
mimeType = mime.TypeByExtension(ext) |
|||
} |
|||
} |
|||
if mimeType != "" { |
|||
ctx.Response.Header.Set("Content-Type", mimeType) |
|||
} |
|||
if filename != "" { |
|||
contentDisposition := "inline" |
|||
dlFormValue := ctx.FormValue("dl") |
|||
if dlFormValue != nil { |
|||
if dl, _ := strconv.ParseBool(string(dlFormValue)); dl { |
|||
contentDisposition = "attachment" |
|||
} |
|||
} |
|||
ctx.Response.Header.Set("Content-Disposition", contentDisposition+`; filename="`+fileNameEscaper.Replace(filename)+`"`) |
|||
} |
|||
ctx.Response.Header.Set("Accept-Ranges", "bytes") |
|||
if ctx.IsHead() { |
|||
ctx.Response.Header.Set("Content-Length", strconv.FormatInt(totalSize, 10)) |
|||
return nil |
|||
} |
|||
rangeReq := ctx.FormValue("Range") |
|||
if rangeReq == nil { |
|||
ctx.Response.Header.Set("Content-Length", strconv.FormatInt(totalSize, 10)) |
|||
if _, e = rs.Seek(0, 0); e != nil { |
|||
return e |
|||
} |
|||
_, e = io.Copy(ctx.Response.BodyWriter(), rs) |
|||
return e |
|||
} |
|||
|
|||
//the rest is dealing with partial content request
|
|||
//mostly copy from src/pkg/net/http/fs.go
|
|||
ranges, err := parseRange(string(rangeReq), totalSize) |
|||
if err != nil { |
|||
ctx.Response.SetStatusCode(http.StatusRequestedRangeNotSatisfiable) |
|||
ctxError(ctx, err.Error(), http.StatusRequestedRangeNotSatisfiable) |
|||
return nil |
|||
} |
|||
if sumRangesSize(ranges) > totalSize { |
|||
// The total number of bytes in all the ranges
|
|||
// is larger than the size of the file by
|
|||
// itself, so this is probably an attack, or a
|
|||
// dumb client. Ignore the range request.
|
|||
return nil |
|||
} |
|||
if len(ranges) == 0 { |
|||
return nil |
|||
} |
|||
if len(ranges) == 1 { |
|||
// RFC 2616, Section 14.16:
|
|||
// "When an HTTP message includes the content of a single
|
|||
// range (for example, a response to a request for a
|
|||
// single range, or to a request for a set of ranges
|
|||
// that overlap without any holes), this content is
|
|||
// transmitted with a Content-Range header, and a
|
|||
// Content-Length header showing the number of bytes
|
|||
// actually transferred.
|
|||
// ...
|
|||
// A response to a request for a single range MUST NOT
|
|||
// be sent using the multipart/byteranges media type."
|
|||
ra := ranges[0] |
|||
ctx.Response.Header.Set("Content-Length", strconv.FormatInt(ra.length, 10)) |
|||
ctx.Response.Header.Set("Content-Range", ra.contentRange(totalSize)) |
|||
ctx.Response.SetStatusCode(http.StatusPartialContent) |
|||
if _, e = rs.Seek(ra.start, 0); e != nil { |
|||
return e |
|||
} |
|||
|
|||
_, e = io.CopyN(ctx.Response.BodyWriter(), rs, ra.length) |
|||
return e |
|||
} |
|||
// process multiple ranges
|
|||
for _, ra := range ranges { |
|||
if ra.start > totalSize { |
|||
ctxError(ctx, "Out of Range", http.StatusRequestedRangeNotSatisfiable) |
|||
return nil |
|||
} |
|||
} |
|||
sendSize := rangesMIMESize(ranges, mimeType, totalSize) |
|||
pr, pw := io.Pipe() |
|||
mw := multipart.NewWriter(pw) |
|||
ctx.Response.Header.Set("Content-Type", "multipart/byteranges; boundary="+mw.Boundary()) |
|||
sendContent := pr |
|||
defer pr.Close() // cause writing goroutine to fail and exit if CopyN doesn't finish.
|
|||
go func() { |
|||
for _, ra := range ranges { |
|||
part, e := mw.CreatePart(ra.mimeHeader(mimeType, totalSize)) |
|||
if e != nil { |
|||
pw.CloseWithError(e) |
|||
return |
|||
} |
|||
if _, e = rs.Seek(ra.start, 0); e != nil { |
|||
pw.CloseWithError(e) |
|||
return |
|||
} |
|||
if _, e = io.CopyN(part, rs, ra.length); e != nil { |
|||
pw.CloseWithError(e) |
|||
return |
|||
} |
|||
} |
|||
mw.Close() |
|||
pw.Close() |
|||
}() |
|||
if ctx.Response.Header.Peek("Content-Encoding") == nil { |
|||
ctx.Response.Header.Set("Content-Length", strconv.FormatInt(sendSize, 10)) |
|||
} |
|||
ctx.Response.Header.SetStatusCode(http.StatusPartialContent) |
|||
_, e = io.CopyN(ctx.Response.BodyWriter(), sendContent, sendSize) |
|||
return e |
|||
} |
|||
|
|||
func fastSetEtag(ctx *fasthttp.RequestCtx, etag string) { |
|||
if etag != "" { |
|||
if strings.HasPrefix(etag, "\"") { |
|||
ctx.Response.Header.Set("ETag", etag) |
|||
} else { |
|||
ctx.Response.Header.Set("ETag", "\""+etag+"\"") |
|||
} |
|||
} |
|||
} |
|||
|
|||
func ctxError(ctx *fasthttp.RequestCtx, error string, code int) { |
|||
ctx.Response.Header.Set("Content-Type", "text/plain; charset=utf-8") |
|||
ctx.Response.Header.Set("X-Content-Type-Options", "nosniff") |
|||
ctx.Response.SetStatusCode(code) |
|||
fmt.Fprintln(ctx.Response.BodyWriter(), error) |
|||
} |
@ -0,0 +1,156 @@ |
|||
package weed_server |
|||
|
|||
import ( |
|||
"context" |
|||
"errors" |
|||
"fmt" |
|||
"net/http" |
|||
"strconv" |
|||
"time" |
|||
|
|||
"github.com/valyala/fasthttp" |
|||
|
|||
"github.com/chrislusf/seaweedfs/weed/glog" |
|||
"github.com/chrislusf/seaweedfs/weed/operation" |
|||
"github.com/chrislusf/seaweedfs/weed/stats" |
|||
"github.com/chrislusf/seaweedfs/weed/storage/needle" |
|||
"github.com/chrislusf/seaweedfs/weed/topology" |
|||
) |
|||
|
|||
func (vs *VolumeServer) fastPostHandler(ctx *fasthttp.RequestCtx) { |
|||
|
|||
stats.VolumeServerRequestCounter.WithLabelValues("post").Inc() |
|||
start := time.Now() |
|||
defer func() { |
|||
stats.VolumeServerRequestHistogram.WithLabelValues("post").Observe(time.Since(start).Seconds()) |
|||
}() |
|||
|
|||
requestPath := string(ctx.Path()) |
|||
|
|||
vid, fid, _, _, _ := parseURLPath(requestPath) |
|||
volumeId, ve := needle.NewVolumeId(vid) |
|||
if ve != nil { |
|||
glog.V(0).Infoln("NewVolumeId error:", ve) |
|||
writeJsonError(ctx, http.StatusBadRequest, ve) |
|||
return |
|||
} |
|||
|
|||
if !vs.maybeCheckJwtAuthorization(ctx, vid, fid, true) { |
|||
writeJsonError(ctx, http.StatusUnauthorized, errors.New("wrong jwt")) |
|||
return |
|||
} |
|||
|
|||
needle, originalSize, ne := needle.CreateNeedleFromRequest(ctx, vs.FixJpgOrientation, vs.fileSizeLimitBytes) |
|||
if ne != nil { |
|||
writeJsonError(ctx, http.StatusBadRequest, ne) |
|||
return |
|||
} |
|||
|
|||
ret := operation.UploadResult{} |
|||
_, isUnchanged, writeError := topology.OldReplicatedWrite(vs.GetMaster(), vs.store, volumeId, needle, r) |
|||
|
|||
// http 304 status code does not allow body
|
|||
if writeError == nil && isUnchanged { |
|||
ctx.SetStatusCode(http.StatusNotModified) |
|||
return |
|||
} |
|||
|
|||
httpStatus := http.StatusCreated |
|||
if writeError != nil { |
|||
httpStatus = http.StatusInternalServerError |
|||
ret.Error = writeError.Error() |
|||
} |
|||
if needle.HasName() { |
|||
ret.Name = string(needle.Name) |
|||
} |
|||
ret.Size = uint32(originalSize) |
|||
ret.ETag = needle.Etag() |
|||
fastSetEtag(ctx, ret.ETag) |
|||
writeJsonQuiet(ctx, httpStatus, ret) |
|||
} |
|||
|
|||
func (vs *VolumeServer) DeleteHandler(ctx *fasthttp.RequestCtx) { |
|||
|
|||
stats.VolumeServerRequestCounter.WithLabelValues("delete").Inc() |
|||
start := time.Now() |
|||
defer func() { |
|||
stats.VolumeServerRequestHistogram.WithLabelValues("delete").Observe(time.Since(start).Seconds()) |
|||
}() |
|||
|
|||
requestPath := string(ctx.Path()) |
|||
n := new(needle.Needle) |
|||
vid, fid, _, _, _ := parseURLPath(requestPath) |
|||
volumeId, _ := needle.NewVolumeId(vid) |
|||
n.ParsePath(fid) |
|||
|
|||
if !vs.maybeCheckJwtAuthorization(ctx, vid, fid, true) { |
|||
writeJsonError(ctx, http.StatusUnauthorized, errors.New("wrong jwt")) |
|||
return |
|||
} |
|||
|
|||
// glog.V(2).Infof("volume %s deleting %s", vid, n)
|
|||
|
|||
cookie := n.Cookie |
|||
|
|||
ecVolume, hasEcVolume := vs.store.FindEcVolume(volumeId) |
|||
|
|||
if hasEcVolume { |
|||
count, err := vs.store.DeleteEcShardNeedle(context.Background(), ecVolume, n, cookie) |
|||
writeDeleteResult(err, count, ctx) |
|||
return |
|||
} |
|||
|
|||
_, ok := vs.store.ReadVolumeNeedle(volumeId, n) |
|||
if ok != nil { |
|||
m := make(map[string]uint32) |
|||
m["size"] = 0 |
|||
writeJsonQuiet(ctx, http.StatusNotFound, m) |
|||
return |
|||
} |
|||
|
|||
if n.Cookie != cookie { |
|||
glog.V(0).Infof("delete %s with unmaching cookie from %s agent %s", requestPath, ctx.RemoteAddr(), ctx.UserAgent()) |
|||
writeJsonError(ctx, http.StatusBadRequest, errors.New("File Random Cookie does not match.")) |
|||
return |
|||
} |
|||
|
|||
count := int64(n.Size) |
|||
|
|||
if n.IsChunkedManifest() { |
|||
chunkManifest, e := operation.LoadChunkManifest(n.Data, n.IsGzipped()) |
|||
if e != nil { |
|||
writeJsonError(ctx, http.StatusInternalServerError, fmt.Errorf("Load chunks manifest error: %v", e)) |
|||
return |
|||
} |
|||
// make sure all chunks had deleted before delete manifest
|
|||
if e := chunkManifest.DeleteChunks(vs.GetMaster(), vs.grpcDialOption); e != nil { |
|||
writeJsonError(ctx, http.StatusInternalServerError, fmt.Errorf("Delete chunks error: %v", e)) |
|||
return |
|||
} |
|||
count = chunkManifest.Size |
|||
} |
|||
|
|||
n.LastModified = uint64(time.Now().Unix()) |
|||
tsValue := ctx.FormValue("ts") |
|||
if tsValue != nil { |
|||
modifiedTime, err := strconv.ParseInt(string(tsValue), 10, 64) |
|||
if err == nil { |
|||
n.LastModified = uint64(modifiedTime) |
|||
} |
|||
} |
|||
|
|||
_, err := topology.ReplicatedDelete(vs.GetMaster(), vs.store, volumeId, n, ctx) |
|||
|
|||
writeDeleteResult(err, count, ctx) |
|||
|
|||
} |
|||
|
|||
func writeDeleteResult(err error, count int64, ctx *fasthttp.RequestCtx) { |
|||
if err == nil { |
|||
m := make(map[string]int64) |
|||
m["size"] = count |
|||
writeJsonQuiet(ctx, http.StatusAccepted, m) |
|||
} else { |
|||
writeJsonQuiet(ctx, http.StatusInternalServerError, fmt.Errorf("Deletion Failed: %v", err)) |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue