labkeyInterface.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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):
  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. return self.http.request('GET',url,headers=headers)
  43. #f contains json as a return value
  44. except urllib3.exceptions.HTTPError as e:
  45. print(e)
  46. def post(self,url,data):
  47. debug=False
  48. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  49. headers["Content-Type"]="application/json"
  50. #add csrf;also sets self.cookie
  51. headers["X-LABKEY-CSRF"]=self.getCSRF()
  52. headers["Cookie"]=self.cookie
  53. try:
  54. return self.http.request('POST',url,headers=headers,body=data)
  55. #f contains json as a return value
  56. except urllib3.exceptions.HTTPError as e:
  57. print(e)
  58. def put(self,url,data):
  59. debug=False
  60. if debug:
  61. print("PUT: {}").format(url)
  62. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  63. headers["Content-Type"]="application/octet-stream"
  64. #add csrf
  65. headers["X-LABKEY-CSRF"]=self.getCSRF()
  66. headers["Cookie"]=self.cookie
  67. try:
  68. return self.http.request('PUT',url,headers=headers,body=data)
  69. #f contains json as a return value
  70. except urllib3.exceptions.HTTPError as e:
  71. print(e)
  72. def getCSRF(self):
  73. url=self.GetLabkeyUrl()+'/login/whoAmI.view'
  74. response=self.get(url)
  75. self.cookie=response.getheader('Set-Cookie')
  76. encoding=chardet.detect(response.data)['encoding']
  77. jsonData=json.loads(response.data.decode(encoding))
  78. return jsonData["CSRF"]