~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-17 22:45:15 UTC
  • Revision ID: curtis.hovey@canonical.com-20120317224515-r2n23tqc8cx7cul4
Only store the unique information needed by grackle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
__metaclass__ = type
 
2
 
1
3
import httplib
2
4
import simplejson
3
5
from urlparse import urlunparse
7
9
)
8
10
 
9
11
from grackle.error import (
 
12
    ArchiveIdExists,
 
13
    MessageIdNotFound,
10
14
    UnparsableDateRange,
11
15
    UnsupportedDisplayType,
12
16
    UnsupportedOrder,
26
30
        self.port = port
27
31
        self.netloc = '%s:%d' % (host, port)
28
32
 
29
 
    def archive_url(self, archive_id, query):
 
33
    def archive_url(self, path, query):
30
34
        """Return the URL for an archive
31
35
 
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.
34
39
        """
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, ''))
38
43
 
39
44
    def _get_connection(self):
40
45
        return httplib.HTTPConnection(self.host, self.port)
41
46
 
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.
54
59
        """
55
60
        response = self._method_archive(
56
 
            'POST', '', {'archive_id': archive_id}, None)
 
61
            'PUT', archive_id, {}, None)
57
62
        response.read()
58
63
        if response.status == httplib.BAD_REQUEST:
 
64
            if response.reason == ArchiveIdExists.__doc__:
 
65
                raise ArchiveIdExists
59
66
            raise Exception('wtf')
60
67
        elif response.status == httplib.CREATED:
61
68
            return
72
79
        """
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())
76
83
        response.read()
77
84
        if response.status == httplib.BAD_REQUEST:
 
85
            if response.reason == ArchiveIdExists.__doc__:
 
86
                raise ArchiveIdExists
78
87
            raise Exception('wtf')
79
88
        elif response.status == httplib.CREATED:
80
89
            return
147
156
                raise ValueError('Bad request')
148
157
        data = response.read()
149
158
        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)