~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/client.py

  • Committer: Curtis Hovey
  • Date: 2012-03-17 23:01:16 UTC
  • Revision ID: curtis.hovey@canonical.com-20120317230116-vjf7ztzwg0asr2x0
Use wsgiref.headers.

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