~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,
30
33
    def archive_url(self, path, query):
31
34
        """Return the URL for an archive
32
35
 
33
 
        :param oath: The path 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
40
        path = '/archive/%s' % quote(path)
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