summaryrefslogtreecommitdiff
path: root/ick2/projectapi.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-11-18 20:52:25 +0100
committerLars Wirzenius <liw@liw.fi>2017-11-18 20:52:25 +0100
commit21999847be1af71e95c778b33c2ad2e83ab1a582 (patch)
tree4acd886ff7e968604ed145651997635dad3008ae /ick2/projectapi.py
parent3bb259bb8990f7d47c865e2130ef8a12dec69182 (diff)
downloadick2-21999847be1af71e95c778b33c2ad2e83ab1a582.tar.gz
Refactor: move ProjectAPI to its own module
Diffstat (limited to 'ick2/projectapi.py')
-rw-r--r--ick2/projectapi.py86
1 files changed, 86 insertions, 0 deletions
diff --git a/ick2/projectapi.py b/ick2/projectapi.py
new file mode 100644
index 0000000..fec4585
--- /dev/null
+++ b/ick2/projectapi.py
@@ -0,0 +1,86 @@
+# 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)
+
+ 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)
+ builds_path = '{}/<project>/builds'.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),
+ },
+ {
+ 'method': 'GET',
+ 'path': builds_path,
+ 'callback': self.GET(self.get_builds),
+ },
+ ]
+
+ def get_pipeline(self, project, pipeline):
+ p = self._state.get_resource(self._type_name, project)
+ for pl in p['pipelines']:
+ if pl['name'] == pipeline:
+ return {
+ 'status': pl.get('status', 'idle'),
+ }
+ raise ick2.NotFound()
+
+ def set_pipeline_callback(
+ self, body, project, pipeline): # pragma: no cover
+ return self.set_pipeline(body['status'], project, pipeline)
+
+ def set_pipeline(self, state, project, pipeline):
+ allowed_changes = {
+ 'idle': 'triggered',
+ 'triggered': 'building',
+ 'building': 'idle',
+ }
+ p = self._state.get_resource(self._type_name, project)
+ for pl in p['pipelines']:
+ if pl['name'] == pipeline:
+ old_state = pl.get('status', 'idle')
+ if allowed_changes[old_state] != state:
+ raise ick2.WrongPipelineStatus(state)
+ pl['status'] = state
+ self._state.update_resource(self._type_name, project, p)
+ return {'status': state}
+ raise ick2.NotFound()
+
+ def get_builds(self, project):
+ p = self._state.get_resource(self._type_name, project)
+ return {
+ 'project': project,
+ 'builds': p.get('builds', []),
+ }