2020-01-19 15:25:00 +01:00
|
|
|
import os
|
|
|
|
import logging
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
LOG_LEVEL = os.environ.get('HBD_LOGLEVEL', 'INFO').upper()
|
|
|
|
logging.basicConfig(
|
|
|
|
level=LOG_LEVEL,
|
|
|
|
format='%(message)s',
|
|
|
|
)
|
2020-01-26 16:19:08 +01:00
|
|
|
# Ignore unwanted logs from the requests lib when debuging
|
|
|
|
logging.getLogger('urllib3.connectionpool').setLevel(logging.WARNING)
|
2020-01-19 15:25:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
def cli():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
subparsers = parser.add_subparsers(dest='action')
|
|
|
|
subparsers.required = True
|
|
|
|
|
|
|
|
###
|
|
|
|
# Download Library
|
|
|
|
###
|
2020-01-19 15:40:41 +01:00
|
|
|
parser_download = subparsers.add_parser(
|
|
|
|
'download',
|
|
|
|
help="Download content in your humble bundle library",
|
|
|
|
)
|
2021-02-14 15:51:40 +01:00
|
|
|
cookie = parser_download.add_mutually_exclusive_group(required=True)
|
|
|
|
cookie.add_argument(
|
2020-01-19 15:40:41 +01:00
|
|
|
'-c', '--cookie-file', type=str,
|
2020-01-20 00:39:28 +01:00
|
|
|
help="Location of the cookies file",
|
2021-02-14 15:51:40 +01:00
|
|
|
)
|
|
|
|
cookie.add_argument(
|
|
|
|
'-s', '--session-auth', type=str,
|
|
|
|
help="Value of the cookie _simpleauth_sess. WRAP IN QUOTES",
|
2020-01-19 15:40:41 +01:00
|
|
|
)
|
|
|
|
parser_download.add_argument(
|
|
|
|
'-l', '--library-path', type=str,
|
|
|
|
help="Folder to download all content to",
|
|
|
|
required=True,
|
|
|
|
)
|
2020-01-26 16:19:08 +01:00
|
|
|
parser_download.add_argument(
|
|
|
|
'-t', '--trove', action='store_true',
|
|
|
|
help="Only check and download Humble Trove content",
|
|
|
|
)
|
|
|
|
parser_download.add_argument(
|
|
|
|
'-u', '--update', action='store_true',
|
|
|
|
help=("Check to see if products have been updated "
|
|
|
|
"(still get new products)"),
|
|
|
|
)
|
2020-01-20 05:11:35 +01:00
|
|
|
parser_download.add_argument(
|
|
|
|
'-p', '--platform',
|
|
|
|
type=str, nargs='*',
|
|
|
|
help=("Only get content in a platform. Values can be seen in your "
|
|
|
|
"humble bundle's library dropdown. Ex: -p ebook video"),
|
|
|
|
)
|
2020-01-19 15:40:41 +01:00
|
|
|
parser_download.add_argument(
|
|
|
|
'--progress',
|
|
|
|
action='store_true',
|
|
|
|
help="Display progress bar for downloads",
|
|
|
|
)
|
2020-01-20 04:31:43 +01:00
|
|
|
filter_ext = parser_download.add_mutually_exclusive_group()
|
|
|
|
filter_ext.add_argument(
|
|
|
|
'-e', '--exclude',
|
|
|
|
type=str, nargs='*',
|
2020-01-20 05:11:35 +01:00
|
|
|
help=("File extensions to ignore when downloading files. "
|
|
|
|
"Ex: -e pdf mobi"),
|
2020-01-20 04:31:43 +01:00
|
|
|
)
|
|
|
|
filter_ext.add_argument(
|
|
|
|
'-i', '--include',
|
|
|
|
type=str, nargs='*',
|
2020-01-20 05:11:35 +01:00
|
|
|
help="Only download files with these extensions. Ex: -i pdf mobi",
|
2020-01-20 04:31:43 +01:00
|
|
|
)
|
2020-01-20 16:26:48 +01:00
|
|
|
parser_download.add_argument(
|
|
|
|
'-k', '--keys',
|
|
|
|
type=str, nargs='*',
|
|
|
|
help=("The purchase download key. Find in the url on the "
|
|
|
|
"products/bundle download page. Can set multiple"),
|
|
|
|
)
|
2020-01-19 15:25:00 +01:00
|
|
|
|
|
|
|
cli_args = parser.parse_args()
|
|
|
|
|
2020-05-17 07:38:05 +02:00
|
|
|
if cli_args.action == 'download':
|
|
|
|
# Still keep the download action to keep compatibility
|
2020-01-25 17:20:13 +01:00
|
|
|
from .download_library import DownloadLibrary
|
|
|
|
DownloadLibrary(
|
2020-01-19 15:40:41 +01:00
|
|
|
cli_args.library_path,
|
2021-02-14 15:51:40 +01:00
|
|
|
cookie_path=cli_args.cookie_file,
|
|
|
|
cookie_auth=cli_args.session_auth,
|
2020-01-20 04:31:43 +01:00
|
|
|
progress_bar=cli_args.progress,
|
|
|
|
ext_include=cli_args.include,
|
2020-01-20 05:11:35 +01:00
|
|
|
ext_exclude=cli_args.exclude,
|
|
|
|
platform_include=cli_args.platform,
|
2020-01-20 16:26:48 +01:00
|
|
|
purchase_keys=cli_args.keys,
|
2020-01-26 16:19:08 +01:00
|
|
|
trove=cli_args.trove,
|
|
|
|
update=cli_args.update,
|
2020-01-25 17:20:13 +01:00
|
|
|
).start()
|