~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Aaron Bentley
  • Date: 2012-01-11 15:44:02 UTC
  • Revision ID: aaron@canonical.com-20120111154402-qi5nk23wwd7czvrj
Include next_memo, previous_memo in get_messages response.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
)
8
8
 
9
9
 
10
 
class UnsupportedDisplayType(Exception):
11
 
    """Raised when an Unsupported display_type is requested."""
12
 
 
13
 
 
14
 
class UnsupportedOrder(Exception):
15
 
    """Raised when an Unsupported order is requested."""
16
 
 
17
 
 
18
 
SUPPORTED_DISPLAY_TYPES = (
19
 
    'all',
20
 
    'text-only',
21
 
    'headers-only',
22
 
    )
23
 
 
24
10
 
25
11
class GrackleClient:
26
 
    """Class for accessing Grackle web service."""
27
12
 
28
13
    def __init__(self, host, port):
29
 
        """Constructor.
30
 
 
31
 
        :param host: The name of the server.
32
 
        :param port: The port providing Grackle service.
33
 
        """
34
14
        self.host = host
35
15
        self.port = port
36
16
        self.netloc = '%s:%d' % (host, port)
37
17
 
38
 
    def archive_url(self, archive_id, query):
39
 
        """Return the URL for an archive
40
 
 
41
 
        :param archive_id: The id of the archive to generate the URL for.
42
 
        :param query: The query to use in the URL, as a dict.
43
 
        """
44
 
        path = '/archive/%s' % quote(archive_id)
 
18
    def archive_url(self, archive_name, query):
 
19
        path = '/%s' % quote(archive_name)
45
20
        query_string = urlencode(query)
46
21
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
47
22
 
48
23
    def _get_connection(self):
49
24
        return httplib.HTTPConnection(self.host, self.port)
50
25
 
51
 
    def _method_archive(self, method, archive_id, query, body=None):
52
 
        """Perform an HTTP method on an archive's URL."""
53
 
        url = self.archive_url(archive_id, query)
 
26
    def _verb_archive(self, verb, archive_name, query, body=None):
 
27
        url = self.archive_url(archive_name, query)
54
28
        connection = self._get_connection()
55
 
        connection.request(method, url, body)
 
29
        connection.request(verb, url, body)
56
30
        return connection.getresponse()
57
31
 
58
 
    def put_message(self, archive_id, key, file_obj):
59
 
        """Put a message into an archive.
60
 
 
61
 
        :param archive_id: The archive to put the message into.
62
 
        :param key: An arbitrary identifier that can later be used to retrieve
63
 
            the message.
64
 
        :param file_obj: The raw text of the message, as a file.
65
 
        """
66
 
        response = self._method_archive(
67
 
            'POST', archive_id, {'key': key}, file_obj.read())
68
 
        response.read()
 
32
    def put_message(self, archive_name, key, file_obj):
 
33
        response = self._verb_archive(
 
34
            'POST', archive_name, {'key': key}, file_obj.read())
 
35
        data = response.read()
69
36
        if response.status == httplib.BAD_REQUEST:
70
37
            raise Exception('wtf')
71
38
        elif response.status == httplib.CREATED:
73
40
        else:
74
41
            raise Exception('!!')
75
42
 
76
 
    def get_messages(self, archive_id, message_ids=None, limit=None,
77
 
                     memo=None, order=None, headers=None,
78
 
                     max_body_length=None, include_hidden=False,
79
 
                     display_type='all'):
80
 
        """Retrieve specified messages.
81
 
 
82
 
        :param archive_id: The archive to retrieve messages from.
83
 
        :param message_ids: (optional) Retrieve only messages with these ids.
84
 
        :param limit: The maximum number of messages to return.  The server
85
 
            may, at its discretion, return fewer.
86
 
        :param memo: (optional) Opaque identifier describing the position in
87
 
            the list of messages to return.  The combination of a memo and a
88
 
            limit describes a batch of results.  If not specified, the start
89
 
            is used.
90
 
        :param order: The order to return results in.  Supported orders are
91
 
            determined by the server.  See test_client.SUPPORTED_ORDERS for an
92
 
            example.
93
 
        :param headers: The headers to include in the message.  Only headers
94
 
            actually present in the message will be provided.  If unspecified,
95
 
            most headers will be included.
96
 
        :param max_body_length: The maximum length for a message's body.  When
97
 
            multiple messages are nested (as with a thread), this applies to
98
 
            each message's body, not the aggregate length of all messages'
99
 
            bodies.
100
 
        :param include_hidden: If true, include messages that have been
101
 
            flagged "hidden" in the results.
102
 
        :param display_type: Adjust the message content to meet the needs of
103
 
            the intended display. Valid values are:
104
 
            all: (the default) include all message content.
105
 
            text-only: include only plain/text parts; exclude all other parts.
106
 
            headers-only: include only the message headers.
107
 
        """
 
43
    def get_messages(self, archive_name, message_ids=None):
108
44
        parameters = {}
109
45
        if message_ids is not None:
110
46
            parameters['message_ids'] = message_ids
111
 
        if limit is not None:
112
 
            parameters['limit'] = limit
113
 
        if memo is not None:
114
 
            parameters['memo'] = memo
115
 
        if order is not None:
116
 
            parameters['order'] = order
117
 
        if headers is not None:
118
 
            parameters['headers'] = headers
119
 
        if max_body_length is not None:
120
 
            parameters['max_body_length'] = max_body_length
121
 
        if display_type not in SUPPORTED_DISPLAY_TYPES:
122
 
            raise UnsupportedDisplayType
123
 
        parameters['display_type'] = display_type
124
 
        parameters['include_hidden'] = include_hidden
125
47
        query = {'parameters': simplejson.dumps(parameters)}
126
 
        response = self._method_archive('GET', archive_id, query)
127
 
        if response.status == httplib.BAD_REQUEST:
128
 
            raise UnsupportedOrder
 
48
        response = self._verb_archive('GET', archive_name, query)
129
49
        data = response.read()
130
50
        return simplejson.loads(data)