From 4ed7ec7f98ecd0006378b194089aa3b75eab24ad Mon Sep 17 00:00:00 2001
From: Renzo Frigato <rfrigato@stanford.edu>
Date: Wed, 6 Jan 2016 06:46:58 +0100
Subject: [PATCH] move file before db updates in container uploads

closes #115
---
 api/handlers/listhandler.py | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/api/handlers/listhandler.py b/api/handlers/listhandler.py
index 59bb7049..71b52695 100644
--- a/api/handlers/listhandler.py
+++ b/api/handlers/listhandler.py
@@ -391,15 +391,10 @@ class FileListHandler(ListHandler):
                         break
                 else:
                     method = 'POST'
+            file_store.move_file(dest_path)
             payload_validator(payload, method)
             payload.update(file_properties)
             result = keycheck(mongo_validator(permchecker(storage.exec_op)))(method, _id=_id, query_params=query_params, payload=payload)
             if not result or result.modified_count != 1:
                 self.abort(404, 'Element not added in list {} of container {} {}'.format(storage.list_name, storage.cont_name, _id))
-            try:
-                file_store.move_file(dest_path)
-
-            except IOError as e:
-                result = keycheck(storage.exec_op)('DELETE', _id, payload=payload)
-                raise e
         return {'modified': result.modified_count}
-- 
GitLab