return http_code,data tuple in DELETE operations for sol005 client
[osm/osmclient.git] / osmclient / sol005 / sdncontroller.py
1 # Copyright 2018 Telefonica
2 #
3 # All Rights Reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may
6 # not use this file except in compliance with the License. You may obtain
7 # a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 # License for the specific language governing permissions and limitations
15 # under the License.
16
17 """
18 OSM SDN controller API handling
19 """
20
21 from osmclient.common import utils
22 from osmclient.common.exceptions import ClientException
23 from osmclient.common.exceptions import NotFound
24 import yaml
25
26
27 class SdnController(object):
28 def __init__(self, http=None, client=None):
29 self._http = http
30 self._client = client
31 self._apiName = '/admin'
32 self._apiVersion = '/v1'
33 self._apiResource = '/sdn_controllers'
34 self._apiBase = '{}{}{}'.format(self._apiName,
35 self._apiVersion, self._apiResource)
36 def create(self, name, sdn_controller):
37 if 'type' not in vim_access:
38 raise Exception("type not provided")
39
40 resp = self._http.post_cmd(endpoint=self._apiBase,
41 postfields_dict=sdn_controller)
42 if not resp or '_id' not in resp:
43 raise ClientException('failed to create SDN controller: '.format(
44 resp))
45 else:
46 print resp['_id']
47
48 def delete(self, name):
49 sdn_controller = self.get(name)
50 http_code, resp = self._http.delete_cmd('{}/{}'.format(self._apiBase,sdn_controller['_id']))
51 #print 'RESP: {}'.format(resp)
52 if http_code == 202:
53 print 'Deletion in progress'
54 elif http_code == 204:
55 print 'Deleted'
56 elif 'result' in resp:
57 print 'Deleted'
58 else:
59 raise ClientException("failed to delete vim {} - {}".format(name, resp))
60
61 def list(self, filter=None):
62 """Returns a list of SDN controllers
63 """
64 filter_string = ''
65 if filter:
66 filter_string = '?{}'.format(filter)
67 resp = self._http.get_cmd('{}{}'.format(self._apiBase,filter_string))
68 if resp:
69 return resp
70 return list()
71
72 def get(self, name):
73 """Returns an SDN controller based on name or id
74 """
75 if utils.validate_uuid4(name):
76 for sdnc in self.list():
77 if name == sdnc['_id']:
78 return sdnc
79 else:
80 for sdnc in self.list():
81 if name == sdnc['name']:
82 return sdnc
83 raise NotFound("SDN controller {} not found".format(name))
84
85