-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi.py
More file actions
240 lines (201 loc) · 6.47 KB
/
Copy pathapi.py
File metadata and controls
240 lines (201 loc) · 6.47 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# 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. See the
# License for the specific language governing permissions and limitations
# under the License.
#
"""Base API Library"""
import simplejson as json
from keystoneclient.openstack.common.apiclient \
import exceptions as ksc_exceptions
class BaseAPI(object):
"""Base API"""
def __init__(
self,
session=None,
service_type=None,
endpoint=None,
**kwargs
):
"""Base object that contains some common API objects and methods
:param Session session:
The default session to be used for making the HTTP API calls.
:param string service_type:
API name, i.e. ``identity`` or ``compute``
:param string endpoint:
The URL from the Service Catalog to be used as the base for API
requests on this API.
"""
super(BaseAPI, self).__init__()
# a requests.Session-style interface
self.session = session
self.service_type = service_type
self.endpoint = endpoint
if self.endpoint is None:
# TODO(dtroyer): look it up via session
pass
def _request(self, method, url, session=None, **kwargs):
"""Perform call into session
All API calls are funneled through this method to provide a common
place to finalize the passed URL and other things.
:param string method:
The HTTP method name, i.e. ``GET``, ``PUT``, etc
:param string url:
The API-specific portion of the URL path
:param Session session:
HTTP client session
:param kwargs:
keyword arguments passed to requests.request().
:return: the requests.Response object
"""
if not session:
session = self.session
if not session:
# TODO(dtroyer): sort this
raise Exception
if self.endpoint:
url = '/'.join([self.endpoint.rstrip('/'), url.lstrip('/')])
# Why is ksc session backwards???
ret = session.request(url, method, **kwargs)
return ret
# The basic action methods all take a Session and return dict/lists
def create(
self,
url,
session=None,
method=None,
**params
):
"""Create a new resource
:param string url:
The API-specific portion of the URL path
:param Session session:
HTTP client session
:param string method:
HTTP method (default POST)
"""
if not method:
method = 'POST'
ret = self._request(method, url, session=session, **params)
# Should this move into _requests()?
try:
return ret.json()
except json.JSONDecodeError:
pass
return ret
def delete(
self,
url,
session=None,
**params
):
"""Delete a resource
:param string url:
The API-specific portion of the URL path
:param Session session:
HTTP client session
"""
return self._request('DELETE', url, **params)
def list(
self,
url,
session=None,
body=None,
**params
):
"""Return a list of resources
:param string url:
The API-specific portion of the URL path
:param Session session:
HTTP client session
:param body: data that will be encoded as JSON and passed in POST
request (GET will be sent by default)
"""
if body:
return self._request(
'POST',
url,
# service=self.service_type,
json=body,
params=params,
).json()
else:
return self._request(
'GET',
url,
# service=self.service_type,
params=params,
).json()
# Layered actions built on top of the basic action methods do not
# explicitly take a Session but may still be passed on kwargs
def find_bulk(
self,
url,
**kwargs
):
"""Bulk load and filter locally
:param string url:
The API-specific portion of the URL path
:param kwargs: dict of AVPs to match - logical AND
:returns: list of resource dicts
"""
items = self.list(url)
if type(items) == dict:
# strip off the enclosing dict
key = list(items.keys())[0]
items = items[key]
ret = []
for o in items:
try:
if all(o[attr] == kwargs[attr] for attr in kwargs.keys()):
ret.append(o)
except KeyError:
continue
return ret
def find_one(
self,
url,
**kwargs
):
"""Find a resource by name or ID
:param string url:
The API-specific portion of the URL path
:returns: list of resource dicts
"""
bulk_list = self.find_bulk(url, **kwargs)
num_bulk = len(bulk_list)
if num_bulk == 0:
msg = "none found"
raise ksc_exceptions.NotFound(msg)
elif num_bulk > 1:
msg = "many found"
raise RuntimeError(msg)
return bulk_list[0]
def find(
self,
url,
attr=None,
search=None,
):
"""Find a single resource by name or ID
:param string url:
The API-specific portion of the URL path
:param attr: name of attribute for secondary search
:param search: search expression
"""
try:
ret = self._request('GET', "/%s/%s" % (url, search)).json()
except ksc_exceptions.NotFound:
kwargs = {attr: search}
try:
ret = self.find_one("/%s/detail" % (url), **kwargs)
except ksc_exceptions.NotFound:
msg = "%s not found" % search
raise ksc_exceptions.NotFound(msg)
return ret