use "mv.from" for moving files

This commit is contained in:
chrislu
2022-02-23 15:34:42 -08:00
parent c29bc9a367
commit 320637dc7a

View File

@@ -79,7 +79,7 @@ func (fs *FilerServer) PostHandler(w http.ResponseWriter, r *http.Request, conte
return return
} }
if query.Has("from") { if query.Has("mv.from") {
fs.move(ctx, w, r, so) fs.move(ctx, w, r, so)
} else { } else {
fs.autoChunk(ctx, w, r, contentLength, so) fs.autoChunk(ctx, w, r, contentLength, so)
@@ -90,7 +90,7 @@ func (fs *FilerServer) PostHandler(w http.ResponseWriter, r *http.Request, conte
} }
func (fs *FilerServer) move(ctx context.Context, w http.ResponseWriter, r *http.Request, so *operation.StorageOption) { func (fs *FilerServer) move(ctx context.Context, w http.ResponseWriter, r *http.Request, so *operation.StorageOption) {
src := r.URL.Query().Get("from") src := r.URL.Query().Get("mv.from")
dst := r.URL.Path dst := r.URL.Path
glog.V(2).Infof("FilerServer.move %v to %v", src, dst) glog.V(2).Infof("FilerServer.move %v to %v", src, dst)