~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-16 20:41:54 UTC
  • Revision ID: curtis.hovey@canonical.com-20120316204154-nz50ae66odaqvnb4
Remove hack now that the tests use a helper that makes real messages.

Show diffs side-by-side

added added

removed removed

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