~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/store.py

  • Committer: Curtis Hovey
  • Date: 2012-02-24 21:43:12 UTC
  • Revision ID: curtis.hovey@canonical.com-20120224214312-zlji369uv0l9v75m
Move errors to their own module.
Remove duplicate definiton of SUPPORTED_DISPLAY_TYPES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
__metaclass__ = type
2
1
__all__ = [
3
 
    'make_json_message',
4
2
    'MemoryStore',
5
 
    'SUPPORTED_DISPLAY_TYPES',
6
 
    'SUPPORTED_ORDERS',
7
3
    ]
8
4
 
9
 
import email
10
5
import simplejson
11
6
from urlparse import parse_qs
12
7
 
13
8
from grackle.error import (
14
 
    ArchiveIdExists,
15
 
    ArchiveIdNotFound,
16
9
    MessageIdNotFound,
17
10
    UnparsableDateRange,
18
11
    UnsupportedDisplayType,
43
36
    return threads.values()
44
37
 
45
38
 
46
 
def get_body_text(message):
47
 
    """Return the first plain/text messaage part."""
48
 
    if not message.is_multipart():
49
 
        return message.get_payload()
50
 
    for part in email.iterators.typed_subpart_iterator(message, 'multipart'):
51
 
        subparts = part.get_payload()
52
 
        for subpart in subparts:
53
 
            if subpart.get_content_type() == 'text/plain':
54
 
                return subpart.get_payload().strip()
55
 
    return ''
56
 
 
57
 
 
58
 
def make_json_message(message_id, raw_message, hidden=False):
59
 
    message = email.message_from_string(raw_message)
60
 
    headers = dict(message.items())
61
 
    message = {
62
 
        'message_id': message_id,
63
 
        'headers': headers,
64
 
        # This is broken because the in-reply-to must be encoded.
65
 
        # X-Message-ID-Hash is calculated from the Base 32.
66
 
        'thread_id': headers.get('in-reply-to', message_id),
67
 
        'date': headers.get('date'),
68
 
        'subject': headers.get('subject'),
69
 
        'author': headers.get('from'),
70
 
        'hidden': hidden,
71
 
        'attachments': [],
72
 
        'replies': headers.get('in-reply-to'),
73
 
        'body': get_body_text(message),
74
 
        }
75
 
    return message
76
 
 
77
 
 
78
39
class MemoryStore:
79
40
    """A memory-backed message store."""
80
41
 
81
 
    def __init__(self, message_archives):
 
42
    def __init__(self, messages):
82
43
        """Constructor."""
83
 
        self.message_archives = message_archives
 
44
        self.messages = messages
84
45
 
85
46
    @staticmethod
86
47
    def is_multipart(message):
87
48
        return isinstance(message['body'], list)
88
49
 
89
 
    def put_archive(self, archive_id, raw_archive=None):
90
 
        # XXX sinzui 2012-02-29: this needs to raise an error
91
 
        # if the th archive_id is invalid, or the raw archive is not mbox.
92
 
        if archive_id in self.message_archives:
93
 
            raise ArchiveIdExists()
94
 
        self.message_archives[archive_id] = []
95
 
 
96
 
    def put_message(self, archive_id, message_id, raw_message):
97
 
        # XXX sinzui 2012-02-29: this needs to raise an error
98
 
        # if the th archive_id is invalid, message_id is not base32
99
 
        # or the raw message is not an email.
100
 
        if archive_id not in self.message_archives:
101
 
            raise ArchiveIdNotFound()
102
 
        if not raw_message:
103
 
            raise ValueError('raw_message is not a message.')
104
 
        json_message = make_json_message(message_id, raw_message)
105
 
        messages = self.message_archives[archive_id]
106
 
        messages.append(json_message)
107
 
 
108
50
    def get_messages(self, archive_id, query_string):
109
51
        """Return matching messages.
110
52
 
115
57
        query = parse_qs(query_string)
116
58
        parameters = simplejson.loads(query['parameters'][0])
117
59
        order = parameters.get('order')
118
 
        messages = self.message_archives[archive_id]
 
60
        messages = self.messages[archive_id]
119
61
        if order is not None:
120
62
            if order not in SUPPORTED_ORDERS:
121
63
                raise UnsupportedOrder
200
142
            }
201
143
        return response
202
144
 
203
 
    def hide_message(self, archive_id, message_id, query_string):
204
 
        """Change the visbility of a message in an archive.
 
145
    def hide_message(self, archive_id, query_string):
 
146
        """Return matching messages.
205
147
 
206
148
        :param archive_id: The archive to retrieve from.
207
149
        :param query_string: Contains 'parameters', which is a JSON-format
209
151
        """
210
152
        query = parse_qs(query_string)
211
153
        parameters = simplejson.loads(query['parameters'][0])
 
154
        message_id = parameters['message_id']
212
155
        hidden = parameters['hidden']
213
 
        messages = self.message_archives[archive_id]
 
156
        messages = self.messages[archive_id]
214
157
        for message in messages:
215
158
            if message['message_id'] == message_id:
216
159
                message['hidden'] = hidden