~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-02-24 21:43:12 UTC
  • Revision ID: curtis.hovey@canonical.com-20120224214312-zlji369uv0l9v75m
Move errors to their own module.
Remove duplicate definiton of SUPPORTED_DISPLAY_TYPES.

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()
53
48
 
54
 
    def put_archive(self, archive_id, mbox=None):
55
 
        """Create an archive.
56
 
 
57
 
        :param archive_id: The archive id.
58
 
        :param mbox: An optional mbox with messages to add to the new archive.
59
 
        """
60
 
        response = self._method_archive(
61
 
            'PUT', archive_id, {}, None)
62
 
        response.read()
63
 
        if response.status == httplib.BAD_REQUEST:
64
 
            if response.reason == ArchiveIdExists.__doc__:
65
 
                raise ArchiveIdExists
66
 
            raise Exception('wtf')
67
 
        elif response.status == httplib.CREATED:
68
 
            return
69
 
        else:
70
 
            raise Exception('!!')
71
 
 
72
49
    def put_message(self, archive_id, key, file_obj):
73
50
        """Put a message into an archive.
74
51
 
77
54
            the message.
78
55
        :param file_obj: The raw text of the message, as a file.
79
56
        """
80
 
        path = '%s/%s' % (archive_id, key)
81
57
        response = self._method_archive(
82
 
            'PUT', path, {}, file_obj.read())
 
58
            'POST', archive_id, {'key': key}, file_obj.read())
83
59
        response.read()
84
60
        if response.status == httplib.BAD_REQUEST:
85
 
            if response.reason == ArchiveIdExists.__doc__:
86
 
                raise ArchiveIdExists
87
61
            raise Exception('wtf')
88
62
        elif response.status == httplib.CREATED:
89
63
            return
156
130
                raise ValueError('Bad request')
157
131
        data = response.read()
158
132
        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)