~unity-2d-team/unity-2d/Shell-MultiMonitor

6 by Aaron Bentley
Use constants.
1
import httplib
6.1.5 by Aaron Bentley
Start working on GET.
2
import simplejson
3
from urlparse import urlunparse
4
from urllib import (
5
    quote,
6
    urlencode,
7
)
8
6.1.1 by Aaron Bentley
Fix URLs etc.
9
10
11
class GrackleClient:
12
13
    def __init__(self, host, port):
14
        self.host = host
15
        self.port = port
6.1.5 by Aaron Bentley
Start working on GET.
16
        self.netloc = '%s:%d' % (host, port)
17
6.1.12 by Aaron Bentley
archive_name -> archive_id
18
    def archive_url(self, archive_id, query):
19
        path = '/%s' % quote(archive_id)
6.1.9 by Aaron Bentley
Test filtering by message-id.
20
        query_string = urlencode(query)
21
        return urlunparse(('http', self.netloc, path, '', query_string, ''))
6.1.5 by Aaron Bentley
Start working on GET.
22
23
    def _get_connection(self):
24
        return httplib.HTTPConnection(self.host, self.port)
25
6.1.12 by Aaron Bentley
archive_name -> archive_id
26
    def _verb_archive(self, verb, archive_id, query, body=None):
27
        url = self.archive_url(archive_id, query)
6.1.5 by Aaron Bentley
Start working on GET.
28
        connection = self._get_connection()
29
        connection.request(verb, url, body)
30
        return connection.getresponse()
31
6.1.12 by Aaron Bentley
archive_name -> archive_id
32
    def put_message(self, archive_id, key, file_obj):
6.1.5 by Aaron Bentley
Start working on GET.
33
        response = self._verb_archive(
6.1.12 by Aaron Bentley
archive_name -> archive_id
34
            'POST', archive_id, {'key': key}, file_obj.read())
6.1.1 by Aaron Bentley
Fix URLs etc.
35
        data = response.read()
36
        if response.status == httplib.BAD_REQUEST:
37
            raise Exception('wtf')
38
        elif response.status == httplib.CREATED:
39
            return
40
        else:
41
            raise Exception('!!')
6.1.5 by Aaron Bentley
Start working on GET.
42
6.1.12 by Aaron Bentley
archive_name -> archive_id
43
    def get_messages(self, archive_id, message_ids=None):
6.1.5 by Aaron Bentley
Start working on GET.
44
        parameters = {}
45
        if message_ids is not None:
6.1.7 by Aaron Bentley
Retrieve messages.
46
            parameters['message_ids'] = message_ids
6.1.5 by Aaron Bentley
Start working on GET.
47
        query = {'parameters': simplejson.dumps(parameters)}
6.1.12 by Aaron Bentley
archive_name -> archive_id
48
        response = self._verb_archive('GET', archive_id, query)
6.1.7 by Aaron Bentley
Retrieve messages.
49
        data = response.read()
50
        return simplejson.loads(data)