summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/core/web/api.py
blob: 7f87171186dc3e2712257ce85c13bdf6f6685a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import json
from twisted.web.server import NOT_DONE_YET

from twisted.web.resource import Resource
from twisted.logger import Logger

log = Logger()


class Api(Resource):

    isLeaf = True

    def __init__(self, dispatcher, global_tokens):
        Resource.__init__(self)
        self.dispatcher = dispatcher
        self.global_tokens = global_tokens

    def render_POST(self, request):
        token = request.getHeader('x-bitmask-auth')
        if not token:
            request.setResponseCode(401)
            return 'unauthorized: no app token'
        elif token.strip() not in self.global_tokens:
            request.setResponseCode(401)
            return 'unauthorized: bad app token'

        command = request.uri.split('/')[2:]
        params = request.content.getvalue()
        if params:
            # TODO sanitize this

            # json.loads returns unicode strings and the rest of the code
            # expects strings. This 'str(param)' conversion can be removed
            # if we move to python3
            for param in json.loads(params):
                if isinstance(param, basestring):
                    param = param.encode('ascii', 'replace')
                command.append(str(param))

        d = self.dispatcher.dispatch(command)
        d.addCallback(self._write_response, request)
        d.addErrback(
            lambda f: log.error('Error on POST: {0!r}'.format(f)))
        return NOT_DONE_YET

    def _write_response(self, response, request):
        request.setHeader('Content-Type', 'application/json')
        request.write(response)
        request.finish()