~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-02-29 22:29:35 UTC
  • Revision ID: curtis.hovey@canonical.com-20120229222935-txjobf042vsykgnr
Rename variable for clarity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
)
8
8
 
9
9
from grackle.error import (
10
 
    MessageIdNotFound,
11
10
    UnparsableDateRange,
12
11
    UnsupportedDisplayType,
13
12
    UnsupportedOrder,
27
26
        self.port = port
28
27
        self.netloc = '%s:%d' % (host, port)
29
28
 
30
 
    def archive_url(self, path, query):
 
29
    def archive_url(self, archive_id, query):
31
30
        """Return the URL for an archive
32
31
 
33
 
        :param path: The path to generate the URL for.
34
 
            Maybe be '', 'archive_id', or 'archive_id/message_id'
 
32
        :param archive_id: The id of the archive to generate the URL for.
35
33
        :param query: The query to use in the URL, as a dict.
36
34
        """
37
 
        path = '/archive/%s' % quote(path)
 
35
        path = '/archive/%s' % quote(archive_id)
38
36
        query_string = urlencode(query)
39
37
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
40
38
 
41
39
    def _get_connection(self):
42
40
        return httplib.HTTPConnection(self.host, self.port)
43
41
 
44
 
    def _method_archive(self, method, path, query, body=None):
 
42
    def _method_archive(self, method, archive_id, query, body=None):
45
43
        """Perform an HTTP method on an archive's URL."""
46
 
        url = self.archive_url(path, query)
 
44
        url = self.archive_url(archive_id, query)
47
45
        connection = self._get_connection()
48
46
        connection.request(method, url, body)
49
47
        return connection.getresponse()
50
48
 
51
 
    def put_archive(self, archive_id, mbox=None):
52
 
        """Create an archive.
53
 
 
54
 
        :param archive_id: The archive id.
55
 
        :param mbox: An optional mbox with messages to add to the new archive.
56
 
        """
57
 
        response = self._method_archive(
58
 
            'POST', '', {'archive_id': archive_id}, None)
59
 
        response.read()
60
 
        if response.status == httplib.BAD_REQUEST:
61
 
            raise Exception('wtf')
62
 
        elif response.status == httplib.CREATED:
63
 
            return
64
 
        else:
65
 
            raise Exception('!!')
66
 
 
67
49
    def put_message(self, archive_id, key, file_obj):
68
50
        """Put a message into an archive.
69
51
 
72
54
            the message.
73
55
        :param file_obj: The raw text of the message, as a file.
74
56
        """
75
 
        path = '%s/%s' % (archive_id, key)
76
57
        response = self._method_archive(
77
 
            'PUT', path, {}, file_obj.read())
 
58
            'POST', archive_id, {'key': key}, file_obj.read())
78
59
        response.read()
79
60
        if response.status == httplib.BAD_REQUEST:
80
61
            raise Exception('wtf')
149
130
                raise ValueError('Bad request')
150
131
        data = response.read()
151
132
        return simplejson.loads(data)
152
 
 
153
 
    def hide_message(self, archive_id, message_id, hidden):
154
 
        parameters = {
155
 
            'hidden': hidden,
156
 
            }
157
 
        query = {'parameters': simplejson.dumps(parameters)}
158
 
        path = '%s/%s' % (archive_id, message_id)
159
 
        response = self._method_archive('POST', path, query)
160
 
        if response.status == httplib.BAD_REQUEST:
161
 
            if response.reason == MessageIdNotFound.__doc__:
162
 
                raise MessageIdNotFound
163
 
        data = response.read()
164
 
        return simplejson.loads(data)