Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt eidl to work with the new ecoinvent SSO and ecoquery API #31

Merged
merged 4 commits into from
Aug 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 49 additions & 19 deletions eidl/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import tempfile
import getpass
import subprocess
import json

import requests
import bs4
Expand All @@ -20,6 +21,8 @@ def __init__(self, username=None, password=None, version=None,
self.version = version
self.system_model = system_model
self.outdir = outdir
self.access_token = None
self.refresh_token = None

def run(self):
if self.check_stored():
Expand Down Expand Up @@ -58,20 +61,40 @@ def get_credentials(self):
return un, pw

def login(self):
self.session = requests.Session()
logon_url = 'https://v33.ecoquery.ecoinvent.org/Account/LogOn'
post_data = {'UserName': self.username,
'Password': self.password,
'IsEncrypted': 'false',
'ReturnUrl': '/'}
sso_url='https://sso.ecoinvent.org/realms/ecoinvent/protocol/openid-connect/token'
post_data = {'username': self.username,
'password': self.password,
'client_id': 'apollo-ui',
'grant_type': 'password'}
try:
self.session.post(logon_url, post_data, timeout=20)
response = requests.post(sso_url, post_data, timeout=20)
except (requests.ConnectTimeout, requests.ReadTimeout, requests.ConnectionError) as e:
self.handle_connection_timeout()
raise e

success = bool(self.session.cookies)
self.login_success(success)
if response.ok:
tokens = json.loads(response.text)
self.access_token = tokens['access_token']
self.refresh_token = tokens['refresh_token']

self.login_success(response.ok)

def refresh_tokens(self):
if self.refresh_token is None:
return

sso_url='https://sso.ecoinvent.org/realms/ecoinvent/protocol/openid-connect/token'
post_data = {'client_id': 'apollo-ui',
'grant_type': 'refresh_token',
'refresh_token': self.refresh_token}
response = requests.post(sso_url, post_data, timeout=20)

if response.ok:
tokens = json.loads(response.text)
self.access_token = tokens['access_token']
self.refresh_token = tokens['refresh_token']
else:
self.login()

def login_success(self, success):
if not success:
Expand All @@ -90,18 +113,22 @@ def handle_connection_timeout(self):
)

def get_available_files(self):
files_url = 'https://v33.ecoquery.ecoinvent.org/File/Files'
files_url = 'https://api.ecoquery.ecoinvent.org/files'
self.refresh_tokens()
auth_header = {'Authorization': f'Bearer {self.access_token}'}
try:
files_res = self.session.get(files_url, timeout=20)
files_res = requests.get(files_url, headers=auth_header, timeout=20)
except (requests.ConnectTimeout, requests.ReadTimeout, requests.ConnectionError) as e:
self.handle_connection_timeout()
raise e
soup = bs4.BeautifulSoup(files_res.text, 'html.parser')
all_files = [l for l in soup.find_all('a', href=True) if
l['href'].startswith('/File/File?')]
not_allowed = soup.find_all('a', class_='fileDownloadNotAllowed')
available_files = set(all_files).difference(set(not_allowed))
link_dict = {f.contents[0]: f['href'] for f in available_files}

files_raw = json.loads(files_res.text)
link_dict = dict()
for version in files_raw:
for release in version['releases']:
for rf in release['release_files']:
link_dict[rf['name']] = rf['uuid']

link_dict = {
k.replace('-', ''):v for k, v in link_dict.items() if k.startswith('ecoinvent ') and
k.endswith('ecoSpold02.7z') and not 'lc' in k.lower()
Expand Down Expand Up @@ -140,10 +167,13 @@ def choose_db(self):
return dbkey

def download(self):
url = 'https://v33.ecoquery.ecoinvent.org'
db_key = (self.version, self.system_model)
url = f'https://api.ecoquery.ecoinvent.org/files/r/{self.db_dict[db_key]}'
self.refresh_tokens()
auth_header = {'Authorization': f'Bearer {self.access_token}'}
try:
file_content = self.session.get(url + self.db_dict[db_key], timeout=60).content
s3_link = json.loads(requests.get(url, headers=auth_header, timeout=20).text)
file_content = requests.get(s3_link['download_url'], timeout=60).content
except (requests.ConnectTimeout, requests.ReadTimeout, requests.ConnectionError) as e:
self.handle_connection_timeout()
raise e
Expand Down
Loading