dosage/dosage

349 lines
13 KiB
Plaintext
Raw Normal View History

2012-06-20 19:58:13 +00:00
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
2012-06-20 19:58:13 +00:00
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
2014-01-05 15:50:57 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
2013-03-07 17:19:20 +00:00
# ___
# / \___ ___ __ _ __ _ ___
# / /\ / _ \/ __|/ _` |/ _` |/ _ \
# / /_// (_) \__ \ (_| | (_| | __/
# /___,' \___/|___/\__,_|\__, |\___|
# |___/
from __future__ import division, print_function
2012-06-20 19:58:13 +00:00
import sys
import os
2013-02-22 17:29:58 +00:00
import argparse
import pydoc
2013-04-04 16:30:04 +00:00
from io import StringIO
import dosagelib
2014-03-04 17:38:46 +00:00
from dosagelib import events, configuration, singleton, director
2012-06-20 19:58:13 +00:00
from dosagelib.output import out
2015-04-21 19:56:54 +00:00
from dosagelib.util import internal_error, strlimit
2012-12-12 16:41:29 +00:00
from dosagelib.ansicolor import get_columns
2012-06-20 19:58:13 +00:00
class ArgumentParser(argparse.ArgumentParser):
"""Custom argument parser."""
def print_help(self, file=None):
"""Paginate help message on TTYs."""
msg = self.format_help()
if file is None:
file = sys.stdout
if hasattr(file, "isatty") and file.isatty():
pydoc.pager(msg)
else:
print(msg, file=file)
Examples = """\
EXAMPLES
List available comics (ca. 3000 at the moment):
dosage -l
Get the latest comic of for example CalvinAndHobbes and save it in the "Comics"
directory:
dosage CalvinAndHobbes
If you already have downloaded several comics and want to get the latest
strips of all of them:
dosage --continue @
"""
2012-06-20 19:58:13 +00:00
def setupOptions():
2012-09-26 14:47:39 +00:00
"""Construct option parser.
@return: new option parser
2013-02-22 17:29:58 +00:00
@rtype argparse.ArgumentParser
2012-09-26 14:47:39 +00:00
"""
kwargs = dict(
2013-03-27 18:59:24 +00:00
description = "A comic downloader and archiver.",
epilog = Examples,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
parser = ArgumentParser(**kwargs)
2013-02-22 17:29:58 +00:00
parser.add_argument('-v', '--verbose', action='count', default=0, help='provides verbose output, use multiple times for more verbosity')
parser.add_argument('-n', '--numstrips', action='store', type=int, default=0, help='traverse and retrieve the given number of comic strips; use --all to retrieve all comic strips')
parser.add_argument('-a', '--all', action='store_true', help='traverse and retrieve all comic strips')
parser.add_argument('-c', '--continue', action='store_true', dest='cont', help='traverse and retrieve comic strips until an existing one is found')
2013-02-22 17:29:58 +00:00
parser.add_argument('-b', '--basepath', action='store', default='Comics', help='set the path to create invidivual comic directories in, default is Comics', metavar='PATH')
parser.add_argument('--baseurl', action='store', help='the base URL of your comics directory (for RSS, HTML, etc.); this should correspond to --base-path', metavar='PATH')
parser.add_argument('-l', '--list', action='store_true', help='list available comic modules')
parser.add_argument('--singlelist', action='store_true', help='list available comic modules in a single list')
2013-02-22 17:29:58 +00:00
parser.add_argument('--version', action='store_true', help='display the version number')
2013-04-08 18:19:10 +00:00
parser.add_argument('--vote', action='store_true', help='vote for the selected comics')
2013-02-22 17:29:58 +00:00
parser.add_argument('-m', '--modulehelp', action='store_true', help='display help for comic modules')
parser.add_argument('-t', '--timestamps', action='store_true', help='print timestamps for all output at any info level')
parser.add_argument('-o', '--output', action='append', dest='handler', choices=events.getHandlerNames(), help='sets output handlers for downloaded comics')
2015-05-20 10:38:29 +00:00
parser.add_argument('--no-downscale', action='store_false', dest='allowdownscale', help='prevent downscaling when using html or rss handler')
2015-04-25 12:19:08 +00:00
parser.add_argument('-p', '--parallel', action='store', type=int, default=1, help='fetch comics in parallel. Specify the number of connections')
parser.add_argument('--adult', action='store_true', help='confirms that you are old enough to view adult content')
2015-05-25 10:20:47 +00:00
parser.add_argument('--allow-multiple', action='store_true', help='allows multiple instances to run at the same time. Use if you know what you are doing.')
2013-04-25 17:00:34 +00:00
# used for development testing prev/next matching
2013-04-10 19:47:05 +00:00
parser.add_argument('--dry-run', action='store_true', help=argparse.SUPPRESS)
2013-04-08 18:17:02 +00:00
# multimatch is only used for development, eg. testing if all comics of a scripted plugin are working
2013-03-07 17:19:20 +00:00
parser.add_argument('--multimatch', action='store_true', help=argparse.SUPPRESS)
parser.add_argument('comic', nargs='*', help='comic module name (including case insensitive substrings)')
2013-02-27 05:50:34 +00:00
try:
import argcomplete
argcomplete.autocomplete(parser)
2013-02-27 05:51:20 +00:00
except ImportError:
pass
2012-06-20 19:58:13 +00:00
return parser
2012-09-26 14:47:39 +00:00
2013-04-08 18:17:02 +00:00
def displayVersion(verbose):
2012-09-26 14:47:39 +00:00
"""Display application name, version, copyright and license."""
2013-04-08 18:17:02 +00:00
print(configuration.App)
print(configuration.Copyright)
print(configuration.Freeware)
print("For support see", configuration.SupportUrl)
if verbose:
# search for updates
from dosagelib.updater import check_update
result, value = check_update()
if result:
if value:
version, url = value
if url is None:
# current version is newer than online version
text = ('Detected local or development version %(currentversion)s. '
'Available version of %(app)s is %(version)s.')
else:
# display update link
text = ('A new version %(version)s of %(app)s is '
'available at %(url)s.')
attrs = dict(version=version, app=configuration.AppName,
url=url, currentversion=dosagelib.__version__)
2013-04-08 18:17:02 +00:00
print(text % attrs)
else:
if value is None:
value = 'invalid update file syntax'
text = ('An error occured while checking for an '
'update of %(app)s: %(error)s.')
attrs = dict(error=value, app=configuration.AppName)
print(text % attrs)
2012-10-11 10:03:12 +00:00
return 0
2012-09-26 14:47:39 +00:00
2012-10-11 10:03:12 +00:00
def setOutputInfo(options):
"""Set global output level and timestamp option."""
out.level = 0
out.level += options.verbose
out.timestamps = options.timestamps
2013-04-11 16:27:44 +00:00
# debug urllib3
#from requests.packages.urllib3 import add_stderr_logger
#add_stderr_logger()
2012-06-20 19:58:13 +00:00
2013-04-29 05:36:08 +00:00
def displayHelp(options):
2012-10-11 10:03:12 +00:00
"""Print help for comic strips."""
2013-04-29 05:36:08 +00:00
errors = 0
2013-03-11 19:05:06 +00:00
try:
for scraperobj in director.getScrapers(options.comic, options.basepath, listing=True):
2013-04-29 05:36:08 +00:00
errors += displayComicHelp(scraperobj)
2013-03-11 19:05:06 +00:00
except ValueError as msg:
2013-03-25 18:39:37 +00:00
out.exception(msg)
2013-04-29 05:36:08 +00:00
return 2
return errors
2012-10-11 10:03:12 +00:00
2012-12-07 23:45:18 +00:00
2012-12-12 16:41:29 +00:00
def displayComicHelp(scraperobj):
"""Print help for a comic."""
2014-01-05 16:37:13 +00:00
orig_context = out.context
2015-05-16 12:47:54 +00:00
out.context = scraperobj.getName()
2012-12-12 16:41:29 +00:00
try:
2013-04-29 19:58:31 +00:00
out.info(u"URL: " + scraperobj.url)
out.info(u"Language: " + scraperobj.language())
2015-05-16 12:47:54 +00:00
if scraperobj.adult:
out.info(u"Adult comic, use option --adult to fetch.")
disabled = scraperobj.getDisabledReasons()
if disabled:
out.info(u"Disabled: " + " ".join(disabled.values()))
2012-12-12 16:41:29 +00:00
if scraperobj.help:
for line in scraperobj.help.splitlines():
out.info(line)
2013-04-29 05:36:08 +00:00
return 0
except ValueError as msg:
out.exception(msg)
return 1
2012-12-12 16:41:29 +00:00
finally:
2014-01-05 16:37:13 +00:00
out.context = orig_context
2012-12-12 16:41:29 +00:00
2014-01-05 15:01:11 +00:00
def voteComics(options):
"""Vote for comics."""
errors = 0
try:
2014-03-04 17:38:46 +00:00
for scraperobj in director.getScrapers(options.comic, options.basepath, options.adult, options.multimatch):
2014-01-05 15:01:11 +00:00
errors += voteComic(scraperobj)
except ValueError as msg:
out.exception(msg)
errors += 1
2012-12-12 16:41:29 +00:00
return errors
2014-01-05 15:01:11 +00:00
def voteComic(scraperobj):
2013-04-09 17:33:50 +00:00
"""Vote for given comic scraper."""
errors = 0
2014-01-05 16:37:13 +00:00
orig_context = out.context
2015-05-16 12:47:54 +00:00
out.context = scraperobj.getName()
2013-04-09 17:33:50 +00:00
try:
2014-01-05 15:17:34 +00:00
name = scraperobj.getName()
2013-04-09 17:33:50 +00:00
answer = scraperobj.vote()
2013-04-30 16:09:42 +00:00
out.debug(u'Vote answer %r' % answer)
2013-04-09 17:33:50 +00:00
if answer == 'counted':
url = configuration.Url + 'comics/%s.html' % name.replace('/', '_')
2013-04-30 04:40:20 +00:00
out.info(u'Vote submitted. Votes are updated regularly at %s.' % url)
2013-04-09 17:33:50 +00:00
elif answer == 'no':
2013-04-30 04:40:20 +00:00
out.info(u'Vote not submitted - your vote has already been submitted before.')
2013-04-09 17:33:50 +00:00
elif answer == 'noname':
2013-04-30 04:40:20 +00:00
out.warn(u'The comic %s cannot be voted.' % name)
2013-04-09 17:33:50 +00:00
else:
2013-04-30 04:40:20 +00:00
out.warn(u'Error submitting vote parameters: %r' % answer)
2013-04-09 17:33:50 +00:00
except Exception as msg:
out.exception(msg)
errors += 1
finally:
2014-01-05 16:37:13 +00:00
out.context = orig_context
2013-04-09 17:33:50 +00:00
return errors
2013-02-22 17:29:58 +00:00
def run(options):
2012-10-11 10:03:12 +00:00
"""Execute comic commands."""
setOutputInfo(options)
# ensure only one instance of dosage is running
2015-05-25 10:20:47 +00:00
if not options.allow_multiple:
me = singleton.SingleInstance()
2012-10-11 10:03:12 +00:00
if options.version:
2013-04-08 18:17:02 +00:00
return displayVersion(options.verbose)
2012-10-11 10:03:12 +00:00
if options.list:
return doList()
if options.singlelist:
2013-03-08 21:33:05 +00:00
return doList(columnList=False, verbose=options.verbose)
# after this a list of comic strips is needed
if not options.comic:
2013-04-30 16:09:42 +00:00
out.warn(u'No comics specified, bailing out!')
return 1
2013-02-22 17:29:58 +00:00
if options.modulehelp:
2013-04-29 05:36:08 +00:00
return displayHelp(options)
2014-01-05 15:01:11 +00:00
if options.vote:
return voteComics(options)
2014-03-04 17:38:46 +00:00
return director.getComics(options)
2012-10-11 10:03:12 +00:00
2013-03-08 21:33:05 +00:00
def doList(columnList=True, verbose=False):
2012-10-11 10:03:12 +00:00
"""List available comics."""
2014-01-05 16:37:13 +00:00
orig_context = out.context
out.context = u''
try:
page = hasattr(sys.stdout, "isatty") and sys.stdout.isatty()
if page:
fd = StringIO(u'')
out.setStream(fd)
out.info(u'Available comic scrapers:')
out.info(u'Comics tagged with [%s] require age confirmation with the --adult option.' % TAG_ADULT)
out.info(u'Non-english comics are tagged with [%s].' % TAG_LANG)
scrapers = sorted(director.getAllScrapers(listing=True), key=lambda s: s.getName())
2014-01-05 16:37:13 +00:00
if columnList:
num, disabled = doColumnList(scrapers)
2014-01-05 16:37:13 +00:00
else:
num, disabled = doSingleList(scrapers, verbose=verbose)
2014-01-05 16:37:13 +00:00
out.info(u'%d supported comics.' % num)
if disabled:
out.info('')
out.info(u'Some comics are disabled, they are tagged with [%s:REASON], where REASON is one of:' % TAG_DISABLED)
for k in disabled:
out.info(u' %-10s %s' % (k, disabled[k]))
2014-01-05 16:37:13 +00:00
if page:
pydoc.pager(fd.getvalue())
return 0
finally:
out.context = orig_context
2012-10-11 10:03:12 +00:00
2013-03-08 21:33:05 +00:00
def doSingleList(scrapers, verbose=False):
2012-10-11 10:03:12 +00:00
"""Get list of scraper names, one per line."""
disabled = {}
2012-10-12 19:57:06 +00:00
for num, scraperobj in enumerate(scrapers):
2013-03-08 21:33:05 +00:00
if verbose:
displayComicHelp(scraperobj)
else:
2015-05-16 12:47:54 +00:00
out.info(getTaggedScraperName(scraperobj, reasons=disabled))
return num, disabled
2012-10-11 10:03:12 +00:00
def doColumnList(scrapers):
"""Get list of scraper names with multiple names per line."""
disabled = {}
2012-10-12 19:57:06 +00:00
screenWidth = get_columns(sys.stdout)
2012-12-12 16:41:29 +00:00
# limit name length so at least two columns are there
limit = (screenWidth // 2) - 8
2015-05-16 12:47:54 +00:00
names = [getTaggedScraperName(scraperobj, limit=limit, reasons=disabled) for scraperobj in scrapers]
2012-10-12 19:57:06 +00:00
num = len(names)
2012-12-12 16:41:29 +00:00
maxlen = max(len(name) for name in names)
namesPerLine = max(screenWidth // (maxlen + 1), 1)
2012-10-11 10:03:12 +00:00
while names:
2013-04-30 04:40:20 +00:00
out.info(u''.join(name.ljust(maxlen) for name in names[:namesPerLine]))
2012-10-11 10:03:12 +00:00
del names[:namesPerLine]
return num, disabled
2012-10-11 10:03:12 +00:00
2013-03-18 17:16:05 +00:00
TAG_ADULT = "adult"
TAG_LANG = "lang"
TAG_DISABLED = "dis"
2012-10-11 10:03:12 +00:00
2015-05-16 12:47:54 +00:00
def getTaggedScraperName(scraperobj, limit=None, reasons=None):
2012-12-12 16:41:29 +00:00
"""Get comic scraper name."""
2013-03-18 17:16:05 +00:00
tags = []
if scraperobj.adult:
tags.append(TAG_ADULT)
if scraperobj.lang != "en":
tags.append("%s:%s" % (TAG_LANG, scraperobj.lang))
disabled = scraperobj.getDisabledReasons()
2015-07-21 21:52:38 +00:00
if disabled and reasons is not None:
reasons.update(disabled)
for reason in disabled:
tags.append("%s:%s" % (TAG_DISABLED, reason))
2013-03-18 17:16:05 +00:00
if tags:
suffix = " [" + ", ".join(tags) + "]"
else:
suffix = ""
name = scraperobj.getName()
2012-12-12 16:41:29 +00:00
if limit is not None:
name = strlimit(name, limit)
return name + suffix
2012-06-20 19:58:13 +00:00
def main():
2012-09-26 14:47:39 +00:00
"""Parse options and execute commands."""
2012-06-20 19:58:13 +00:00
try:
2014-01-19 12:16:03 +00:00
options = setupOptions().parse_args()
options.basepath = os.path.expanduser(options.basepath)
res = run(options)
2012-06-20 19:58:13 +00:00
except KeyboardInterrupt:
print("Aborted.")
2012-06-20 19:58:13 +00:00
res = 1
except Exception:
internal_error()
res = 2
return res
def profile():
"""Profile the loading of all scrapers."""
import cProfile
cProfile.run("scraper.get_scraperclasses()", "dosage.prof")
def viewprof():
"""View profile stats."""
import pstats
stats = pstats.Stats("dosage.prof")
stats.strip_dirs().sort_stats("cumulative").print_stats(100)
2012-06-20 19:58:13 +00:00
if __name__ == '__main__':
sys.exit(main())
#profile()
#viewprof()