2013-12-02 09:37:36 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2014-04-26 05:28:01 +00:00
|
|
|
"bytes"
|
2013-12-02 09:37:36 +00:00
|
|
|
"code.google.com/p/weed-fs/go/glog"
|
|
|
|
"code.google.com/p/weed-fs/go/operation"
|
2014-03-25 20:46:59 +00:00
|
|
|
"code.google.com/p/weed-fs/go/stats"
|
2013-12-02 09:37:36 +00:00
|
|
|
"code.google.com/p/weed-fs/go/storage"
|
2014-04-13 08:29:52 +00:00
|
|
|
"code.google.com/p/weed-fs/go/topology"
|
2014-04-26 05:28:01 +00:00
|
|
|
"github.com/disintegration/imaging"
|
|
|
|
"image"
|
|
|
|
"image/gif"
|
|
|
|
"image/jpeg"
|
|
|
|
"image/png"
|
2013-12-02 09:37:36 +00:00
|
|
|
"mime"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var fileNameEscaper = strings.NewReplacer("\\", "\\\\", "\"", "\\\"")
|
|
|
|
|
|
|
|
func (vs *VolumeServer) storeHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
2014-03-25 20:46:59 +00:00
|
|
|
stats.ReadRequest()
|
2013-12-02 09:37:36 +00:00
|
|
|
vs.GetOrHeadHandler(w, r, true)
|
|
|
|
case "HEAD":
|
2014-03-25 20:46:59 +00:00
|
|
|
stats.ReadRequest()
|
2013-12-02 09:37:36 +00:00
|
|
|
vs.GetOrHeadHandler(w, r, false)
|
|
|
|
case "DELETE":
|
2014-03-25 20:46:59 +00:00
|
|
|
stats.DeleteRequest()
|
2013-12-02 09:37:36 +00:00
|
|
|
secure(vs.whiteList, vs.DeleteHandler)(w, r)
|
|
|
|
case "PUT":
|
2014-03-25 20:46:59 +00:00
|
|
|
stats.WriteRequest()
|
2013-12-02 09:37:36 +00:00
|
|
|
secure(vs.whiteList, vs.PostHandler)(w, r)
|
|
|
|
case "POST":
|
2014-03-25 20:46:59 +00:00
|
|
|
stats.WriteRequest()
|
2013-12-02 09:37:36 +00:00
|
|
|
secure(vs.whiteList, vs.PostHandler)(w, r)
|
|
|
|
}
|
|
|
|
}
|
2014-04-14 07:13:18 +00:00
|
|
|
|
2013-12-02 09:37:36 +00:00
|
|
|
func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, isGetMethod bool) {
|
|
|
|
n := new(storage.Needle)
|
|
|
|
vid, fid, filename, ext, _ := parseURLPath(r.URL.Path)
|
|
|
|
volumeId, err := storage.NewVolumeId(vid)
|
|
|
|
if err != nil {
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(2).Infoln("parsing error:", err, r.URL.Path)
|
2014-02-06 20:03:25 +00:00
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
2013-12-02 09:37:36 +00:00
|
|
|
return
|
|
|
|
}
|
2013-12-09 21:53:24 +00:00
|
|
|
err = n.ParsePath(fid)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(2).Infoln("parsing fid error:", err, r.URL.Path)
|
2014-02-06 20:03:25 +00:00
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
2013-12-09 21:53:24 +00:00
|
|
|
return
|
|
|
|
}
|
2013-12-02 09:37:36 +00:00
|
|
|
|
2014-03-19 11:46:42 +00:00
|
|
|
glog.V(4).Infoln("volume", volumeId, "reading", n)
|
2013-12-02 09:37:36 +00:00
|
|
|
if !vs.store.HasVolume(volumeId) {
|
2014-02-15 01:10:49 +00:00
|
|
|
lookupResult, err := operation.Lookup(vs.masterNode, volumeId.String())
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(2).Infoln("volume", volumeId, "found on", lookupResult, "error", err)
|
2014-02-06 20:00:58 +00:00
|
|
|
if err == nil && len(lookupResult.Locations) > 0 {
|
2013-12-02 09:37:36 +00:00
|
|
|
http.Redirect(w, r, "http://"+lookupResult.Locations[0].PublicUrl+r.URL.Path, http.StatusMovedPermanently)
|
|
|
|
} else {
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(2).Infoln("lookup error:", err, r.URL.Path)
|
2013-12-02 09:37:36 +00:00
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
cookie := n.Cookie
|
|
|
|
count, e := vs.store.Read(volumeId, n)
|
2014-03-19 11:46:42 +00:00
|
|
|
glog.V(4).Infoln("read bytes", count, "error", e)
|
2013-12-02 09:37:36 +00:00
|
|
|
if e != nil || count <= 0 {
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(0).Infoln("read error:", e, r.URL.Path)
|
2013-12-02 09:37:36 +00:00
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if n.Cookie != cookie {
|
2014-03-20 18:07:15 +00:00
|
|
|
glog.V(0).Infoln("request", r.URL.Path, "with unmaching cookie seen:", cookie, "expected:", n.Cookie, "from", r.RemoteAddr, "agent", r.UserAgent())
|
2013-12-02 09:37:36 +00:00
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if n.LastModified != 0 {
|
|
|
|
w.Header().Set("Last-Modified", time.Unix(int64(n.LastModified), 0).UTC().Format(http.TimeFormat))
|
|
|
|
if r.Header.Get("If-Modified-Since") != "" {
|
|
|
|
if t, parseError := time.Parse(http.TimeFormat, r.Header.Get("If-Modified-Since")); parseError == nil {
|
|
|
|
if t.Unix() >= int64(n.LastModified) {
|
|
|
|
w.WriteHeader(http.StatusNotModified)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if n.NameSize > 0 && filename == "" {
|
|
|
|
filename = string(n.Name)
|
|
|
|
dotIndex := strings.LastIndex(filename, ".")
|
|
|
|
if dotIndex > 0 {
|
|
|
|
ext = filename[dotIndex:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mtype := ""
|
|
|
|
if ext != "" {
|
|
|
|
mtype = mime.TypeByExtension(ext)
|
|
|
|
}
|
|
|
|
if n.MimeSize > 0 {
|
|
|
|
mtype = string(n.Mime)
|
|
|
|
}
|
|
|
|
if mtype != "" {
|
|
|
|
w.Header().Set("Content-Type", mtype)
|
|
|
|
}
|
|
|
|
if filename != "" {
|
2014-05-13 05:59:00 +00:00
|
|
|
w.Header().Set("Content-Disposition", "filename=\""+fileNameEscaper.Replace(filename)+"\"")
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
if ext != ".gz" {
|
|
|
|
if n.IsGzipped() {
|
|
|
|
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
|
|
|
|
w.Header().Set("Content-Encoding", "gzip")
|
|
|
|
} else {
|
|
|
|
if n.Data, err = storage.UnGzipData(n.Data); err != nil {
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(0).Infoln("lookup error:", err, r.URL.Path)
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-26 05:28:01 +00:00
|
|
|
if ext == ".png" || ext == ".jpg" || ext == ".gif" {
|
2014-05-07 19:52:42 +00:00
|
|
|
width, height := 0, 0
|
|
|
|
if r.FormValue("width") != "" {
|
|
|
|
width, _ = strconv.Atoi(r.FormValue("width"))
|
|
|
|
}
|
|
|
|
if r.FormValue("height") != "" {
|
|
|
|
height, _ = strconv.Atoi(r.FormValue("height"))
|
|
|
|
}
|
|
|
|
if width != 0 || height != 0 {
|
|
|
|
if srcImage, _, err := image.Decode(bytes.NewReader(n.Data)); err == nil {
|
2014-04-26 05:28:01 +00:00
|
|
|
bounds := srcImage.Bounds()
|
|
|
|
var dstImage *image.NRGBA
|
|
|
|
if width == height && bounds.Dx() != bounds.Dy() {
|
|
|
|
dstImage = imaging.Thumbnail(srcImage, width, height, imaging.Lanczos)
|
|
|
|
} else {
|
|
|
|
dstImage = imaging.Resize(srcImage, width, height, imaging.Lanczos)
|
|
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
|
|
switch ext {
|
|
|
|
case ".png":
|
|
|
|
png.Encode(&buf, dstImage)
|
|
|
|
case ".jpg":
|
|
|
|
jpeg.Encode(&buf, dstImage, nil)
|
|
|
|
case ".gif":
|
|
|
|
gif.Encode(&buf, dstImage, nil)
|
|
|
|
}
|
|
|
|
n.Data = buf.Bytes()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-02 09:37:36 +00:00
|
|
|
w.Header().Set("Content-Length", strconv.Itoa(len(n.Data)))
|
|
|
|
if isGetMethod {
|
|
|
|
if _, e = w.Write(n.Data); e != nil {
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(0).Infoln("response write error:", e)
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-14 07:13:18 +00:00
|
|
|
|
2013-12-02 09:37:36 +00:00
|
|
|
func (vs *VolumeServer) PostHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if e := r.ParseForm(); e != nil {
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(0).Infoln("form parse error:", e)
|
2013-12-02 09:37:36 +00:00
|
|
|
writeJsonError(w, r, e)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
vid, _, _, _, _ := parseURLPath(r.URL.Path)
|
|
|
|
volumeId, ve := storage.NewVolumeId(vid)
|
|
|
|
if ve != nil {
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(0).Infoln("NewVolumeId error:", ve)
|
2013-12-02 09:37:36 +00:00
|
|
|
writeJsonError(w, r, ve)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
needle, ne := storage.NewNeedle(r)
|
|
|
|
if ne != nil {
|
|
|
|
writeJsonError(w, r, ne)
|
|
|
|
return
|
|
|
|
}
|
2014-04-15 17:01:13 +00:00
|
|
|
|
|
|
|
ret := operation.UploadResult{}
|
|
|
|
size, errorStatus := topology.ReplicatedWrite(vs.masterNode, vs.store, volumeId, needle, r)
|
2013-12-02 09:37:36 +00:00
|
|
|
if errorStatus == "" {
|
|
|
|
w.WriteHeader(http.StatusCreated)
|
|
|
|
} else {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
2014-04-15 17:01:13 +00:00
|
|
|
ret.Error = errorStatus
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
2014-03-30 20:26:44 +00:00
|
|
|
if needle.HasName() {
|
2014-04-15 17:01:13 +00:00
|
|
|
ret.Name = string(needle.Name)
|
2014-03-30 20:26:44 +00:00
|
|
|
}
|
2014-04-15 17:01:13 +00:00
|
|
|
ret.Size = size
|
|
|
|
writeJsonQuiet(w, r, ret)
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
2014-04-14 07:13:18 +00:00
|
|
|
|
2013-12-02 09:37:36 +00:00
|
|
|
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)
|
|
|
|
|
2013-12-09 21:27:09 +00:00
|
|
|
glog.V(2).Infoln("deleting", n)
|
2013-12-02 09:37:36 +00:00
|
|
|
|
|
|
|
cookie := n.Cookie
|
|
|
|
count, ok := vs.store.Read(volumeId, n)
|
|
|
|
|
|
|
|
if ok != nil {
|
|
|
|
m := make(map[string]uint32)
|
|
|
|
m["size"] = 0
|
|
|
|
writeJsonQuiet(w, r, m)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.Cookie != cookie {
|
2014-03-20 18:07:15 +00:00
|
|
|
glog.V(0).Infoln("delete", r.URL.Path, "with unmaching cookie from ", r.RemoteAddr, "agent", r.UserAgent())
|
2013-12-02 09:37:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
n.Size = 0
|
2014-04-13 08:29:52 +00:00
|
|
|
ret := topology.ReplicatedDelete(vs.masterNode, vs.store, volumeId, n, r)
|
2013-12-02 09:37:36 +00:00
|
|
|
|
|
|
|
if ret != 0 {
|
|
|
|
w.WriteHeader(http.StatusAccepted)
|
|
|
|
} else {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
|
|
|
|
m := make(map[string]uint32)
|
|
|
|
m["size"] = uint32(count)
|
|
|
|
writeJsonQuiet(w, r, m)
|
|
|
|
}
|
2014-04-14 08:00:09 +00:00
|
|
|
|
|
|
|
//Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
|
|
|
|
func (vs *VolumeServer) batchDeleteHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
r.ParseForm()
|
2014-04-15 16:09:40 +00:00
|
|
|
var ret []operation.DeleteResult
|
2014-04-14 08:00:09 +00:00
|
|
|
for _, fid := range r.Form["fid"] {
|
2014-04-15 16:09:40 +00:00
|
|
|
vid, id_cookie, err := operation.ParseFileId(fid)
|
|
|
|
if err != nil {
|
|
|
|
ret = append(ret, operation.DeleteResult{Fid: fid, Error: err.Error()})
|
2014-04-14 08:00:09 +00:00
|
|
|
continue
|
|
|
|
}
|
2014-04-15 16:09:40 +00:00
|
|
|
n := new(storage.Needle)
|
2014-04-14 08:00:09 +00:00
|
|
|
volumeId, _ := storage.NewVolumeId(vid)
|
|
|
|
n.ParsePath(id_cookie)
|
|
|
|
glog.V(4).Infoln("batch deleting", n)
|
|
|
|
cookie := n.Cookie
|
|
|
|
if _, err := vs.store.Read(volumeId, n); err != nil {
|
2014-04-15 16:09:40 +00:00
|
|
|
ret = append(ret, operation.DeleteResult{Fid: fid, Error: err.Error()})
|
2014-04-14 08:00:09 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
if n.Cookie != cookie {
|
2014-04-15 16:09:40 +00:00
|
|
|
ret = append(ret, operation.DeleteResult{Fid: fid, Error: "File Random Cookie does not match."})
|
2014-04-14 08:00:09 +00:00
|
|
|
glog.V(0).Infoln("deleting", fid, "with unmaching cookie from ", r.RemoteAddr, "agent", r.UserAgent())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if size, err := vs.store.Delete(volumeId, n); err != nil {
|
2014-04-15 16:09:40 +00:00
|
|
|
ret = append(ret, operation.DeleteResult{Fid: fid, Error: err.Error()})
|
2014-04-14 08:00:09 +00:00
|
|
|
} else {
|
2014-04-15 16:09:40 +00:00
|
|
|
ret = append(ret, operation.DeleteResult{Fid: fid, Size: int(size)})
|
2014-04-14 08:00:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusAccepted)
|
|
|
|
|
|
|
|
writeJsonQuiet(w, r, ret)
|
|
|
|
}
|