summaryrefslogtreecommitdiff
path: root/ick2/controllerapi.py
blob: aa0871b821c4df3b85e9bc07ee1df14a18cf8a2d (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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# Copyright (C) 2017  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 apifw


import ick2


class ControllerAPI:

    def __init__(self):
        self._state = ick2.ControllerState()

    def get_state_directory(self):
        return self._state.get_state_directory()

    def set_state_directory(self, dirname):
        self._state.set_state_directory(dirname)

    def find_missing_route(self, missing_path):  # pragma: no cover
        apis = {
            '/version': VersionAPI,
            '/projects': ProjectAPI,
        }

        routes = []
        for path in apis:
            self._state.load_resources(path[1:])
            api = apis[path](self._state)
            routes.extend(api.get_routes(path))
        ick2.log.log('info', msg_texg='Found routes', routes=routes)
        return routes


class APIbase:  # pragma: no cover

    def __init__(self, state):
        self._state = state

    def get_routes(self, path):
        return [
            {
                'method': 'POST',
                'path': path,
                'callback': self.POST(self.create),
            },
            {
                'method': 'GET',
                'path': path,
                'callback': self.GET(self.list),
            },
            {
                'method': 'GET',
                'path': '{}/<name>'.format(path),
                'callback': self.GET(self.show),
            },
            {
                'method': 'PUT',
                'path': '{}/<name>'.format(path),
                'callback': self.PUT(self.update),
            },
            {
                'method': 'DELETE',
                'path': '{}/<name>'.format(path),
                'callback': self.DELETE(self.delete),
            },
        ]

    def GET(self, callback):
        def wrapper(content_type, body, **kwargs):
            ick2.log.log(
                'xxx', msg_text='GET called', kwargs=kwargs,
                content_type=content_type, body=body)
            try:
                if 'raw_uri_path' in kwargs:
                    del kwargs['raw_uri_path']
                    body = callback(**kwargs)
                    ick2.log.log(
                        'xxx', msg_text='GET callback returned', body=body)
            except ick2.NotFound as e:
                return not_found(e)
            return OK(body)
        return wrapper

    def POST(self, callback):
        def wrapper(content_type, body, **kwargs):
            body = callback(body)
            ick2.log.log('trace', msg_text='returned body', body=repr(body))
            return created(body)
        return wrapper

    def PUT(self, callback):
        def wrapper(content_type, body, **kwargs):
            if 'raw_uri_path' in kwargs:
                del kwargs['raw_uri_path']
            body = callback(body, **kwargs)
            ick2.log.log('trace', msg_text='returned body', body=repr(body))
            return OK(body)
        return wrapper

    def DELETE(self, callback):
        def wrapper(content_type, body, **kwargs):
            try:
                if 'raw_uri_path' in kwargs:
                    del kwargs['raw_uri_path']
                body = callback(**kwargs)
            except ick2.NotFound as e:
                return not_found(e)
            return OK(body)
        return wrapper

    def create(self, body):
        raise NotImplementedError()

    def update(self, body, name):
        raise NotImplementedError()

    def delete(self, name):
        raise NotImplementedError()

    def list(self):
        raise NotImplementedError()

    def show(self, name):
        raise NotImplementedError()


class VersionAPI(APIbase):

    def __init__(self, state):
        super().__init__(state)

    def get_routes(self, path):  # pragma: no cover
        return [
            {
                'method': 'GET',
                'path': path,
                'callback': self.GET(self.get_version),
            }
        ]

    def get_version(self):
        return {'version': ick2.__version__}

    def create(self, *args):  # pragma: no cover
        pass

    def update(self, *args):  # pragma: no cover
        pass

    def delete(self, *args):  # pragma: no cover
        pass

    def list(self):  # pragma: no cover
        pass

    def show(self, *args):  # pragma: no cover
        pass


class SubAPI(APIbase):

    def __init__(self, type_name, state):
        super().__init__(state)
        self._type_name = type_name

    def list(self):
        return {
            self._type_name: self._state.get_resources(self._type_name),
        }

    def show(self, name):
        return self._state.get_resource(self._type_name, name)

    def create(self, body):
        return self._state.add_resource(
            self._type_name, self.get_resource_name(body), body)

    def get_resource_name(self, resource):  # pragma: no cover
        raise NotImplementedError

    def update(self, body, name):
        return self._state.update_resource(self._type_name, name, body)

    def delete(self, name):
        self._state.remove_resource(self._type_name, name)


class ProjectAPI(SubAPI):

    def __init__(self, state):
        super().__init__('projects', state)

    def get_resource_name(self, resource):
        return resource['project']


def response(status_code, body, headers):  # pragma: no cover
    obj = {
        'status': status_code,
        'body': body,
        'headers': headers,
    }
    return apifw.Response(obj)


def OK(body):  # pragma: no cover
    headers = {
        'Content-Type': 'application/json',
    }
    return response(apifw.HTTP_OK, body, headers)


def not_found(error):  # pragma: no cover
    headers = {
        'Content-Type': 'text/plain',
    }
    return response(apifw.HTTP_NOT_FOUND, str(error), headers)


def created(body):  # pragma: no cover
    headers = {
        'Content-Type': 'application/json',
    }
    return response(apifw.HTTP_CREATED, body, headers)