~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-02-14 22:49:46 UTC
  • Revision ID: curtis.hovey@canonical.com-20120214224946-rx83gm3er2pho566
Raise UnparsableDateRange when the date cannot be parsed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
    urlencode,
7
7
)
8
8
 
9
 
from grackle.error import (
10
 
    ArchiveIdExists,
11
 
    MessageIdNotFound,
12
 
    UnparsableDateRange,
13
 
    UnsupportedDisplayType,
14
 
    UnsupportedOrder,
 
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',
15
26
    )
16
27
 
17
28
 
28
39
        self.port = port
29
40
        self.netloc = '%s:%d' % (host, port)
30
41
 
31
 
    def archive_url(self, path, query):
 
42
    def archive_url(self, archive_id, query):
32
43
        """Return the URL for an archive
33
44
 
34
 
        :param path: The path to generate the URL for.
35
 
            Maybe be '', 'archive_id', or 'archive_id/message_id'
 
45
        :param archive_id: The id of the archive to generate the URL for.
36
46
        :param query: The query to use in the URL, as a dict.
37
47
        """
38
 
        path = '/archive/%s' % quote(path)
 
48
        path = '/archive/%s' % quote(archive_id)
39
49
        query_string = urlencode(query)
40
50
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
41
51
 
42
52
    def _get_connection(self):
43
53
        return httplib.HTTPConnection(self.host, self.port)
44
54
 
45
 
    def _method_archive(self, method, path, query, body=None):
 
55
    def _method_archive(self, method, archive_id, query, body=None):
46
56
        """Perform an HTTP method on an archive's URL."""
47
 
        url = self.archive_url(path, query)
 
57
        url = self.archive_url(archive_id, query)
48
58
        connection = self._get_connection()
49
59
        connection.request(method, url, body)
50
60
        return connection.getresponse()
51
61
 
52
 
    def put_archive(self, archive_id, mbox=None):
53
 
        """Create an archive.
54
 
 
55
 
        :param archive_id: The archive id.
56
 
        :param mbox: An optional mbox with messages to add to the new archive.
57
 
        """
58
 
        response = self._method_archive(
59
 
            'PUT', archive_id, {}, None)
60
 
        response.read()
61
 
        if response.status == httplib.BAD_REQUEST:
62
 
            if response.reason == ArchiveIdExists.__doc__:
63
 
                raise ArchiveIdExists
64
 
            raise Exception('wtf')
65
 
        elif response.status == httplib.CREATED:
66
 
            return
67
 
        else:
68
 
            raise Exception('!!')
69
 
 
70
62
    def put_message(self, archive_id, key, file_obj):
71
63
        """Put a message into an archive.
72
64
 
75
67
            the message.
76
68
        :param file_obj: The raw text of the message, as a file.
77
69
        """
78
 
        path = '%s/%s' % (archive_id, key)
79
70
        response = self._method_archive(
80
 
            'PUT', path, {}, file_obj.read())
 
71
            'POST', archive_id, {'key': key}, file_obj.read())
81
72
        response.read()
82
73
        if response.status == httplib.BAD_REQUEST:
83
 
            if response.reason == ArchiveIdExists.__doc__:
84
 
                raise ArchiveIdExists
85
74
            raise Exception('wtf')
86
75
        elif response.status == httplib.CREATED:
87
76
            return
154
143
                raise ValueError('Bad request')
155
144
        data = response.read()
156
145
        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)