forked from easybuilders/easybuild-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest.py
300 lines (253 loc) · 11.2 KB
/
rest.py
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# External compatible license
#
# This file is part of agithub
# Originally created by Jonathan Paugh
#
# https://github.com/jpaugh/agithub
#
# Copyright 2012 Jonathan Paugh
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
"""
This module contains Rest api utilities,
Mainly the RestClient, which you can use to easily pythonify a rest api.
based on https://github.com/jpaugh/agithub/commit/1e2575825b165c1cb7cbd85c22e2561fc4d434d3
Authors:
* Jonathan Paugh
* Jens Timmerman
"""
import base64
import copy
import json
from functools import partial
from urllib.parse import urlencode
from urllib.request import HTTPSHandler, Request, build_opener
from easybuild.base import fancylogger
class Client(object):
"""An implementation of a REST client"""
DELETE = 'DELETE'
GET = 'GET'
HEAD = 'HEAD'
PATCH = 'PATCH'
POST = 'POST'
PUT = 'PUT'
HTTP_METHODS = (
DELETE,
GET,
HEAD,
PATCH,
POST,
PUT,
)
USER_AGENT = 'vsc-rest-client'
def __init__(self, url, username=None, password=None, token=None, token_type='Token', user_agent=None,
append_slash=False):
"""
Create a Client object,
this client can consume a REST api hosted at host/endpoint
If a username is given a password or a token is required.
You can not use a password and a token.
token_type is the typoe fo th the authorization token text in the http authentication header, defaults to Token
This should be set to 'Bearer' for certain OAuth implementations.
"""
self.auth_header = None
self.username = username
self.url = url
self.append_slash = append_slash
if not user_agent:
self.user_agent = self.USER_AGENT
else:
self.user_agent = user_agent
handler = HTTPSHandler()
self.opener = build_opener(handler)
if username is not None:
if password is None and token is None:
raise TypeError("You need a password or an OAuth token to authenticate as " + username)
if password is not None and token is not None:
raise TypeError("You cannot use both password and OAuth token authenication")
if password is not None:
self.auth_header = self.hash_pass(password, username)
elif token is not None:
self.auth_header = '%s %s' % (token_type, token)
def _append_slash_to(self, url):
"""Append slash to specified URL, if desired and needed."""
if self.append_slash and not url.endswith('/'):
url += '/'
return url
def get(self, url, headers=None, **params):
"""
Do a http get request on the given url with given headers and parameters
Parameters is a dictionary that will will be urlencoded
"""
url = self._append_slash_to(url) + self.urlencode(params)
return self.request(self.GET, url, None, headers)
def head(self, url, headers=None, **params):
"""
Do a http head request on the given url with given headers and parameters
Parameters is a dictionary that will will be urlencoded
"""
url = self._append_slash_to(url) + self.urlencode(params)
return self.request(self.HEAD, url, None, headers)
def delete(self, url, headers=None, body=None, **params):
"""
Do a http delete request on the given url with given headers, body and parameters
Parameters is a dictionary that will will be urlencoded
"""
url = self._append_slash_to(url) + self.urlencode(params)
return self.request(self.DELETE, url, json.dumps(body), headers, content_type='application/json')
def post(self, url, body=None, headers=None, **params):
"""
Do a http post request on the given url with given body, headers and parameters
Parameters is a dictionary that will will be urlencoded
"""
url = self._append_slash_to(url) + self.urlencode(params)
return self.request(self.POST, url, json.dumps(body), headers, content_type='application/json')
def put(self, url, body=None, headers=None, **params):
"""
Do a http put request on the given url with given body, headers and parameters
Parameters is a dictionary that will will be urlencoded
"""
url = self._append_slash_to(url) + self.urlencode(params)
return self.request(self.PUT, url, json.dumps(body), headers, content_type='application/json')
def patch(self, url, body=None, headers=None, **params):
"""
Do a http patch request on the given url with given body, headers and parameters
Parameters is a dictionary that will will be urlencoded
"""
url = self._append_slash_to(url) + self.urlencode(params)
return self.request(self.PATCH, url, json.dumps(body), headers, content_type='application/json')
def request(self, method, url, body, headers, content_type=None):
"""Low-level networking. All HTTP-method methods call this"""
if headers is None:
headers = {}
if content_type is not None:
headers['Content-Type'] = content_type
if self.auth_header is not None:
headers['Authorization'] = self.auth_header
headers['User-Agent'] = self.user_agent
# censor contents of 'Authorization' part of header, to avoid leaking tokens or passwords in logs
headers_censored = copy.deepcopy(headers)
headers_censored['Authorization'] = '<actual authorization header censored>'
fancylogger.getLogger().debug('cli request: %s, %s, %s, %s', method, url, body, headers_censored)
# TODO: in recent python: Context manager
conn = self.get_connection(method, url, body, headers)
status = conn.code
if method == self.HEAD:
pybody = conn.headers
else:
body = conn.read()
try:
pybody = json.loads(body)
except ValueError:
pybody = body
fancylogger.getLogger().debug('reponse len: %s ', len(pybody))
conn.close()
return status, pybody
def urlencode(self, params):
if not params:
return ''
return '?' + urlencode(params)
def hash_pass(self, password, username=None):
if not username:
username = self.username
return 'Basic ' + base64.b64encode('%s:%s' % (username, password)).strip()
def get_connection(self, method, url, body, headers):
if not self.url.endswith('/') and not url.startswith('/'):
sep = '/'
else:
sep = ''
# value passed to 'data' must be a 'bytes' value (not 'str') hence, we encode the value obtained (if needed)
if isinstance(body, str):
body = body.encode('utf-8')
request = Request(self.url + sep + url, data=body)
for header, value in headers.items():
request.add_header(header, value)
request.get_method = lambda: method
fancylogger.getLogger().debug('opening request: %s%s%s', self.url, sep, url)
connection = self.opener.open(request)
return connection
class RequestBuilder(object):
'''RequestBuilder(client).path.to.resource.method(...)
stands for
RequestBuilder(client).client.method('path/to/resource, ...)
Also, if you use an invalid path, too bad. Just be ready to catch a
You can use item access instead of attribute access. This is
convenient for using variables' values and required for numbers.
bad status from github.com. (Or maybe an httplib.error...)
To understand the method(...) calls, check out github.client.Client.
'''
def __init__(self, client):
"""Constructor"""
self.client = client
self.url = ''
def __getattr__(self, key):
"""
Overwrite __getattr__ to build up the equest url
this enables us to do bla.some.path['something']
and get the url bla/some/path/something
"""
# make sure key is a string
key = str(key)
# our methods are lowercase, but our HTTP_METHOD constants are upercase, so check if it is in there, but only
# if it was a lowercase key
# this is here so bla.something.get() should work, and not result in bla/something/get being returned
if key.upper() in self.client.HTTP_METHODS and [x for x in key if x.islower()]:
mfun = getattr(self.client, key)
fun = partial(mfun, url=self.url)
return fun
self.url += '/' + key
return self
__getitem__ = __getattr__
def __str__(self):
'''If you ever stringify this, you've (probably) messed up
somewhere. So let's give a semi-helpful message.
'''
return "I don't know about %s, You probably want to do a get or other http request, use .get()" % self.url
def __repr__(self):
return '%s: %s' % (self.__class__, self.url)
class RestClient(object):
"""
A client with a request builder, so you can easily create rest requests
e.g. to create a github Rest API client just do
>>> g = RestClient('https://api.github.com', username='user', password='pass')
>>> g = RestClient('https://api.github.com', token='oauth token')
>>> status, data = g.issues.get(filter='subscribed')
>>> data
... [ list_, of, stuff ]
>>> status, data = g.repos.jpaugh64.repla.issues[1].get()
>>> data
... { 'dict': 'my issue data', }
>>> name, repo = 'jpaugh64', 'repla'
>>> status, data = g.repos[name][repo].issues[1].get()
... same thing
>>> status, data = g.funny.I.donna.remember.that.one.get()
>>> status
... 404
That's all there is to it. (blah.post() should work, too.)
NOTE: It is up to you to spell things correctly. Github doesn't even
try to validate the url you feed it. On the other hand, it
automatically supports the full API--so why should you care?
"""
def __init__(self, *args, **kwargs):
"""We create a client with the given arguments"""
self.client = Client(*args, **kwargs)
def __getattr__(self, key):
"""Get an attribute, we will build a request with it"""
return RequestBuilder(self.client).__getattr__(key)