-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_get_info.py
executable file
·37 lines (31 loc) · 1.15 KB
/
server_get_info.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
#!/usr/bin/env python
import os
import sys
import pycurl
import base64
import pprint
import json
from Common import getConfig
from CurlCallback import Test
if __name__ == "__main__":
cfg = getConfig( os.path.dirname(os.path.abspath(__file__)) + '/etc/config.ini' )
#sys.stderr.write("Testing %s\n" % pycurl.version)
accept_frsp = 'application/json'
auth = 'Authorization: Basic %s' % base64.b64encode("%s:%s" % (cfg.get('iRODS','username'), cfg.get('iRODS','password')))
base_url = cfg.get('RESTFUL','http_endpt')
resource = 'server'
http_request = 'GET'
params = []
dest_url = '?'.join([os.path.join(base_url, resource), '&'.join(params)])
print 'sending %s to %s' % (http_request, dest_url)
t = Test()
c = pycurl.Curl()
c.setopt(c.URL, dest_url)
c.setopt(c.WRITEFUNCTION , t.body_callback)
c.setopt(c.HEADERFUNCTION, t.header_callback)
c.setopt(c.CUSTOMREQUEST, http_request)
c.setopt(c.HTTPHEADER , ['ACCEPT: %s' % accept_frsp, auth])
c.perform()
c.close()
print t.header
print json.dumps( json.loads(t.contents), indent=4, sort_keys=True, separators=(',',':') )