labkeyInterface.py 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import urllib3
  2. #requests doesnt work as it lacks key password checking
  3. import chardet
  4. import json
  5. class labkeyInterface:
  6. def init(self,fname):
  7. #fname is a file with configuration
  8. try:
  9. f=open(fname)
  10. except OSError as e:
  11. print("Confgiuration error: OS error({0}): {1}").format(e.errno, e.strerror)
  12. raise
  13. self.connectionConfig=json.load(f)
  14. self.http=urllib3.PoolManager()
  15. if 'SSL' in self.connectionConfig:
  16. try:
  17. self.http = urllib3.PoolManager(\
  18. cert_file=self.connectionConfig['SSL']['user'],\
  19. cert_reqs='CERT_REQUIRED',\
  20. key_file=self.connectionConfig['SSL']['key'],\
  21. ca_certs=self.connectionConfig['SSL']['ca'])
  22. except KeyError:
  23. self.http = urllib3.PoolManager(\
  24. cert_reqs='CERT_REQUIRED',\
  25. ca_certs=self.connectionConfig['SSL']['ca'])
  26. #password=self.connectionConfig['SSL']['keyPwd'],\ doesnt work until 1.25
  27. def GetLabkeyUrl(self):
  28. return self.connectionConfig['host']+"/labkey"
  29. def GetLabkeyWebdavUrl(self):
  30. return self.GetLabkeyUrl()+"/_webdav"
  31. def getBasicAuth(self):
  32. user=self.connectionConfig['labkey']['user']
  33. pwd=self.connectionConfig['labkey']['password']
  34. return user+":"+pwd
  35. def get(self,url,binary=False):
  36. debug=False
  37. if debug:
  38. print("GET: {0}").format(url)
  39. print("as {0}").format(user)
  40. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  41. try:
  42. if not binary:
  43. return self.http.request('GET',url,headers=headers)
  44. else:
  45. return self.http.request('GET',url,headers=headers,preload_content=False)
  46. #f contains json as a return value
  47. #f contains json as a return value
  48. except urllib3.exceptions.HTTPError as e:
  49. print(e)
  50. def post(self,url,data):
  51. debug=False
  52. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  53. headers["Content-Type"]="application/json"
  54. #add csrf;also sets self.cookie
  55. headers["X-LABKEY-CSRF"]=self.getCSRF()
  56. headers["Cookie"]=self.cookie
  57. try:
  58. return self.http.request('POST',url,headers=headers,body=data)
  59. #f contains json as a return value
  60. except urllib3.exceptions.HTTPError as e:
  61. print(e)
  62. def mkcol(self,url):
  63. debug=False
  64. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  65. #add csrf;also sets self.cookie
  66. headers["X-LABKEY-CSRF"]=self.getCSRF()
  67. headers["Cookie"]=self.cookie
  68. try:
  69. return self.http.request('MKCOL',url,headers=headers)
  70. #f contains json as a return value
  71. except urllib3.exceptions.HTTPError as e:
  72. print(e)
  73. def put(self,url,data):
  74. debug=False
  75. if debug:
  76. print("PUT: {}").format(url)
  77. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  78. headers["Content-Type"]="application/octet-stream"
  79. #add csrf
  80. headers["X-LABKEY-CSRF"]=self.getCSRF()
  81. headers["Cookie"]=self.cookie
  82. try:
  83. return self.http.request('PUT',url,headers=headers,body=data)
  84. #f contains json as a return value
  85. except urllib3.exceptions.HTTPError as e:
  86. print(e)
  87. def getCSRF(self):
  88. url=self.GetLabkeyUrl()+'/login/whoAmI.view'
  89. response=self.get(url)
  90. self.cookie=response.getheader('Set-Cookie')
  91. encoding=chardet.detect(response.data)['encoding']
  92. jsonData=json.loads(response.data.decode(encoding))
  93. return jsonData["CSRF"]