10
class UnsupportedDisplayType(Exception):
11
"""Raised when an Unsupported display_type is requested."""
14
class UnsupportedOrder(Exception):
15
"""Raised when an Unsupported order is requested."""
18
SUPPORTED_DISPLAY_TYPES = (
11
from grackle.error import (
15
UnsupportedDisplayType,
36
31
self.netloc = '%s:%d' % (host, port)
38
def archive_url(self, archive_id, query):
33
def archive_url(self, path, query):
39
34
"""Return the URL for an archive
41
:param archive_id: The id of the archive to generate the URL for.
36
:param path: The path to generate the URL for.
37
Maybe be '', 'archive_id', or 'archive_id/message_id'
42
38
:param query: The query to use in the URL, as a dict.
44
path = '/archive/%s' % quote(archive_id)
40
path = '/archive/%s' % quote(path)
45
41
query_string = urlencode(query)
46
42
return urlunparse(('http', self.netloc, path, '', query_string, ''))
48
44
def _get_connection(self):
49
45
return httplib.HTTPConnection(self.host, self.port)
51
def _method_archive(self, method, archive_id, query, body=None):
47
def _method_archive(self, method, path, query, body=None):
52
48
"""Perform an HTTP method on an archive's URL."""
53
url = self.archive_url(archive_id, query)
49
url = self.archive_url(path, query)
54
50
connection = self._get_connection()
55
51
connection.request(method, url, body)
56
52
return connection.getresponse()
54
def put_archive(self, archive_id, mbox=None):
57
:param archive_id: The archive id.
58
:param mbox: An optional mbox with messages to add to the new archive.
60
response = self._method_archive(
61
'PUT', archive_id, {}, None)
63
if response.status == httplib.BAD_REQUEST:
64
if response.reason == ArchiveIdExists.__doc__:
66
raise Exception('wtf')
67
elif response.status == httplib.CREATED:
58
72
def put_message(self, archive_id, key, file_obj):
59
73
"""Put a message into an archive.
64
78
:param file_obj: The raw text of the message, as a file.
80
path = '%s/%s' % (archive_id, key)
66
81
response = self._method_archive(
67
'POST', archive_id, {'key': key}, file_obj.read())
82
'PUT', path, {}, file_obj.read())
69
84
if response.status == httplib.BAD_REQUEST:
85
if response.reason == ArchiveIdExists.__doc__:
70
87
raise Exception('wtf')
71
88
elif response.status == httplib.CREATED:
74
91
raise Exception('!!')
76
def get_messages(self, archive_id, message_ids=None, limit=None,
77
memo=None, order=None, headers=None,
78
max_body_length=None, include_hidden=False,
93
def get_messages(self, archive_id, message_ids=None, date_range=None,
94
limit=None, memo=None, order=None, headers=None,
95
include_hidden=False, max_body_length=None,
79
96
display_type='all'):
80
97
"""Retrieve specified messages.
82
99
:param archive_id: The archive to retrieve messages from.
83
100
:param message_ids: (optional) Retrieve only messages with these ids.
101
:param date_range: Retrieve the messages from or between a range of
102
dates. Example: 2012-01-01..2012-01-31 retrieve all the messages
103
between the 01 and 31 of January, including message from 01
84
105
:param limit: The maximum number of messages to return. The server
85
106
may, at its discretion, return fewer.
86
107
:param memo: (optional) Opaque identifier describing the position in
127
150
raise UnsupportedOrder
128
151
elif response.reason == UnsupportedDisplayType.__doc__:
129
152
raise UnsupportedDisplayType
153
elif response.reason == UnparsableDateRange.__doc__:
154
raise UnparsableDateRange
131
156
raise ValueError('Bad request')
132
157
data = response.read()
133
158
return simplejson.loads(data)
160
def hide_message(self, archive_id, message_id, hidden):
164
query = {'parameters': simplejson.dumps(parameters)}
165
path = '%s/%s' % (archive_id, message_id)
166
response = self._method_archive('POST', path, query)
167
if response.status == httplib.BAD_REQUEST:
168
if response.reason == MessageIdNotFound.__doc__:
169
raise MessageIdNotFound
170
data = response.read()
171
return simplejson.loads(data)