-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthentication.py
38 lines (26 loc) · 1.34 KB
/
Authentication.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
38
# This code was taken from the following source: https://github.com/HHS/uts-rest-api/blob/master/samples/python/Authentication.py
# The original code is part of the UMLS REST API samples provided by HHS.
import requests
from lxml.html import fromstring
uri="https://utslogin.nlm.nih.gov"
#api key authentication at /cas/v1/api-key
auth_endpoint = "/cas/v1/api-key"
class Authentication:
def __init__(self, apikey):
self.apikey=apikey
self.service="http://umlsks.nlm.nih.gov"
def gettgt(self):
params = {'apikey': self.apikey}
h = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain", "User-Agent":"python" }
r = requests.post(uri+auth_endpoint,data=params,headers=h)
response = fromstring(r.text)
## extract the entire URL needed from the HTML form (action attribute) returned - looks similar to https://utslogin.nlm.nih.gov/cas/v1/tickets/TGT-36471-aYqNLN2rFIJPXKzxwdTNC5ZT7z3B3cTAKfSc5ndHQcUxeaDOLN-cas
## we make a POST call to this URL in the getst method
tgt = response.xpath('//form/@action')[0]
return tgt
def getst(self,tgt):
params = {'service': self.service}
h = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain", "User-Agent":"python" }
r = requests.post(tgt,data=params,headers=h)
st = r.text
return st