1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#
# 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/>.
import json
from pixelated.adapter.model.mail import InputMail
from pixelated.controllers import respond_json
class MailsController:
def __init__(self, mail_service, draft_service, search_engine):
self._mail_service = mail_service
self._draft_service = draft_service
self._search_engine = search_engine
def mails(self, request):
mail_ids, total = self._search_engine.search(request.args.get('q')[0], request.args.get('w')[0], request.args.get('p')[0])
mails = self._mail_service.mails(mail_ids)
response = {
"stats": {
"total": total,
},
"mails": [mail.as_dict() for mail in mails]
}
return json.dumps(response)
def mail(self, request, mail_id):
mail = self._mail_service.mail(mail_id)
return respond_json(mail.as_dict(), request)
def mark_many_mail_unread(self, request):
content_dict = json.load(request.content)
idents = content_dict.get('idents')
for ident in idents:
mail = self._mail_service.mark_as_unread(ident)
self._search_engine.index_mail(mail)
return ""
def mark_many_mail_read(self, request):
content_dict = json.load(request.content)
idents = content_dict.get('idents')
for ident in idents:
mail = self._mail_service.mark_as_read(ident)
self._search_engine.index_mail(mail)
return ""
def _delete_mail(self, mail_id):
mail = self._mail_service.mail(mail_id)
if mail.mailbox_name == 'TRASH':
self._mail_service.delete_permanent(mail_id)
self._search_engine.remove_from_index(mail_id)
else:
trashed_mail = self._mail_service.delete_mail(mail_id)
self._search_engine.index_mail(trashed_mail)
def delete_mail(self, request, mail_id):
self._delete_mail(mail_id)
return respond_json(None, request)
def delete_mails(self, request):
idents = json.loads(request.content.read())['idents']
for ident in idents:
self._delete_mail(ident)
return respond_json(None, request)
def send_mail(self, request):
try:
content_dict = json.loads(request.content.read())
_mail = InputMail.from_dict(content_dict)
draft_id = content_dict.get('ident')
if draft_id:
self._search_engine.remove_from_index(draft_id)
_mail = self._mail_service.send(draft_id, _mail)
self._search_engine.index_mail(_mail)
return respond_json(_mail.as_dict(), request)
except Exception as error:
return respond_json({'message': self._format_exception(error)}, request, status_code=422)
def mail_tags(self, request, mail_id):
content_dict = json.loads(request.content.read())
new_tags = map(lambda tag: tag.lower(), content_dict['newtags'])
try:
self._mail_service.update_tags(mail_id, new_tags)
mail = self._mail_service.mail(mail_id)
self._search_engine.index_mail(mail)
except ValueError as ve:
return respond_json(ve.message, request, 403)
return respond_json(mail.as_dict(), request)
def update_draft(self, request):
content_dict = json.loads(request.content.read())
_mail = InputMail.from_dict(content_dict)
draft_id = content_dict.get('ident')
if draft_id:
if not self._mail_service.mail_exists(draft_id):
return respond_json("", request, status_code=422)
pixelated_mail = self._draft_service.update_draft(draft_id, _mail)
self._search_engine.remove_from_index(draft_id)
else:
pixelated_mail = self._draft_service.create_draft(_mail)
self._search_engine.index_mail(pixelated_mail)
return respond_json({'ident': pixelated_mail.ident}, request)
def _format_exception(self, exception):
exception_info = map(str, list(exception.args))
return '\n'.join(exception_info)
|