~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-16 19:37:09 UTC
  • Revision ID: curtis.hovey@canonical.com-20120316193709-oa33ido3h6hpo0bu
Factor-out message methods.

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)
50
46
        connection = self._get_connection()
51
47
        connection.request(method, url, body)
52
48
        return connection.getresponse()
58
54
        :param mbox: An optional mbox with messages to add to the new archive.
59
55
        """
60
56
        response = self._method_archive(
61
 
            'PUT', archive_id, {}, None)
 
57
            'POST', '', {'archive_id': archive_id}, None)
62
58
        response.read()
63
59
        if response.status == httplib.BAD_REQUEST:
64
 
            if response.reason == ArchiveIdExists.__doc__:
65
 
                raise ArchiveIdExists
66
60
            raise Exception('wtf')
67
61
        elif response.status == httplib.CREATED:
68
62
            return
79
73
        """
80
74
        path = '%s/%s' % (archive_id, key)
81
75
        response = self._method_archive(
82
 
            'PUT', path, {}, file_obj.read())
 
76
            'POST', path, {}, file_obj.read())
83
77
        response.read()
84
78
        if response.status == httplib.BAD_REQUEST:
85
 
            if response.reason == ArchiveIdExists.__doc__:
86
 
                raise ArchiveIdExists
87
79
            raise Exception('wtf')
88
80
        elif response.status == httplib.CREATED:
89
81
            return