From 535b1610c81c9e65826e6808348a5796b17ab57f Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Thu, 2 Jun 2016 20:44:50 -0700 Subject: [PATCH] add fid and url to filer post result fix https://github.com/chrislusf/seaweedfs/issues/274 --- weed/server/filer_server_handlers_write.go | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/weed/server/filer_server_handlers_write.go b/weed/server/filer_server_handlers_write.go index 8c89afeca..188696213 100644 --- a/weed/server/filer_server_handlers_write.go +++ b/weed/server/filer_server_handlers_write.go @@ -23,6 +23,14 @@ type analogueReader struct { // So that it implements the io.ReadCloser interface func (m analogueReader) Close() error { return nil } +type FilerPostResult struct { + Name string `json:"name,omitempty"` + Size uint32 `json:"size,omitempty"` + Error string `json:"error,omitempty"` + Fid string `json:"fid,omitempty"` + Url string `json:"url,omitempty"` +} + func (fs *FilerServer) PostHandler(w http.ResponseWriter, r *http.Request) { query := r.URL.Query() replication := query.Get("replication") @@ -138,8 +146,15 @@ func (fs *FilerServer) PostHandler(w http.ResponseWriter, r *http.Request) { writeJsonError(w, r, http.StatusInternalServerError, db_err) return } - w.WriteHeader(http.StatusCreated) - w.Write(resp_body) + + reply := FilerPostResult{ + Name: ret.Name, + Size: ret.Size, + Error: ret.Error, + Fid: fileId, + Url: urlLocation, + } + writeJsonQuiet(w, r, http.StatusCreated, reply) } // curl -X DELETE http://localhost:8888/path/to