summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/soledad/soledad_writer_mixin.py
diff options
context:
space:
mode:
authorkaeff <hi@kaeff.net>2015-09-07 17:18:29 +0200
committerkaeff <hi@kaeff.net>2015-09-08 14:06:48 +0200
commit7deaefb939c833d65fd499aacb35502d6de1ac7e (patch)
treeca63fd416cf41178b1035984ba2b11d2ee996fba /service/pixelated/adapter/soledad/soledad_writer_mixin.py
parentf70dbbbf63198606a8468c2f47565086a86366a0 (diff)
Kill SoledadQuerier with 🔥🔥🔥
Diffstat (limited to 'service/pixelated/adapter/soledad/soledad_writer_mixin.py')
-rw-r--r--service/pixelated/adapter/soledad/soledad_writer_mixin.py54
1 files changed, 0 insertions, 54 deletions
diff --git a/service/pixelated/adapter/soledad/soledad_writer_mixin.py b/service/pixelated/adapter/soledad/soledad_writer_mixin.py
deleted file mode 100644
index d47e722a..00000000
--- a/service/pixelated/adapter/soledad/soledad_writer_mixin.py
+++ /dev/null
@@ -1,54 +0,0 @@
-#
-# Copyright (c) 2014 ThoughtWorks, Inc.
-#
-# Pixelated is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# Pixelated is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
-from pixelated.adapter.soledad.soledad_facade_mixin import SoledadDbFacadeMixin
-
-from twisted.internet import defer
-
-
-class SoledadWriterMixin(SoledadDbFacadeMixin, object):
-
- @defer.inlineCallbacks
- def mark_all_as_not_recent(self):
- for mailbox in ['INBOX', 'DRAFTS', 'SENT', 'TRASH']:
- rct = yield self.get_recent_by_mbox(mailbox)
- if not rct or not rct[0].content['rct']:
- return
- rct = rct[0]
- rct.content['rct'] = []
- yield self.put_doc(rct)
-
- def save_mail(self, mail):
- return self.put_doc(mail.fdoc)
-
- @defer.inlineCallbacks
- def create_mail(self, mail, mailbox_name):
- mbox_doc = (yield self.get_mbox(mailbox_name))[0]
- uid = 1 + (yield self.get_lastuid(mbox_doc))
-
- yield self.create_docs(mail.get_for_save(next_uid=uid, mailbox=mailbox_name))
-
- # FIXME need to update meta message (mdoc)
- # mbox_doc.content['lastuid'] = uid + 1
- # self.put_doc(mbox_doc)
-
- defer.returnValue((yield self.mail(mail.ident)))
-
- @defer.inlineCallbacks
- def remove_mail(self, mail):
- # FIX-ME: Must go through all the part_map phash to delete all the cdocs
- yield self.delete_doc(mail.fdoc)
- yield self.delete_doc(mail.hdoc)
- yield self.delete_doc(mail.bdoc)