]> git.lizzy.rs Git - nhentai.git/commitdiff
Add new option to avoid cloudflare captcha
authorkrrr <guogaishiwo@gmail.com>
Sat, 30 Apr 2022 03:20:04 +0000 (11:20 +0800)
committerkrrr <guogaishiwo@gmail.com>
Sat, 30 Apr 2022 03:22:41 +0000 (11:22 +0800)
README.rst
nhentai/cmdline.py
nhentai/command.py
nhentai/constant.py
nhentai/utils.py

index 49e729dbd1343adbab593084da2b2104abf5847a..86bb7694457b060e7b9208d17bac7a0990228f70 100644 (file)
@@ -72,7 +72,7 @@ Set your nhentai cookie against captcha:
 
     nhentai --cookie "YOUR COOKIE FROM nhentai.net"
 
-**NOTE**: The format of the cookie is `"csrftoken=TOKEN; sessionid=ID"`
+**NOTE**: The format of the cookie is `"csrftoken=TOKEN; sessionid=ID; cf_chl_2=CLOUDFLARE; cf_chl_prog=CLOUDFLARE; cf_clearance=CLOUDFLARE"`
 
 | To get csrftoken and sessionid, first login to your nhentai account in web browser, then:
 | (Chrome) |ve| |ld| More tools    |ld| Developer tools     |ld| Application |ld| Storage |ld| Cookies |ld| https://nhentai.net
index 6c39ceba133eb1fe360f6c239285b494f70c636c..8cca43d7fcdedf8a07f26850b4fa2b174b47f116 100644 (file)
@@ -109,7 +109,9 @@ def cmd_parser():
 
     # nhentai options
     parser.add_option('--cookie', type='str', dest='cookie', action='store',
-                      help='set cookie of nhentai to bypass Google recaptcha')
+                      help='set cookie of nhentai to bypass Cloudflare captcha')
+    parser.add_option('--useragent', type='str', dest='useragent', action='store',
+                      help='set useragent to bypass Cloudflare captcha')
     parser.add_option('--language', type='str', dest='language', action='store',
                       help='set default language to parse doujinshis')
     parser.add_option('--clean-language', dest='clean_language', action='store_true', default=False,
@@ -148,20 +150,24 @@ def cmd_parser():
     # --- set config ---
     if args.cookie is not None:
         constant.CONFIG['cookie'] = args.cookie
+        write_config()
         logger.info('Cookie saved.')
+        exit(0)
+    elif args.useragent is not None:
+        constant.CONFIG['useragent'] = args.useragent
         write_config()
+        logger.info('Useragent saved.')
         exit(0)
-
-    if args.language is not None:
+    elif args.language is not None:
         constant.CONFIG['language'] = args.language
-        logger.info('Default language now set to \'{0}\''.format(args.language))
         write_config()
+        logger.info('Default language now set to \'{0}\''.format(args.language))
         exit(0)
         # TODO: search without language
 
     if args.proxy is not None:
         proxy_url = urlparse(args.proxy)
-        if not args.proxy == '' and proxy_url.scheme not in ('http', 'https'):
+        if not args.proxy == '' and proxy_url.scheme not in ('http', 'https', 'socks5', 'socks5h', 'socks4', 'socks4a'):
             logger.error('Invalid protocol \'{0}\' of proxy, ignored'.format(proxy_url.scheme))
             exit(0)
         else:
index a6c91d050bb598620ceb9b5dc60fba28f54535e6..e514144ea78466714a3308140d30027f62dca891 100644 (file)
@@ -93,9 +93,6 @@ def main():
                 doujinshi.downloader = downloader
                 doujinshi.download()
 
-            doujinshi.downloader = downloader
-            doujinshi.download()
-
             if options.generate_metadata:
                 table = doujinshi.table
                 generate_metadata_file(options.output_dir, table, doujinshi)
index 10feab8e0eca695e30ce122f54d667a612cd9baa..e100898ec92542ea035763e683bf1dcb56253f9b 100644 (file)
@@ -34,6 +34,7 @@ CONFIG = {
     'cookie': '',
     'language': '',
     'template': '',
+    'useragent': 'nhentai command line client (https://github.com/RicterZ/nhentai)'
 }
 
 LANGUAGEISO ={
index e0a5b4d087bffe9fb549a61c340a70c9f135e40a..835463785a18240fe875911b14f7a4687a4a48e2 100644 (file)
@@ -17,7 +17,7 @@ def request(method, url, **kwargs):
     session = requests.Session()
     session.headers.update({
         'Referer': constant.LOGIN_URL,
-        'User-Agent': 'nhentai command line client (https://github.com/RicterZ/nhentai)',
+        'User-Agent': constant.CONFIG['useragent'],
         'Cookie': constant.CONFIG['cookie']
     })
 
@@ -28,10 +28,14 @@ def request(method, url, **kwargs):
 
 
 def check_cookie():
-    response = request('get', constant.BASE_URL).text
-    username = re.findall('"/users/\d+/(.*?)"', response)
+    response = request('get', constant.BASE_URL)
+    if response.status_code == 503 and 'cf-browser-verification' in response.text:
+        logger.error('Blocked by Cloudflare captcha, please set your cookie and useragent')
+        exit(-1)
+
+    username = re.findall('"/users/\d+/(.*?)"', response.text)
     if not username:
-        logger.error('Cannot get your username, please check your cookie or use `nhentai --cookie` to set your cookie')
+        logger.warning('Cannot get your username, please check your cookie or use `nhentai --cookie` to set your cookie')
     else:
         logger.info('Login successfully! Your username: {}'.format(username[0]))