Statistics
| Branch: | Tag: | Revision:

root / kamaki / clients / networking / rest_api.py @ c95ff061

History | View | Annotate | Download (4.5 kB)

1
# Copyright 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from kamaki.clients import Client
35
from kamaki.clients.utils import path4url
36
from json import dumps
37

    
38

    
39
class NetworkingRestClient(Client):
40

    
41
    def networks_get(self, network_id=None, **kwargs):
42
        if network_id:
43
            return self.get(path4url('networks', network_id), **kwargs)
44
        return self.get(path4url('networks'), **kwargs)
45

    
46
    def networks_post(self, json_data=None, shared=None, **kwargs):
47
        path = path4url('networks')
48
        self.set_param('shared', bool(shared), iff=shared)
49
        return self.post(
50
            path, data=dumps(json_data) if json_data else None, **kwargs)
51

    
52
    def networks_put(
53
            self, network_id,
54
            json_data=None, admin_state_up=None, shared=None, **kwargs):
55
        path = path4url('networks', network_id)
56

    
57
        self.set_param(
58
            'admin_state_up', bool(admin_state_up), iff=admin_state_up)
59
        self.set_param('shared', bool(shared), iff=shared)
60

    
61
        return self.put(
62
            path, data=dumps(json_data) if json_data else None, **kwargs)
63

    
64
    def networks_delete(self, network_id, **kwargs):
65
        return self.delete(path4url('networks', network_id), **kwargs)
66

    
67
    def subnets_get(self, subnet_id=None, **kwargs):
68
        if subnet_id:
69
            return self.get(path4url('subnets', subnet_id), **kwargs)
70
        return self.get(path4url('subnets'), **kwargs)
71

    
72
    def subnets_post(self, **kwargs):
73
        return self.post(path4url('subnets'), **kwargs)
74

    
75
    def subnets_put(self, subnet_id, **kwargs):
76
        return self.put(path4url('subnets', subnet_id), **kwargs)
77

    
78
    def subnets_delete(self, subnet_id, **kwargs):
79
        return self.delete(path4url('subnets', subnet_id), **kwargs)
80

    
81
    def ports_get(self, port_id=None, **kwargs):
82
        if port_id:
83
            return self.get(path4url('ports', port_id), **kwargs)
84
        return self.get(path4url('ports'), **kwargs)
85

    
86
    def ports_post(
87
            self,
88
            json_data=None,
89
            name=None, mac_address=None, fixed_ips=None, security_groups=None,
90
            **kwargs):
91
        self.set_param('name', name, iff=name)
92
        self.set_param('mac_address', mac_address, iff=mac_address)
93
        self.set_param('fixed_ips', fixed_ips, iff=fixed_ips)
94
        self.set_param('security_groups', security_groups, iff=security_groups)
95
        data = dumps(json_data) if json_data else None
96
        return self.post(path4url('ports'), data=data, **kwargs)
97

    
98
    def ports_put(
99
            self, port_id,
100
            json_data=None,
101
            name=None, mac_address=None, fixed_ips=None, security_groups=None,
102
            **kwargs):
103
        self.set_param('name', name, iff=name)
104
        self.set_param('mac_address', mac_address, iff=mac_address)
105
        self.set_param('fixed_ips', fixed_ips, iff=fixed_ips)
106
        self.set_param('security_groups', security_groups, iff=security_groups)
107
        data = dumps(json_data) if json_data else None
108
        return self.put(path4url('ports', port_id), data=data, **kwargs)
109

    
110
    def ports_delete(self, port_id, **kwargs):
111
        return self.delete(path4url('ports', port_id), **kwargs)