~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-16 19:01:21 UTC
  • Revision ID: curtis.hovey@canonical.com-20120316190121-3jlqy4oy51a67rj9
Added support for hide_message.

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
10
    MessageIdNotFound,
14
11
    UnparsableDateRange,
15
12
    UnsupportedDisplayType,
30
27
        self.port = port
31
28
        self.netloc = '%s:%d' % (host, port)
32
29
 
33
 
    def archive_url(self, path, query):
 
30
    def archive_url(self, archive_id, query):
34
31
        """Return the URL for an archive
35
32
 
36
 
        :param path: The path to generate the URL for.
37
 
            Maybe be '', 'archive_id', or 'archive_id/message_id'
 
33
        :param archive_id: The id of the archive to generate the URL for.
38
34
        :param query: The query to use in the URL, as a dict.
39
35
        """
40
 
        path = '/archive/%s' % quote(path)
 
36
        path = '/archive/%s' % quote(archive_id)
41
37
        query_string = urlencode(query)
42
38
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
43
39
 
44
40
    def _get_connection(self):
45
41
        return httplib.HTTPConnection(self.host, self.port)
46
42
 
47
 
    def _method_archive(self, method, path, query, body=None):
 
43
    def _method_archive(self, method, archive_id, query, body=None):
48
44
        """Perform an HTTP method on an archive's URL."""
49
 
        url = self.archive_url(path, query)
 
45
        url = self.archive_url(archive_id, query)
 
46
        connection = self._get_connection()
 
47
        connection.request(method, url, body)
 
48
        return connection.getresponse()
 
49
 
 
50
    def message_url(self, archive_id, message_id, query):
 
51
        """Return the URL for a message
 
52
 
 
53
        :param archive_id: The id of the archive to generate the URL for.
 
54
        :param query: The query to use in the URL, as a dict.
 
55
        """
 
56
        path = '/archive/%s/%s' % (quote(archive_id), quote(message_id))
 
57
        query_string = urlencode(query)
 
58
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
 
59
 
 
60
    def _method_message(self, method, archive_id, message_id,
 
61
                        query, body=None):
 
62
        """Perform an HTTP method on a message's URL."""
 
63
        url = self.message_url(archive_id, message_id, query)
50
64
        connection = self._get_connection()
51
65
        connection.request(method, url, body)
52
66
        return connection.getresponse()
58
72
        :param mbox: An optional mbox with messages to add to the new archive.
59
73
        """
60
74
        response = self._method_archive(
61
 
            'PUT', archive_id, {}, None)
 
75
            'POST', '', {'archive_id': archive_id}, None)
62
76
        response.read()
63
77
        if response.status == httplib.BAD_REQUEST:
64
 
            if response.reason == ArchiveIdExists.__doc__:
65
 
                raise ArchiveIdExists
66
78
            raise Exception('wtf')
67
79
        elif response.status == httplib.CREATED:
68
80
            return
79
91
        """
80
92
        path = '%s/%s' % (archive_id, key)
81
93
        response = self._method_archive(
82
 
            'PUT', path, {}, file_obj.read())
 
94
            'POST', path, {}, file_obj.read())
83
95
        response.read()
84
96
        if response.status == httplib.BAD_REQUEST:
85
 
            if response.reason == ArchiveIdExists.__doc__:
86
 
                raise ArchiveIdExists
87
97
            raise Exception('wtf')
88
98
        elif response.status == httplib.CREATED:
89
99
            return
162
172
            'hidden': hidden,
163
173
            }
164
174
        query = {'parameters': simplejson.dumps(parameters)}
165
 
        path = '%s/%s' % (archive_id, message_id)
166
 
        response = self._method_archive('POST', path, query)
 
175
        response = self._method_message('POST', archive_id, message_id, query)
167
176
        if response.status == httplib.BAD_REQUEST:
168
177
            if response.reason == MessageIdNotFound.__doc__:
169
178
                raise MessageIdNotFound