2017-03-23 16:29:40 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright 2017 Mike Fährmann
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
|
|
|
|
"""Command line option parsing"""
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import logging
|
|
|
|
import json
|
|
|
|
from .version import __version__
|
|
|
|
|
|
|
|
log = logging.getLogger("option")
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigAction(argparse.Action):
|
|
|
|
"""Set argparse results as config values"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
|
|
namespace.options.append(((self.dest,), values))
|
|
|
|
|
|
|
|
|
2017-05-03 15:17:08 +02:00
|
|
|
class ConfigConstAction(argparse.Action):
|
|
|
|
"""Set argparse const values as config values"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
|
|
namespace.options.append(((self.dest,), self.const))
|
|
|
|
|
|
|
|
|
2017-03-23 16:29:40 +01:00
|
|
|
class ParseAction(argparse.Action):
|
|
|
|
"""Parse <key>=<value> options and set them as config values"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
|
|
try:
|
|
|
|
key, value = values.split("=", 1)
|
|
|
|
try:
|
|
|
|
value = json.loads(value)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
key = key.split(".")
|
|
|
|
namespace.options.append((key, value))
|
|
|
|
except ValueError:
|
|
|
|
log.warning("Invalid '<key>=<value>' pair: %s", values)
|
|
|
|
|
|
|
|
|
|
|
|
class Formatter(argparse.HelpFormatter):
|
|
|
|
"""Custom HelpFormatter class to customize help output"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
2017-03-23 16:51:42 +01:00
|
|
|
super().__init__(max_help_position=50, *args, **kwargs)
|
2017-03-23 16:29:40 +01:00
|
|
|
|
|
|
|
def _format_action_invocation(self, action):
|
|
|
|
opts = action.option_strings[:]
|
|
|
|
if opts:
|
|
|
|
if action.nargs != 0:
|
|
|
|
args_string = self._format_args(action, "ARG")
|
|
|
|
opts[-1] += " " + args_string
|
|
|
|
return ', '.join(opts)
|
|
|
|
else:
|
|
|
|
return self._metavar_formatter(action, action.dest)(1)[0]
|
|
|
|
|
|
|
|
|
|
|
|
def build_parser():
|
|
|
|
"""Build and configure an ArgumentParser object"""
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
usage="%(prog)s [OPTION]... URL...",
|
|
|
|
formatter_class=Formatter,
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-g", "--get-urls", dest="list_urls", action="count",
|
2017-05-27 16:16:57 +02:00
|
|
|
help="Print URLs instead of downloading",
|
2017-03-23 16:29:40 +01:00
|
|
|
)
|
2017-04-12 18:43:41 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"-j", "--dump-json", dest="list_data", action="store_true",
|
|
|
|
help="Print JSON information",
|
|
|
|
)
|
2017-03-23 16:29:40 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"-d", "--dest",
|
|
|
|
metavar="DEST", action=ConfigAction, dest="base-directory",
|
|
|
|
help="Destination directory",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-u", "--username",
|
|
|
|
metavar="USER", action=ConfigAction, dest="username",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-p", "--password",
|
|
|
|
metavar="PASS", action=ConfigAction, dest="password",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-i", "--input-file",
|
|
|
|
metavar="FILE", dest="inputfile",
|
|
|
|
help="Download URLs found in local FILE ('-' for stdin)",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--images",
|
|
|
|
metavar="ITEM-SPEC", action=ConfigAction, dest="images",
|
|
|
|
help=("Specify which images to download through a comma seperated list"
|
|
|
|
" of indices or index-ranges; "
|
|
|
|
"for example '--images -2,4,6-8,10-' will download images with "
|
|
|
|
"index 1, 2, 4, 6, 7, 8 and 10 up to the last one")
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--chapters",
|
|
|
|
metavar="ITEM-SPEC", action=ConfigAction, dest="chapters",
|
|
|
|
help=("Same as '--images' except for chapters")
|
|
|
|
)
|
2017-05-03 15:17:08 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"--abort-on-skip",
|
|
|
|
action=ConfigConstAction, nargs=0, dest="skip", const="abort",
|
|
|
|
help=("Abort extractor run if a file download would normally be "
|
|
|
|
"skipped, i.e. if a file with the same filename already exists")
|
|
|
|
)
|
2017-03-23 16:29:40 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"-R", "--retries",
|
|
|
|
metavar="RETRIES", action=ConfigAction, dest="retries", type=int,
|
|
|
|
help="Number of retries (default: 5)",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--http-timeout",
|
2017-05-03 15:17:08 +02:00
|
|
|
metavar="SECONDS", action=ConfigAction, dest="timeout", type=float,
|
2017-03-23 16:29:40 +01:00
|
|
|
help="Timeout for HTTP connections (defaut: no timeout)",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-c", "--config",
|
|
|
|
metavar="CFG", dest="cfgfiles", action="append",
|
|
|
|
help="Additional configuration files",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--config-yaml",
|
|
|
|
metavar="CFG", dest="yamlfiles", action="append",
|
|
|
|
help="Additional configuration files (YAML format)",
|
|
|
|
)
|
2017-04-25 17:09:10 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"--ignore-config", dest="load_config", action="store_false",
|
|
|
|
help="Do not read the default configuration files",
|
|
|
|
)
|
2017-03-23 16:29:40 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"-o", "--option",
|
|
|
|
metavar="OPT", action=ParseAction, dest="options", default=[],
|
|
|
|
help="Additional '<key>=<value>' option values",
|
|
|
|
)
|
2017-05-27 16:16:57 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"--write-unsupported", metavar="FILE", dest="unsupportedfile",
|
|
|
|
help=("Write URLs, which get emitted by other extractors but cannot "
|
|
|
|
"be handled, to FILE"),
|
|
|
|
)
|
2017-03-23 16:29:40 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--list-extractors", dest="list_extractors", action="store_true",
|
|
|
|
help=("Print a list of extractor classes "
|
|
|
|
"with description and example URL"),
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--list-keywords", dest="list_keywords", action="store_true",
|
|
|
|
help="Print a list of available keywords for the given URLs",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--list-modules", dest="list_modules", action="store_true",
|
|
|
|
help="Print a list of available modules/supported sites",
|
|
|
|
)
|
2017-04-26 11:33:19 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"-q", "--quiet", dest="loglevel", action="store_const",
|
|
|
|
const=logging.ERROR, default=logging.INFO,
|
|
|
|
help="Activate quiet mode",
|
|
|
|
)
|
2017-04-18 11:38:48 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"-v", "--verbose", dest="loglevel", action="store_const",
|
|
|
|
const=logging.DEBUG, default=logging.INFO,
|
|
|
|
help="Print various debugging information",
|
|
|
|
)
|
2017-03-23 16:29:40 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--version", action="version", version=__version__,
|
|
|
|
help="Print program version and exit"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"urls",
|
|
|
|
nargs="*", metavar="URL",
|
|
|
|
help="Url to download images from"
|
|
|
|
)
|
|
|
|
return parser
|