summaryrefslogtreecommitdiffstats
path: root/vio/vio/swagger/views/proxyplugin/nova/views.py
blob: 3527b880433c10a5d6e842475bbe4f5b7b14481d (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
# Copyright (c) 2017-2018 VMware, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

from vio.swagger.views.proxyplugin.httpclient import BaseClient


class ComputeServer(BaseClient):

    serverType = "nova"

    def get(self, request, vimid, tenantid, other):

        (url, headers, _) = self.buildRequest(
            request, vimid, tenantid=tenantid, tail=other, method="GET")

        return self._request(url, method="GET", headers=headers)

    def post(self, request, vimid, tenantid, other):

        return self.send(request=request, method="POST", vimid=vimid,
                         tenantid=tenantid, other=other)

    def put(self, request, vimid, tenantid, other):

        return self.send(request=request, method="PUT", vimid=vimid,
                         tenantid=tenantid, other=other)

    def delete(self, request, vimid, tenantid, other):

        return self.send(request=request, method="DELETE", vimid=vimid,
                         tenantid=tenantid, other=other)


class ComputeServerV1(ComputeServer):

    serverType = 'nova'

    def get(self, request, cloud_owner, cloud_region, tenantid, other):
        return super(ComputeServerV1, self).get(
            request, cloud_owner + "_" + cloud_region, tenantid, other)

    def post(self, request, cloud_owner, cloud_region, tenantid, other):
        return super(ComputeServerV1, self).post(
            request, cloud_owner + "_" + cloud_region, tenantid, other)

    def put(self, request, cloud_owner, cloud_region, tenantid, other):
        return super(ComputeServerV1, self).put(
            request, cloud_owner + "_" + cloud_region, tenantid, other)

    def delete(self, request, cloud_owner, cloud_region, tenantid, other):
        return super(ComputeServerV1, self).delete(
            request, cloud_owner + "_" + cloud_region, tenantid, other)