2015-02-26 07:59:07 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2015-12-15 06:38:58 +00:00
|
|
|
"fmt"
|
2015-02-26 07:59:07 +00:00
|
|
|
"net/http"
|
2018-09-12 07:46:12 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2018-09-12 08:00:57 +00:00
|
|
|
"time"
|
2015-02-26 07:59:07 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/topology"
|
2015-02-26 07:59:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (vs *VolumeServer) PostHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if e := r.ParseForm(); e != nil {
|
|
|
|
glog.V(0).Infoln("form parse error:", e)
|
|
|
|
writeJsonError(w, r, http.StatusBadRequest, e)
|
|
|
|
return
|
|
|
|
}
|
2019-02-14 08:08:20 +00:00
|
|
|
|
|
|
|
vid, fid, _, _, _ := parseURLPath(r.URL.Path)
|
2015-02-26 07:59:07 +00:00
|
|
|
volumeId, ve := storage.NewVolumeId(vid)
|
|
|
|
if ve != nil {
|
|
|
|
glog.V(0).Infoln("NewVolumeId error:", ve)
|
|
|
|
writeJsonError(w, r, http.StatusBadRequest, ve)
|
|
|
|
return
|
|
|
|
}
|
2019-02-14 08:08:20 +00:00
|
|
|
|
|
|
|
if !vs.maybeCheckJwtAuthorization(r, vid, fid) {
|
|
|
|
writeJsonError(w, r, http.StatusUnauthorized, errors.New("wrong jwt"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-12-22 21:11:07 +00:00
|
|
|
needle, originalSize, ne := storage.CreateNeedleFromRequest(r, vs.FixJpgOrientation)
|
2015-02-26 07:59:07 +00:00
|
|
|
if ne != nil {
|
|
|
|
writeJsonError(w, r, http.StatusBadRequest, ne)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := operation.UploadResult{}
|
2019-03-18 07:35:15 +00:00
|
|
|
_, errorStatus := topology.ReplicatedWrite(vs.GetMaster(), vs.store, volumeId, needle, r)
|
2015-02-26 07:59:07 +00:00
|
|
|
httpStatus := http.StatusCreated
|
|
|
|
if errorStatus != "" {
|
|
|
|
httpStatus = http.StatusInternalServerError
|
|
|
|
ret.Error = errorStatus
|
|
|
|
}
|
|
|
|
if needle.HasName() {
|
|
|
|
ret.Name = string(needle.Name)
|
|
|
|
}
|
2018-12-22 21:11:07 +00:00
|
|
|
ret.Size = uint32(originalSize)
|
2019-01-02 20:57:54 +00:00
|
|
|
ret.ETag = needle.Etag()
|
|
|
|
setEtag(w, ret.ETag)
|
2015-02-26 07:59:07 +00:00
|
|
|
writeJsonQuiet(w, r, httpStatus, ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vs *VolumeServer) DeleteHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
n := new(storage.Needle)
|
|
|
|
vid, fid, _, _, _ := parseURLPath(r.URL.Path)
|
|
|
|
volumeId, _ := storage.NewVolumeId(vid)
|
|
|
|
n.ParsePath(fid)
|
|
|
|
|
2019-02-14 08:08:20 +00:00
|
|
|
if !vs.maybeCheckJwtAuthorization(r, vid, fid) {
|
|
|
|
writeJsonError(w, r, http.StatusUnauthorized, errors.New("wrong jwt"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-15 07:39:56 +00:00
|
|
|
// glog.V(2).Infof("volume %s deleting %s", vid, n)
|
2015-02-26 07:59:07 +00:00
|
|
|
|
|
|
|
cookie := n.Cookie
|
|
|
|
|
2016-04-14 08:30:26 +00:00
|
|
|
_, ok := vs.store.ReadVolumeNeedle(volumeId, n)
|
|
|
|
if ok != nil {
|
2015-02-26 07:59:07 +00:00
|
|
|
m := make(map[string]uint32)
|
|
|
|
m["size"] = 0
|
|
|
|
writeJsonQuiet(w, r, http.StatusNotFound, m)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.Cookie != cookie {
|
|
|
|
glog.V(0).Infoln("delete", r.URL.Path, "with unmaching cookie from ", r.RemoteAddr, "agent", r.UserAgent())
|
2015-12-03 08:27:02 +00:00
|
|
|
writeJsonError(w, r, http.StatusBadRequest, errors.New("File Random Cookie does not match."))
|
2015-02-26 07:59:07 +00:00
|
|
|
return
|
|
|
|
}
|
2015-12-02 13:45:26 +00:00
|
|
|
|
|
|
|
count := int64(n.Size)
|
|
|
|
|
2015-12-03 08:27:02 +00:00
|
|
|
if n.IsChunkedManifest() {
|
2015-12-02 13:27:29 +00:00
|
|
|
chunkManifest, e := operation.LoadChunkManifest(n.Data, n.IsGzipped())
|
|
|
|
if e != nil {
|
2015-12-15 06:38:58 +00:00
|
|
|
writeJsonError(w, r, http.StatusInternalServerError, fmt.Errorf("Load chunks manifest error: %v", e))
|
2015-12-02 13:27:29 +00:00
|
|
|
return
|
|
|
|
}
|
2015-12-03 13:35:33 +00:00
|
|
|
// make sure all chunks had deleted before delete manifest
|
2019-02-18 20:11:52 +00:00
|
|
|
if e := chunkManifest.DeleteChunks(vs.GetMaster(), vs.grpcDialOption); e != nil {
|
2015-12-15 06:38:58 +00:00
|
|
|
writeJsonError(w, r, http.StatusInternalServerError, fmt.Errorf("Delete chunks error: %v", e))
|
2015-12-02 13:27:29 +00:00
|
|
|
return
|
|
|
|
}
|
2015-12-02 13:35:50 +00:00
|
|
|
count = chunkManifest.Size
|
2015-12-02 13:27:29 +00:00
|
|
|
}
|
2015-02-26 07:59:07 +00:00
|
|
|
|
2018-07-15 03:26:45 +00:00
|
|
|
n.LastModified = uint64(time.Now().Unix())
|
|
|
|
if len(r.FormValue("ts")) > 0 {
|
|
|
|
modifiedTime, err := strconv.ParseInt(r.FormValue("ts"), 10, 64)
|
|
|
|
if err == nil {
|
|
|
|
n.LastModified = uint64(modifiedTime)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-01 07:39:39 +00:00
|
|
|
_, err := topology.ReplicatedDelete(vs.GetMaster(), vs.store, volumeId, n, r)
|
2015-02-26 07:59:07 +00:00
|
|
|
|
2016-04-28 16:29:21 +00:00
|
|
|
if err == nil {
|
2015-12-02 13:45:26 +00:00
|
|
|
m := make(map[string]int64)
|
|
|
|
m["size"] = count
|
2015-02-26 07:59:07 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusAccepted, m)
|
|
|
|
} else {
|
2016-04-28 16:29:21 +00:00
|
|
|
writeJsonError(w, r, http.StatusInternalServerError, fmt.Errorf("Deletion Failed: %v", err))
|
2015-02-26 07:59:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-09 23:25:43 +00:00
|
|
|
func setEtag(w http.ResponseWriter, etag string) {
|
|
|
|
if etag != "" {
|
2018-09-12 07:46:12 +00:00
|
|
|
if strings.HasPrefix(etag, "\"") {
|
|
|
|
w.Header().Set("ETag", etag)
|
|
|
|
} else {
|
|
|
|
w.Header().Set("ETag", "\""+etag+"\"")
|
|
|
|
}
|
2018-09-09 23:25:43 +00:00
|
|
|
}
|
|
|
|
}
|