~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-17 22:45:15 UTC
  • Revision ID: curtis.hovey@canonical.com-20120317224515-r2n23tqc8cx7cul4
Only store the unique information needed by grackle.

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