-
Notifications
You must be signed in to change notification settings - Fork 8
/
restclient.py
162 lines (133 loc) · 4.93 KB
/
restclient.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
methods for contacting to a HTTP server, sending REST commands
and processing the JSON response
"""
import sys
import socket
import httplib
import urllib
import base64
import simplejson as json
import string
class RestClient:
def __init__(self, server, port, opts= {}):
self.server = server
self.port = port
self.debug = opts.get('debug', False)
self.uri = '/pools'
self.method = 'GET'
self.params = {}
self.user = ''
self.password = ''
self.clientConnect(server, int(port))
def clientConnect(self, server, port):
error_connect = "Unable to connect to %s" % self.server
try:
self.conn = httplib.HTTPConnection(server, port)
except httplib.NotConnected:
print error_connect
sys.exit(2)
except httplib.HTTPException:
print error_connect
sys.exit(2)
except socket.error:
print error_connect
sys.exit(2)
except socket.gaierror:
print error_connect
sys.exit(2)
def setParam(self, param, value):
self.params[param] = value
def handleResponse(self,
method,
response,
opts={ 'success_msg':'',
'error_msg':'' }):
""" parse response in standard way.
"""
if response.status in [200, 201, 202, 204, 302]:
if method == 'GET':
return response.read()
return "SUCCESS: %s" % opts['success_msg']
if response.status == 401:
print 'ERROR: unable to access the REST API - please check your username (-u) and password (-p)'
sys.exit(2)
print 'ERROR: %s (%d) %s' % (opts['error_msg'],
response.status, response.reason)
output_json = json.loads(response.read())
print output_json
if "errors" in output_json:
for error_code,error_message in output_json["errors"].iteritems():
print "ERROR: %s" % error_message
sys.exit(2)
def bootStrap(self, headers):
""" First REST call needed for info for later REST calls.
"""
self.conn.request('GET', '/pools', '', headers)
response = self.conn.getresponse()
opts = {'error_msg':'bootstrap failed'}
return self.handleResponse('GET', response, opts)
def sendCmd(self, method, uri,
user='', password='', opts = {}):
"""
sendCmd()
This method handles accessing the REST API and returning
either data, if a GET, or a success or error message if a POST
"""
data = ''
headers = {}
encoded_params = ''
if user and password:
self.user = user
self.password = password
auth = ('Basic ' +
string.strip(base64.encodestring(user + ':' + password)))
headers['Authorization'] = auth
self.bootStrap(headers)
if method == 'POST':
encoded_params = urllib.urlencode(self.params)
headers['Content-type'] = 'application/x-www-form-urlencoded'
elif method == 'DELETE':
encoded_params = urllib.urlencode(self.params)
headers['Content-type'] = 'application/x-www-form-urlencoded'
else:
if self.params:
uri = uri, '?', urllib.urlencode(self.params)
if self.debug:
print "METHOD: %s" % method
print "PARAMS: ", self.params
print "ENCODED_PARAMS: %s" % encoded_params
print "REST CMD: %s %s" % (method,uri)
self.makeRequest(method, uri, encoded_params, headers)
response = self.conn.getresponse()
if self.debug:
print "response.status: %s" % response.status
return response
def makeRequest(self, method, uri, encoded_params, headers):
error_connect = "ERROR: unable to connect to %s:%d" % (self.server, self.port)
try:
self.conn.request(method, uri, encoded_params, headers)
except httplib.NotConnected:
print error_connect
sys.exit(2)
except httplib.HTTPException:
print error_connect
sys.exit(2)
except socket.error:
print error_connect
sys.exit(2)
except socket.gaierror:
print error_connect
sys.exit(2)
def getJson(self, data):
return json.loads(data)
def jsonMessage(self, data):
return json.JSONEncoder().encode(data)
def restCmd(self, method, uri, user='', password='', opts={}):
if method == None:
method = 'GET'
response = self.sendCmd(method, uri,
user, password, opts)
return self.handleResponse(method, response, opts)