labkeyInterface.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  40. try:
  41. if not binary:
  42. return self.http.request('GET',url,headers=headers)
  43. else:
  44. return self.http.request('GET',url,headers=headers,preload_content=False)
  45. #f contains json as a return value
  46. #f contains json as a return value
  47. except urllib3.exceptions.HTTPError as e:
  48. print(e)
  49. def head(self,url):
  50. debug=False
  51. if debug:
  52. print("HEAD: {0}".format(url))
  53. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  54. try:
  55. return self.http.request('HEAD',url,headers=headers)
  56. except urllib3.exceptions.HTTPError as e:
  57. print(e)
  58. def post(self,url,data):
  59. debug=False
  60. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  61. headers["Content-Type"]="application/json"
  62. #add csrf;also sets self.cookie
  63. headers["X-LABKEY-CSRF"]=self.getCSRF()
  64. headers["Cookie"]=self.cookie
  65. try:
  66. return self.http.request('POST',url,headers=headers,body=data)
  67. #f contains json as a return value
  68. except urllib3.exceptions.HTTPError as e:
  69. print(e)
  70. def mkcol(self,url):
  71. debug=False
  72. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  73. #add csrf;also sets self.cookie
  74. headers["X-LABKEY-CSRF"]=self.getCSRF()
  75. headers["Cookie"]=self.cookie
  76. try:
  77. return self.http.request('MKCOL',url,headers=headers)
  78. #f contains json as a return value
  79. except urllib3.exceptions.HTTPError as e:
  80. print(e)
  81. def put(self,url,data):
  82. debug=False
  83. if debug:
  84. print("PUT: {}").format(url)
  85. headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
  86. headers["Content-Type"]="application/octet-stream"
  87. #add csrf
  88. headers["X-LABKEY-CSRF"]=self.getCSRF()
  89. headers["Cookie"]=self.cookie
  90. try:
  91. return self.http.request('PUT',url,headers=headers,body=data)
  92. #f contains json as a return value
  93. except urllib3.exceptions.HTTPError as e:
  94. print(e)
  95. def getCSRF(self):
  96. url=self.GetLabkeyUrl()+'/login/whoAmI.view'
  97. response=self.get(url)
  98. self.cookie=response.getheader('Set-Cookie')
  99. encoding=chardet.detect(response.data)['encoding']
  100. jsonData=json.loads(response.data.decode(encoding))
  101. return jsonData["CSRF"]