summaryrefslogtreecommitdiff
path: root/ick2
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-11-26 14:35:09 +0100
committerLars Wirzenius <liw@liw.fi>2017-11-26 17:56:12 +0100
commit4382c0943c5e84477fcdf6f1d26397c8a60a4624 (patch)
tree094aa931392b311420afc7f9bc00b26a3fd4a4d8 /ick2
parentdb3e88505f0a6ad11519cf1615444b1d423d42fe (diff)
downloadick2-4382c0943c5e84477fcdf6f1d26397c8a60a4624.tar.gz
Add: pipeline sub-API
Diffstat (limited to 'ick2')
-rw-r--r--ick2/__init__.py1
-rw-r--r--ick2/controllerapi.py1
-rw-r--r--ick2/pipelineapi.py25
3 files changed, 27 insertions, 0 deletions
diff --git a/ick2/__init__.py b/ick2/__init__.py
index 13912fe..9b4d9e3 100644
--- a/ick2/__init__.py
+++ b/ick2/__init__.py
@@ -34,6 +34,7 @@ from .apibase import APIbase, ResourceApiBase
from .buildsapi import BuildsAPI
from .logapi import LogAPI
from .versionapi import VersionAPI
+from .pipelineapi import PipelineAPI
from .projectapi import ProjectAPI
from .workapi import WorkAPI
from .workerapi import WorkerAPI
diff --git a/ick2/controllerapi.py b/ick2/controllerapi.py
index 4b67d10..1ef71cc 100644
--- a/ick2/controllerapi.py
+++ b/ick2/controllerapi.py
@@ -32,6 +32,7 @@ class ControllerAPI:
'/version': ick2.VersionAPI,
'/builds': ick2.BuildsAPI,
'/logs': ick2.LogAPI,
+ '/pipelines': ick2.PipelineAPI,
'/projects': ick2.ProjectAPI,
'/work': ick2.WorkAPI,
'/workers': ick2.WorkerAPI,
diff --git a/ick2/pipelineapi.py b/ick2/pipelineapi.py
new file mode 100644
index 0000000..061505e
--- /dev/null
+++ b/ick2/pipelineapi.py
@@ -0,0 +1,25 @@
+# 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 PipelineAPI(ick2.ResourceApiBase):
+
+ def __init__(self, state):
+ super().__init__('pipelines', state)
+
+ def get_resource_name(self, resource):
+ return resource['name']