~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-17 23:01:16 UTC
  • Revision ID: curtis.hovey@canonical.com-20120317230116-vjf7ztzwg0asr2x0
Use wsgiref.headers.

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
6
8
    urlencode,
7
9
)
8
10
 
9
 
 
10
 
class UnparsableDateRange(Exception):
11
 
    """The date_range was not in the format of 2012-01-01..2012-01-31."""
12
 
 
13
 
 
14
 
class UnsupportedDisplayType(Exception):
15
 
    """Raised when an Unsupported display_type is requested."""
16
 
 
17
 
 
18
 
class UnsupportedOrder(Exception):
19
 
    """Raised when an Unsupported order is requested."""
20
 
 
21
 
 
22
 
SUPPORTED_DISPLAY_TYPES = (
23
 
    'all',
24
 
    'text-only',
25
 
    'headers-only',
 
11
from grackle.error import (
 
12
    ArchiveIdExists,
 
13
    MessageIdNotFound,
 
14
    UnparsableDateRange,
 
15
    UnsupportedDisplayType,
 
16
    UnsupportedOrder,
26
17
    )
27
18
 
28
19
 
39
30
        self.port = port
40
31
        self.netloc = '%s:%d' % (host, port)
41
32
 
42
 
    def archive_url(self, archive_id, query):
 
33
    def archive_url(self, path, query):
43
34
        """Return the URL for an archive
44
35
 
45
 
        :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'
46
38
        :param query: The query to use in the URL, as a dict.
47
39
        """
48
 
        path = '/archive/%s' % quote(archive_id)
 
40
        path = '/archive/%s' % quote(path)
49
41
        query_string = urlencode(query)
50
42
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
51
43
 
52
44
    def _get_connection(self):
53
45
        return httplib.HTTPConnection(self.host, self.port)
54
46
 
55
 
    def _method_archive(self, method, archive_id, query, body=None):
 
47
    def _method_archive(self, method, path, query, body=None):
56
48
        """Perform an HTTP method on an archive's URL."""
57
 
        url = self.archive_url(archive_id, query)
 
49
        url = self.archive_url(path, query)
58
50
        connection = self._get_connection()
59
51
        connection.request(method, url, body)
60
52
        return connection.getresponse()
61
53
 
 
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
 
62
72
    def put_message(self, archive_id, key, file_obj):
63
73
        """Put a message into an archive.
64
74
 
67
77
            the message.
68
78
        :param file_obj: The raw text of the message, as a file.
69
79
        """
 
80
        path = '%s/%s' % (archive_id, key)
70
81
        response = self._method_archive(
71
 
            'POST', archive_id, {'key': key}, file_obj.read())
 
82
            'PUT', path, {}, file_obj.read())
72
83
        response.read()
73
84
        if response.status == httplib.BAD_REQUEST:
 
85
            if response.reason == ArchiveIdExists.__doc__:
 
86
                raise ArchiveIdExists
74
87
            raise Exception('wtf')
75
88
        elif response.status == httplib.CREATED:
76
89
            return
137
150
                raise UnsupportedOrder
138
151
            elif response.reason == UnsupportedDisplayType.__doc__:
139
152
                raise UnsupportedDisplayType
 
153
            elif response.reason == UnparsableDateRange.__doc__:
 
154
                raise UnparsableDateRange
140
155
            else:
141
156
                raise ValueError('Bad request')
142
157
        data = response.read()
143
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)