summaryrefslogtreecommitdiff
path: root/effiapi
blob: bc47a66da778f5a086e7b63b666d5267e329ad23 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/usr/bin/python3
# Copyright (C) 2018  Lars Wirzenius
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.


import copy
import json
import logging
import os
import sys
import uuid

import bottle


class Muck:

    def __init__(self):
        self._objs = {}

    def __len__(self):
        return len(self._objs)

    def new_id(self):
        return str(uuid.uuid4())

    def create(self, obj):
        obj_id = self.new_id()
        self._objs[obj_id] = obj

    def update(self, obj_id, obj):
        self._objs[obj_id] = obj

    def show(self, obj_id):
        return self._objs.get(obj_id)

    def delete(self, obj_id):
        if obj_id in self._objs:
            del self._objs[obj_id]

    def search(self):
        return copy.deepcopy(self._objs)


class API:

    def __init__(self, bottleapp):
        self._add_routes(bottleapp)
        self._muck = Muck()

    def _add_routes(self, bottleapp):
        routes = [
            {
                'method': 'GET',
                'path': '/status',
                'callback': self._show_status,
            },
            {
                'method': 'GET',
                'path': '/search',
                'callback': self._search,
            },
            {
                'method': 'POST',
                'path': '/mem',
                'callback': self._create,
            },
        ]

        for route in routes:
            bottleapp.route(**route)

    def _show_status(self):
        status = {
            'resources': len(self._muck),
        }
        return response(200, status)

    def _search(self):
        result = {
            'resources': self._muck.search(),
        }
        return response(200, result)

    def _create(self):
        r = bottle.request
        if r.content_type != 'application/json':
            return response(400)

        obj = bottle.request.json
        logging.info('CREATE %r', repr(obj))
        self._muck.create(obj)
        return response(201, obj)


def response(status, body):
    headers = {}
    if isinstance(body, dict):
        headers['Content-Type'] = 'application/json'
    return bottle.HTTPResponse(
        status=status, body=json.dumps(body), headers=headers)


with open(sys.argv[1]) as f:
    config = json.load(f)

logging.basicConfig(
    filename=config['log'], level=logging.DEBUG,
    format='%(levelname)s %(message)s')

logging.info('Effi API starts')

if config.get('pid'):
    pid = os.getpid()
    with open(config['pid'], 'w') as f:
        f.write(str(pid))

app = bottle.default_app()
api = API(app)
app.run(host='127.0.0.1', port=8080)