~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-16 16:10:54 UTC
  • Revision ID: curtis.hovey@canonical.com-20120316161054-jk68i83kh81qm2vi
Store the body text only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
__metaclass__ = type
2
 
 
3
1
import httplib
4
2
import simplejson
5
3
from urlparse import urlunparse
9
7
)
10
8
 
11
9
from grackle.error import (
12
 
    ArchiveIdExists,
13
 
    MessageIdNotFound,
14
10
    UnparsableDateRange,
15
11
    UnsupportedDisplayType,
16
12
    UnsupportedOrder,
30
26
        self.port = port
31
27
        self.netloc = '%s:%d' % (host, port)
32
28
 
33
 
    def archive_url(self, path, query):
 
29
    def archive_url(self, archive_id, query):
34
30
        """Return the URL for an archive
35
31
 
36
 
        :param path: The path to generate the URL for.
37
 
            Maybe be '', 'archive_id', or 'archive_id/message_id'
 
32
        :param archive_id: The id of the archive to generate the URL for.
38
33
        :param query: The query to use in the URL, as a dict.
39
34
        """
40
 
        path = '/archive/%s' % quote(path)
 
35
        path = '/archive/%s' % quote(archive_id)
41
36
        query_string = urlencode(query)
42
37
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
43
38
 
44
39
    def _get_connection(self):
45
40
        return httplib.HTTPConnection(self.host, self.port)
46
41
 
47
 
    def _method_archive(self, method, path, query, body=None):
 
42
    def _method_archive(self, method, archive_id, query, body=None):
48
43
        """Perform an HTTP method on an archive's URL."""
49
 
        url = self.archive_url(path, query)
 
44
        url = self.archive_url(archive_id, query)
50
45
        connection = self._get_connection()
51
46
        connection.request(method, url, body)
52
47
        return connection.getresponse()
58
53
        :param mbox: An optional mbox with messages to add to the new archive.
59
54
        """
60
55
        response = self._method_archive(
61
 
            'PUT', archive_id, {}, None)
 
56
            'POST', '', {'archive_id': archive_id}, None)
62
57
        response.read()
63
58
        if response.status == httplib.BAD_REQUEST:
64
 
            if response.reason == ArchiveIdExists.__doc__:
65
 
                raise ArchiveIdExists
66
59
            raise Exception('wtf')
67
60
        elif response.status == httplib.CREATED:
68
61
            return
79
72
        """
80
73
        path = '%s/%s' % (archive_id, key)
81
74
        response = self._method_archive(
82
 
            'PUT', path, {}, file_obj.read())
 
75
            'POST', path, {}, file_obj.read())
83
76
        response.read()
84
77
        if response.status == httplib.BAD_REQUEST:
85
 
            if response.reason == ArchiveIdExists.__doc__:
86
 
                raise ArchiveIdExists
87
78
            raise Exception('wtf')
88
79
        elif response.status == httplib.CREATED:
89
80
            return
156
147
                raise ValueError('Bad request')
157
148
        data = response.read()
158
149
        return simplejson.loads(data)
159
 
 
160
 
    def hide_message(self, archive_id, message_id, hidden):
161
 
        parameters = {
162
 
            'hidden': hidden,
163
 
            }
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)