labkeyInterface.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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 put(self,url,data):
  63. debug=False
  64. if debug:
  65. print("PUT: {}").format(url)
  66. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  67. headers["Content-Type"]="application/octet-stream"
  68. #add csrf
  69. headers["X-LABKEY-CSRF"]=self.getCSRF()
  70. headers["Cookie"]=self.cookie
  71. try:
  72. return self.http.request('PUT',url,headers=headers,body=data)
  73. #f contains json as a return value
  74. except urllib3.exceptions.HTTPError as e:
  75. print(e)
  76. def getCSRF(self):
  77. url=self.GetLabkeyUrl()+'/login/whoAmI.view'
  78. response=self.get(url)
  79. self.cookie=response.getheader('Set-Cookie')
  80. encoding=chardet.detect(response.data)['encoding']
  81. jsonData=json.loads(response.data.decode(encoding))
  82. return jsonData["CSRF"]