summaryrefslogtreecommitdiff
path: root/ick2/projectapi.py
blob: 6b6c4fce50a180868777d7753f79b93e78ef2fda (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
# 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 ick2


class ProjectAPI(ick2.ResourceApiBase):

    def __init__(self, state):
        super().__init__('projects', state)
        self._pi = ick2.PipelineInstances(self.get_state())

    def mangle_resource(self, resource):
        new = dict(resource)
        if 'next_build_id' not in new:
            new['next_build_id'] = None
        return new

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

    def get_routes(self, path):  # pragma: no cover
        return super().get_routes(path) + self.get_pipeline_routes(path)

    def get_pipeline_routes(self, path):  # pragma: no cover
        pipeline_path = '{}/<project>/pipelines/<pipeline>'.format(path)
        return [
            {
                'method': 'GET',
                'path': pipeline_path,
                'callback': self.GET(self.get_pipeline),
            },
            {
                'method': 'PUT',
                'path': pipeline_path,
                'callback': self.PUT(self.set_pipeline_callback),
            },
            {
                'needs-authorization': False,
                'method': 'GET',
                'path': pipeline_path + '/+trigger',
                'callback': self.GET(self.trigger_pipeline),
            },
        ]

    def get_pipeline(self, project, pipeline, **kwargs):
        p = self._state.get_resource(self._type_name, project)
        if pipeline not in p['pipelines']:
            raise ick2.NotFound()

        pl = self._pi.get_instance(project, pipeline)
        return {
            'status': pl.get('status', 'idle'),
        }

    def set_pipeline_callback(
            self, body, project, pipeline, **kwargs):  # pragma: no cover
        return self.set_pipeline(body['status'], project, pipeline)

    def set_pipeline(self, status, project, pipeline):
        ick2.log.log(
            'trace', msg_text='Setting pipeline status',
            project=project, pipeline=pipeline, status=status)

        allowed_changes = {
            'idle': 'triggered',
            'triggered': 'building',
            'building': 'idle',
        }

        p = self._state.get_resource(self._type_name, project)
        if pipeline not in p['pipelines']:
            ick2.log.log(
                'error', msg_text='Project not found', project=project)
            raise ick2.NotFound()
        ick2.log.log('trace', msg_text='Found project', project=p)

        pl = self._pi.get_instance(project, pipeline)
        old_status = pl.get('status', 'idle')
        if allowed_changes[old_status] != status:
            raise ick2.WrongPipelineStatus(status)
        pl['status'] = status
        self._pi.update_instance(project, pipeline, pl)
        return {'status': status}

    # This needs to go away as it is not protected. Once an IDP is
    # added.
    def trigger_pipeline(
            self, project, pipeline, **kwargs):  # pragma: no cover
        return self.set_pipeline('triggered', project, pipeline)