2020-01-19 15:25:00 +01:00
|
|
|
import os
|
2020-01-25 17:20:13 +01:00
|
|
|
import sys
|
2020-01-19 15:25:00 +01:00
|
|
|
import json
|
|
|
|
import parsel
|
|
|
|
import logging
|
2020-01-26 02:08:18 +01:00
|
|
|
import datetime
|
2020-01-19 15:25:00 +01:00
|
|
|
import requests
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def _clean_name(dirty_str):
|
2020-01-20 02:31:00 +01:00
|
|
|
allowed_chars = (' ', '_', '.', '-', '[', ']')
|
2020-01-19 15:40:41 +01:00
|
|
|
clean = []
|
2020-01-20 02:31:00 +01:00
|
|
|
for c in dirty_str.replace('+', '_').replace(':', ' -'):
|
2020-01-19 15:40:41 +01:00
|
|
|
if c.isalpha() or c.isdigit() or c in allowed_chars:
|
|
|
|
clean.append(c)
|
|
|
|
|
2020-01-26 02:08:18 +01:00
|
|
|
return "".join(clean).strip().rstrip('.')
|
2020-01-19 15:25:00 +01:00
|
|
|
|
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
class DownloadLibrary:
|
2020-01-20 05:11:35 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
def __init__(self, cookie_path, library_path, progress_bar=False,
|
|
|
|
ext_include=None, ext_exclude=None, platform_include=None,
|
|
|
|
purchase_keys=None):
|
2020-01-20 05:11:35 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
with open(cookie_path, 'r') as f:
|
|
|
|
self.account_cookies = f.read()
|
2020-01-20 04:31:43 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
self.library_path = library_path
|
|
|
|
self.progress_bar = progress_bar
|
|
|
|
self.ext_include = [] if ext_include is None else list(map(str.lower, ext_include)) # noqa: E501
|
|
|
|
self.ext_exclude = [] if ext_exclude is None else list(map(str.lower, ext_exclude)) # noqa: E501
|
2020-01-19 15:25:00 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
if platform_include is None or 'all' in platform_include:
|
|
|
|
# if 'all', then do not need to use this check
|
|
|
|
platform_include = []
|
|
|
|
self.platform_include = list(map(str.lower, platform_include))
|
2020-01-19 15:25:00 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
self.cache_file = os.path.join(library_path, '.cache.json')
|
|
|
|
self.cache_data = self._load_cache_data(self.cache_file)
|
2020-01-19 15:25:00 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
self.purchase_keys = purchase_keys if purchase_keys else self._get_purchase_keys() # noqa: E501
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
for order_id in self.purchase_keys:
|
|
|
|
self._process_order_id(order_id)
|
2020-01-19 15:25:00 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
def _process_order_id(self, order_id):
|
2020-01-20 00:39:28 +01:00
|
|
|
order_url = 'https://www.humblebundle.com/api/v1/order/{order_id}?all_tpkds=true'.format(order_id=order_id) # noqa: E501
|
2020-01-19 15:40:41 +01:00
|
|
|
order_r = requests.get(order_url,
|
2020-01-25 17:20:13 +01:00
|
|
|
headers={'cookie': self.account_cookies})
|
|
|
|
logger.debug("Order request: {order_r}".format(order_r=order_r))
|
2020-01-19 15:25:00 +01:00
|
|
|
order = order_r.json()
|
|
|
|
bundle_title = _clean_name(order['product']['human_name'])
|
2020-01-20 00:39:28 +01:00
|
|
|
logger.info("Checking bundle: " + str(bundle_title))
|
2020-01-25 17:20:13 +01:00
|
|
|
for product in order['subproducts']:
|
|
|
|
self._process_product(order_id, bundle_title, product)
|
|
|
|
|
|
|
|
def _process_product(self, order_id, bundle_title, product):
|
|
|
|
product_title = _clean_name(product['human_name'])
|
|
|
|
# Get all types of download for a product
|
|
|
|
for download_type in product['downloads']:
|
|
|
|
if self._should_download_platform(download_type['platform']) is False: # noqa: E501
|
|
|
|
logger.info("Skipping {platform} for {product_title}"
|
|
|
|
.format(platform=download_type['platform'],
|
|
|
|
product_title=product_title))
|
|
|
|
continue
|
|
|
|
|
|
|
|
product_folder = os.path.join(
|
|
|
|
self.library_path, bundle_title, product_title
|
|
|
|
)
|
|
|
|
|
|
|
|
# Create directory to save the files to
|
|
|
|
try: os.makedirs(product_folder) # noqa: E701
|
|
|
|
except OSError: pass # noqa: E701
|
|
|
|
|
|
|
|
# Download each file type of a product
|
|
|
|
for file_type in download_type['download_struct']:
|
|
|
|
try:
|
|
|
|
url = file_type['url']['web']
|
|
|
|
except KeyError:
|
|
|
|
logger.info("No url found: {bundle_title}/{product_title}"
|
|
|
|
.format(bundle_title=bundle_title,
|
|
|
|
product_title=product_title))
|
2020-01-20 05:11:35 +01:00
|
|
|
continue
|
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
url_filename = url.split('?')[0].split('/')[-1]
|
|
|
|
cache_file_key = order_id + ':' + url_filename
|
|
|
|
ext = url_filename.split('.')[-1]
|
|
|
|
if self._should_download_file_type(ext) is False:
|
|
|
|
logger.info("Skipping the file {url_filename}"
|
|
|
|
.format(url_filename=url_filename))
|
|
|
|
continue
|
2020-01-19 15:25:00 +01:00
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
local_filename = os.path.join(product_folder, url_filename)
|
|
|
|
product_r = requests.get(url, stream=True)
|
|
|
|
logger.debug("Item request: {product_r}, Url: {url}"
|
|
|
|
.format(product_r=product_r, url=url))
|
|
|
|
# Not sure which value will be best to use, so use them all
|
|
|
|
file_info = {
|
|
|
|
'url_last_modified': product_r.headers['Last-Modified'],
|
|
|
|
'url_etag': product_r.headers['ETag'][1:-1],
|
|
|
|
'url_crc': product_r.headers['X-HW-Cache-CRC'],
|
|
|
|
}
|
2020-01-26 02:08:18 +01:00
|
|
|
cache_file_info = self.cache_data.get(cache_file_key, {})
|
|
|
|
if file_info != cache_file_info:
|
2020-01-20 02:31:00 +01:00
|
|
|
try:
|
2020-01-26 02:08:18 +01:00
|
|
|
# Check if older file exists, if so rename
|
|
|
|
if (os.path.isfile(local_filename) is True
|
|
|
|
and 'url_last_modified' in cache_file_info):
|
|
|
|
filename_parts = local_filename.rsplit('.', 1)
|
|
|
|
last_modified = datetime.datetime.strptime(
|
|
|
|
cache_file_info['url_last_modified'],
|
|
|
|
'%a, %d %b %Y %H:%M:%S %Z'
|
|
|
|
).strftime('%Y-%m-%d')
|
|
|
|
new_name = "{name}_{date}.{ext}"\
|
|
|
|
.format(name=filename_parts[0],
|
|
|
|
date=last_modified,
|
|
|
|
ext=filename_parts[1])
|
|
|
|
os.rename(local_filename, new_name)
|
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
self._download_file(product_r, local_filename)
|
|
|
|
|
|
|
|
except (Exception, KeyboardInterrupt) as e:
|
2020-01-25 17:35:53 +01:00
|
|
|
if self.progress_bar:
|
|
|
|
# Do not overwrite the progress bar on next print
|
|
|
|
print()
|
2020-01-25 17:20:13 +01:00
|
|
|
logger.error("Failed to download file {product_title}/{url_filename}" # noqa: E501
|
|
|
|
.format(product_title=product_title,
|
|
|
|
url_filename=url_filename))
|
|
|
|
|
|
|
|
# Clean up broken downloaded file
|
|
|
|
try: os.remove(local_filename) # noqa: E701
|
|
|
|
except OSError: pass # noqa: E701
|
|
|
|
|
|
|
|
if type(e).__name__ == 'KeyboardInterrupt':
|
|
|
|
sys.exit()
|
|
|
|
else:
|
|
|
|
continue
|
|
|
|
|
|
|
|
else:
|
2020-01-25 17:35:53 +01:00
|
|
|
if self.progress_bar:
|
|
|
|
# Do not overwrite the progress bar on next print
|
|
|
|
print()
|
2020-01-25 17:20:13 +01:00
|
|
|
self._update_cache_data(cache_file_key, file_info)
|
|
|
|
|
|
|
|
finally:
|
|
|
|
# Since its a stream connection, make sure to close it
|
|
|
|
product_r.connection.close()
|
|
|
|
|
|
|
|
def _update_cache_data(self, cache_file_key, file_info):
|
|
|
|
self.cache_data[cache_file_key] = file_info
|
|
|
|
# Update cache file with newest data so if the script
|
|
|
|
# quits it can keep track of the progress
|
|
|
|
# Note: Only safe because of single thread,
|
|
|
|
# need to change if refactor to multi threading
|
|
|
|
with open(self.cache_file, 'w') as outfile:
|
|
|
|
json.dump(
|
|
|
|
self.cache_data, outfile,
|
|
|
|
sort_keys=True, indent=4,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _download_file(self, product_r, local_filename):
|
|
|
|
logger.info("Downloading: {local_filename}"
|
|
|
|
.format(local_filename=local_filename))
|
|
|
|
|
|
|
|
with open(local_filename, 'wb') as outfile:
|
|
|
|
total_length = product_r.headers.get('content-length')
|
|
|
|
if total_length is None: # no content length header
|
|
|
|
outfile.write(product_r.content)
|
|
|
|
else:
|
|
|
|
dl = 0
|
|
|
|
total_length = int(total_length)
|
|
|
|
for data in product_r.iter_content(chunk_size=4096):
|
|
|
|
dl += len(data)
|
|
|
|
outfile.write(data)
|
|
|
|
pb_width = 50
|
|
|
|
done = int(pb_width * dl / total_length)
|
|
|
|
if self.progress_bar:
|
|
|
|
print("\t{percent}% [{filler}{space}]"
|
|
|
|
.format(local_filename=local_filename,
|
|
|
|
percent=int(done * (100 / pb_width)),
|
|
|
|
filler='=' * done,
|
|
|
|
space=' ' * (pb_width - done),
|
|
|
|
), end='\r')
|
|
|
|
|
|
|
|
def _load_cache_data(self, cache_file):
|
|
|
|
try:
|
|
|
|
with open(cache_file, 'r') as f:
|
|
|
|
cache_data = json.load(f)
|
|
|
|
except FileNotFoundError:
|
|
|
|
cache_data = {}
|
|
|
|
|
2020-01-26 02:08:18 +01:00
|
|
|
# Remove md5 & sha1 keys from legacy cache data
|
|
|
|
for key, value in cache_data.items():
|
|
|
|
if 'md5' in value:
|
|
|
|
del cache_data[key]['md5']
|
|
|
|
if 'sha1' in value:
|
|
|
|
del cache_data[key]['sha1']
|
|
|
|
|
2020-01-25 17:20:13 +01:00
|
|
|
return cache_data
|
|
|
|
|
|
|
|
def _get_purchase_keys(self):
|
|
|
|
library_r = requests.get('https://www.humblebundle.com/home/library',
|
|
|
|
headers={'cookie': self.account_cookies})
|
|
|
|
logger.debug("Library request: " + str(library_r))
|
|
|
|
library_page = parsel.Selector(text=library_r.text)
|
|
|
|
orders_json = json.loads(library_page.css('#user-home-json-data')
|
|
|
|
.xpath('string()').extract_first())
|
|
|
|
return orders_json['gamekeys']
|
|
|
|
|
|
|
|
def _should_download_platform(self, platform):
|
|
|
|
platform = platform.lower()
|
|
|
|
return self.platform_include and platform not in self.platform_include
|
|
|
|
|
|
|
|
def _should_download_file_type(self, ext):
|
|
|
|
ext = ext.lower()
|
|
|
|
return ((self.ext_include and ext.lower() not in self.ext_include)
|
|
|
|
or (self.ext_exclude and ext.lower() in self.ext_exclude))
|