mirror of
				https://github.com/RicterZ/nhentai.git
				synced 2025-11-04 02:50:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			122 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			122 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
from __future__ import print_function
 | 
						|
import sys
 | 
						|
from optparse import OptionParser
 | 
						|
from nhentai import __version__
 | 
						|
try:
 | 
						|
    from itertools import ifilter as filter
 | 
						|
except ImportError:
 | 
						|
    pass
 | 
						|
 | 
						|
import nhentai.constant as constant
 | 
						|
from nhentai.utils import urlparse, generate_html
 | 
						|
from nhentai.logger import logger
 | 
						|
 | 
						|
try:
 | 
						|
    if sys.version_info < (3, 0, 0):
 | 
						|
        import codecs
 | 
						|
        import locale
 | 
						|
        sys.stdout = codecs.getwriter(locale.getpreferredencoding())(sys.stdout)
 | 
						|
        sys.stderr = codecs.getwriter(locale.getpreferredencoding())(sys.stderr)
 | 
						|
 | 
						|
except NameError:
 | 
						|
    # python3
 | 
						|
    pass
 | 
						|
 | 
						|
 | 
						|
def banner():
 | 
						|
    logger.info(u'''nHentai ver %s: あなたも変態。 いいね?
 | 
						|
       _   _            _        _
 | 
						|
 _ __ | | | | ___ _ __ | |_ __ _(_)
 | 
						|
| '_ \| |_| |/ _ \ '_ \| __/ _` | |
 | 
						|
| | | |  _  |  __/ | | | || (_| | |
 | 
						|
|_| |_|_| |_|\___|_| |_|\__\__,_|_|
 | 
						|
''' % __version__)
 | 
						|
 | 
						|
 | 
						|
def cmd_parser():
 | 
						|
    parser = OptionParser('\n  nhentai --search [keyword] --download'
 | 
						|
                          '\n  NHENTAI=http://h.loli.club nhentai --id [ID ...]'
 | 
						|
                          '\n\nEnvironment Variable:\n'
 | 
						|
                          '  NHENTAI                 nhentai mirror url')
 | 
						|
    parser.add_option('--download', dest='is_download', action='store_true',
 | 
						|
                      help='download doujinshi (for search result)')
 | 
						|
    parser.add_option('--show-info', dest='is_show', action='store_true', help='just show the doujinshi information')
 | 
						|
    parser.add_option('--id', type='string', dest='id', action='store', help='doujinshi ids set, e.g. 1,2,3')
 | 
						|
    parser.add_option('--search', type='string', dest='keyword', action='store', help='search doujinshi by keyword')
 | 
						|
    parser.add_option('--page', type='int', dest='page', action='store', default=1,
 | 
						|
                      help='page number of search result')
 | 
						|
    parser.add_option('--tag', type='string', dest='tag', action='store', help='download doujinshi by tag')
 | 
						|
    parser.add_option('--output', type='string', dest='output_dir', action='store', default='',
 | 
						|
                      help='output dir')
 | 
						|
    parser.add_option('--threads', '-t', type='int', dest='threads', action='store', default=5,
 | 
						|
                      help='thread count of download doujinshi')
 | 
						|
    parser.add_option('--timeout', type='int', dest='timeout', action='store', default=30,
 | 
						|
                      help='timeout of download doujinshi')
 | 
						|
    parser.add_option('--proxy', type='string', dest='proxy', action='store', default='',
 | 
						|
                      help='use proxy, example: http://127.0.0.1:1080')
 | 
						|
    parser.add_option('--html', dest='html_viewer', action='store_true',
 | 
						|
                      help='generate a html viewer at current directory')
 | 
						|
 | 
						|
    parser.add_option('--login', '-l', type='str', dest='login', action='store',
 | 
						|
                      help='username:password pair of nhentai account')
 | 
						|
 | 
						|
    parser.add_option('--nohtml', dest='is_nohtml', action='store_true',
 | 
						|
                      help='Don\'t generate HTML')
 | 
						|
 | 
						|
    parser.add_option('--cbz', dest='is_cbz', action='store_true',
 | 
						|
                      help='Generate Comic Book CBZ File')                      
 | 
						|
                      
 | 
						|
    try:
 | 
						|
        sys.argv = list(map(lambda x: unicode(x.decode(sys.stdin.encoding)), sys.argv))
 | 
						|
    except (NameError, TypeError):
 | 
						|
        pass
 | 
						|
    except UnicodeDecodeError:
 | 
						|
        exit(0)
 | 
						|
 | 
						|
    args, _ = parser.parse_args(sys.argv[1:])
 | 
						|
 | 
						|
    if args.html_viewer:
 | 
						|
        generate_html()
 | 
						|
        exit(0)
 | 
						|
 | 
						|
    if args.login:
 | 
						|
        try:
 | 
						|
            _, _ = args.login.split(':', 1)
 | 
						|
        except ValueError:
 | 
						|
            logger.error('Invalid `username:password` pair.')
 | 
						|
            exit(1)
 | 
						|
 | 
						|
        if not args.is_download:
 | 
						|
            logger.warning('YOU DO NOT SPECIFY `--download` OPTION !!!')
 | 
						|
 | 
						|
    if args.id:
 | 
						|
        _ = map(lambda id: id.strip(), args.id.split(','))
 | 
						|
        args.id = set(map(int, filter(lambda id_: id_.isdigit(), _)))
 | 
						|
 | 
						|
    if (args.is_download or args.is_show) and not args.id and not args.keyword and \
 | 
						|
            not args.login and not args.tag:
 | 
						|
        logger.critical('Doujinshi id(s) are required for downloading')
 | 
						|
        parser.print_help()
 | 
						|
        exit(1)
 | 
						|
 | 
						|
    if not args.keyword and not args.id and not args.login and not args.tag:
 | 
						|
        parser.print_help()
 | 
						|
        exit(1)
 | 
						|
 | 
						|
    if args.threads <= 0:
 | 
						|
        args.threads = 1
 | 
						|
 | 
						|
    elif args.threads > 15:
 | 
						|
        logger.critical('Maximum number of used threads is 15')
 | 
						|
        exit(1)
 | 
						|
 | 
						|
    if args.proxy:
 | 
						|
        proxy_url = urlparse(args.proxy)
 | 
						|
        if proxy_url.scheme not in ('http', 'https'):
 | 
						|
            logger.error('Invalid protocol \'{0}\' of proxy, ignored'.format(proxy_url.scheme))
 | 
						|
        else:
 | 
						|
            constant.PROXY = {'http': args.proxy, 'https': args.proxy}
 | 
						|
 | 
						|
    return args
 |