summaryrefslogtreecommitdiff
path: root/ick2/controllerapi.py
blob: af387ec6f0b0d87f89b8da5f16d3e8e6ef2eed0e (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
# 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 load_projects(self):
        return self._state.load_projects()

    def find_missing_route(self, path):  # pragma: no cover
        return [
            {
                'method': 'POST',
                'path': '/projects',
                'callback': self.post_callback(self.post_projects),
            },
            {
                'method': 'GET',
                'path': '/projects',
                'callback': self.get_callback(self.get_projects),
            },
            {
                'method': 'GET',
                'path': '/projects/<project>',
                'callback': self.get_callback(self.get_project),
            },
            {
                'method': 'PUT',
                'path': '/projects/<project>',
                'callback': self.put_callback(self.put_projects),
            },
            {
                'method': 'DELETE',
                'path': '/projects/<project>',
                'callback': self.get_callback(self.delete_projects),
            },
        ]

    def get_callback(self, callback):  # pragma: no cover
        def wrapper(content_type, body, **kwargs):
            try:
                body = callback(**kwargs)
            except ick2.NotFound as e:
                return apifw.Response({
                    'status': apifw.HTTP_NOT_FOUND,
                    'body': str(e),
                    'headers': [],
                })
            return apifw.Response({
                'status': apifw.HTTP_OK,
                'body': body,
                'headers': {
                    'Content-Type': 'application/json',
                },
            })
        return wrapper

    def post_callback(self, callback):  # pragma: no cover
        def wrapper(content_type, body):
            body = callback(body)
            ick2.log.log('trace', msg_text='returned body', body=repr(body))
            return apifw.Response({
                'status': apifw.HTTP_CREATED,
                'body': body,
                'headers': {
                    'Content-Type': 'application/json',
                },
            })
        return wrapper

    def put_callback(self, callback):  # pragma: no cover
        def wrapper(content_type, body, **kwargs):
            body = callback(body, **kwargs)
            ick2.log.log('trace', msg_text='returned body', body=repr(body))
            return apifw.Response({
                'status': apifw.HTTP_OK,
                'body': body,
                'headers': {
                    'Content-Type': 'application/json',
                },
            })
        return wrapper

    def get_projects(self):
        return {
            'projects': self._state.get_projects(),
        }

    def get_project(self, project=None):
        assert project is not None
        return self._state.get_project(project)

    def post_projects(self, project):
        return self._state.add_project(project)

    def put_projects(self, body, project=None):
        assert project is not None
        return self._state.update_project(project, body)

    def delete_projects(self, project):
        self._state.remove_project(project)