summaryrefslogtreecommitdiff
path: root/service/pixelated/resources/mails_resource.py
diff options
context:
space:
mode:
authorJefferson Stachelski <jstachel@thoughtworks.com>2015-09-25 19:05:01 -0300
committerJefferson Stachelski <jstachel@thoughtworks.com>2015-09-25 19:06:48 -0300
commit6df9e2c2646975ffc7c312f675591870eb4b2ad8 (patch)
treec1251c6d4710240fd78b4ba24f10120ac9d300f8 /service/pixelated/resources/mails_resource.py
parentd186b0204f738367d530514707d0f95a6d4bf865 (diff)
Issue #470 handling the update draft
Deleting the new draft created if the old one was not found to fix the duplication drafts
Diffstat (limited to 'service/pixelated/resources/mails_resource.py')
-rw-r--r--service/pixelated/resources/mails_resource.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/service/pixelated/resources/mails_resource.py b/service/pixelated/resources/mails_resource.py
index 75c0e14f..93a19a9b 100644
--- a/service/pixelated/resources/mails_resource.py
+++ b/service/pixelated/resources/mails_resource.py
@@ -166,11 +166,17 @@ class MailsResource(Resource):
if draft_id:
deferred_check = self._mail_service.mail_exists(draft_id)
+ def handleDuplicatedDraftException(error):
+ respond_json_deferred("", request, status_code=422)
+
def return422otherwise(mail_exists):
if not mail_exists:
respond_json_deferred("", request, status_code=422)
else:
- defer_response(self._draft_service.update_draft(draft_id, _mail))
+ new_draft = self._draft_service.update_draft(draft_id, _mail)
+ new_draft.addErrback(handleDuplicatedDraftException)
+ defer_response(new_draft)
+
deferred_check.addCallback(return422otherwise)
else:
defer_response(self._draft_service.create_draft(_mail))