Skip to content

Commit

Permalink
Rancher 2.x endpoints added
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jul 25, 2019
1 parent 8d22f65 commit e5e593c
Show file tree
Hide file tree
Showing 6 changed files with 127 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/rancher/__init__.py
Expand Up @@ -37,7 +37,10 @@
from . import base
from . import service
from . import stack
from . import workload

from .base import API
from .project import ProjectAPI
from .service import ServiceAPI
from .stack import StackAPI
from .workload import WorkloadAPI
6 changes: 5 additions & 1 deletion src/rancher/base.py
Expand Up @@ -42,14 +42,18 @@
import appier

from . import stack
from . import project
from . import service
from . import workload

BASE_URL = "http://localhost:8080/v2/"

class API(
appier.API,
stack.StackAPI,
service.ServiceAPI
project.ProjectAPI,
service.ServiceAPI,
workload.WorkloadAPI
):

def __init__(self, *args, **kwargs):
Expand Down
50 changes: 50 additions & 0 deletions src/rancher/project.py
@@ -0,0 +1,50 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-

# Hive Rancher API
# Copyright (c) 2008-2019 Hive Solutions Lda.
#
# This file is part of Hive Rancher API.
#
# Hive Rancher API is free software: you can redistribute it and/or modify
# it under the terms of the Apache License as published by the Apache
# Foundation, either version 2.0 of the License, or (at your option) any
# later version.
#
# Hive Rancher API 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
# Apache License for more details.
#
# You should have received a copy of the Apache License along with
# Hive Rancher API. If not, see <http://www.apache.org/licenses/>.

__author__ = "João Magalhães <joamag@hive.pt>"
""" The author(s) of the module """

__version__ = "1.0.0"
""" The version of the module """

__revision__ = "$LastChangedRevision$"
""" The revision number of the module """

__date__ = "$LastChangedDate$"
""" The last change date of the module """

__copyright__ = "Copyright (c) 2008-2019 Hive Solutions Lda."
""" The copyright for the module """

__license__ = "Apache License, Version 2.0"
""" The license for the module """

class ProjectAPI(object):
"""
The project API endpoints used by the Rancher 2.x
infra-structure.
"""

def list_projects(self, *args, **kwargs):
url = self.base_url + "project"
contents = self.get(url, **kwargs)
data = contents["data"]
return data
4 changes: 4 additions & 0 deletions src/rancher/service.py
Expand Up @@ -42,6 +42,10 @@
import appier

class ServiceAPI(object):
"""
The service API endpoints used by the Rancher 1.x
infra-structure.
"""

def list_services(self, *args, **kwargs):
url = self.base_url + "services"
Expand Down
4 changes: 4 additions & 0 deletions src/rancher/stack.py
Expand Up @@ -38,6 +38,10 @@
""" The license for the module """

class StackAPI(object):
"""
The stack API endpoints used by the Rancher 1.x
infra-structure.
"""

def list_stacks(self, *args, **kwargs):
url = self.base_url + "stacks"
Expand Down
61 changes: 61 additions & 0 deletions src/rancher/workload.py
@@ -0,0 +1,61 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-

# Hive Rancher API
# Copyright (c) 2008-2019 Hive Solutions Lda.
#
# This file is part of Hive Rancher API.
#
# Hive Rancher API is free software: you can redistribute it and/or modify
# it under the terms of the Apache License as published by the Apache
# Foundation, either version 2.0 of the License, or (at your option) any
# later version.
#
# Hive Rancher API 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
# Apache License for more details.
#
# You should have received a copy of the Apache License along with
# Hive Rancher API. If not, see <http://www.apache.org/licenses/>.

__author__ = "João Magalhães <joamag@hive.pt>"
""" The author(s) of the module """

__version__ = "1.0.0"
""" The version of the module """

__revision__ = "$LastChangedRevision$"
""" The revision number of the module """

__date__ = "$LastChangedDate$"
""" The last change date of the module """

__copyright__ = "Copyright (c) 2008-2019 Hive Solutions Lda."
""" The copyright for the module """

__license__ = "Apache License, Version 2.0"
""" The license for the module """

class WorkloadAPI(object):
"""
The workload API endpoints used by the Rancher 2.x
infra-structure.
"""

def list_workloads(self, project, *args, **kwargs):
url = self.base_url + "project/%s/workload" % project
contents = self.get(url, **kwargs)
data = contents["data"]
return data

def list_workloads_name(self, project, name):
url = self.base_url + "project/%s/workload?name=%s" % (project, name)
contents = self.get(url)
data = contents["data"]
return data

def get_workload(self, project, id):
url = self.base_url + "project/%s/workload/%s" % (project, id)
contents = self.get(url)
return contents

0 comments on commit e5e593c

Please sign in to comment.