27
31
self.netloc = '%s:%d' % (host, port)
29
def archive_url(self, archive_id, query):
33
def archive_url(self, path, query):
30
34
"""Return the URL for an archive
32
: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'
33
38
:param query: The query to use in the URL, as a dict.
35
path = '/archive/%s' % quote(archive_id)
40
path = '/archive/%s' % quote(path)
36
41
query_string = urlencode(query)
37
42
return urlunparse(('http', self.netloc, path, '', query_string, ''))
39
44
def _get_connection(self):
40
45
return httplib.HTTPConnection(self.host, self.port)
42
def _method_archive(self, method, archive_id, query, body=None):
47
def _method_archive(self, method, path, query, body=None):
43
48
"""Perform an HTTP method on an archive's URL."""
44
url = self.archive_url(archive_id, query)
49
url = self.archive_url(path, query)
45
50
connection = self._get_connection()
46
51
connection.request(method, url, body)
47
52
return connection.getresponse()
53
58
:param mbox: An optional mbox with messages to add to the new archive.
55
60
response = self._method_archive(
56
'POST', '', {'archive_id': archive_id}, None)
61
'PUT', archive_id, {}, None)
58
63
if response.status == httplib.BAD_REQUEST:
64
if response.reason == ArchiveIdExists.__doc__:
59
66
raise Exception('wtf')
60
67
elif response.status == httplib.CREATED:
73
80
path = '%s/%s' % (archive_id, key)
74
81
response = self._method_archive(
75
'POST', path, {}, file_obj.read())
82
'PUT', path, {}, file_obj.read())
77
84
if response.status == httplib.BAD_REQUEST:
85
if response.reason == ArchiveIdExists.__doc__:
78
87
raise Exception('wtf')
79
88
elif response.status == httplib.CREATED:
147
156
raise ValueError('Bad request')
148
157
data = response.read()
149
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)