]> git.lizzy.rs Git - nhentai.git/blobdiff - nhentai/parser.py
Merge pull request #21 from mentaterasmus/master
[nhentai.git] / nhentai / parser.py
index b982adfff8e29050514b6f8c2622800c285d5ac1..7b5adf98b120eb985a429de6d90c26e5c4338f23 100644 (file)
@@ -1,9 +1,11 @@
 # coding: utf-8
 from __future__ import unicode_literals, print_function
 
-from bs4 import BeautifulSoup
+import os
 import re
+import threadpool
 import requests
+from bs4 import BeautifulSoup
 from tabulate import tabulate
 
 import nhentai.constant as constant
@@ -17,6 +19,66 @@ def request(method, url, **kwargs):
     return requests.__dict__[method](url, proxies=constant.PROXY, verify=False, **kwargs)
 
 
+def login_parser(username, password):
+    s = requests.Session()
+    s.proxies = constant.PROXY
+    s.verify = False
+    s.headers.update({'Referer': constant.LOGIN_URL})
+
+    s.get(constant.LOGIN_URL)
+    content = s.get(constant.LOGIN_URL).content
+    html = BeautifulSoup(content, 'html.parser').encode("ascii")
+    csrf_token_elem = html.find('input', attrs={'name': 'csrfmiddlewaretoken'})
+
+    if not csrf_token_elem:
+        raise Exception('Cannot find csrf token to login')
+    csrf_token = csrf_token_elem.attrs['value']
+
+    login_dict = {
+        'csrfmiddlewaretoken': csrf_token,
+        'username_or_email': username,
+        'password': password,
+    }
+    resp = s.post(constant.LOGIN_URL, data=login_dict)
+    if 'Invalid username (or email) or password' in resp.text:
+        logger.error('Login failed, please check your username and password')
+        exit(1)
+
+    html = BeautifulSoup(s.get(constant.FAV_URL).content, 'html.parser').encode("ascii")
+    count = html.find('span', attrs={'class': 'count'})
+    if not count:
+        logger.error('Cannot get count of your favorites, maybe login failed.')
+
+    count = int(count.text.strip('(').strip(')'))
+    pages = count / 25
+    pages += 1 if count % (25 * pages) else 0
+    logger.info('Your have %d favorites in %d pages.' % (count, pages))
+
+    if os.getenv('DEBUG'):
+        pages = 1
+
+    ret = []
+    doujinshi_id = re.compile('data-id="([\d]+)"')
+
+    def _callback(request, result):
+        ret.append(result)
+
+    thread_pool = threadpool.ThreadPool(5)
+
+    for page in range(1, pages+1):
+        try:
+            logger.info('Getting doujinshi id of page %d' % page)
+            resp = s.get(constant.FAV_URL + '?page=%d' % page).content
+            ids = doujinshi_id.findall(resp)
+            requests_ = threadpool.makeRequests(doujinshi_parser, ids, _callback)
+            [thread_pool.putRequest(req) for req in requests_]
+            thread_pool.wait()
+        except Exception as e:
+            logger.error('Error: %s, continue', str(e))
+
+    return ret
+
+
 def doujinshi_parser(id_):
     if not isinstance(id_, (int,)) and (isinstance(id_, (str,)) and not id_.isdigit()):
         raise Exception('Doujinshi id({0}) is not valid'.format(id_))
@@ -25,49 +87,29 @@ def doujinshi_parser(id_):
     logger.log(15, 'Fetching doujinshi information of id {0}'.format(id_))
     doujinshi = dict()
     doujinshi['id'] = id_
-    url = '{0}/{1}/'.format(constant.DETAIL_URL, id_)
+    url = '{0}/{1}'.format(constant.DETAIL_URL, id_)
 
     try:
-        response = request('get', url).content
+        response = request('get', url).json()
     except Exception as e:
         logger.critical(str(e))
         exit(1)
 
-    html = BeautifulSoup(response, 'html.parser')
-    doujinshi_info = html.find('div', attrs={'id': 'info'})
-
-    title = doujinshi_info.find('h1').text
-    subtitle = doujinshi_info.find('h2')
-
-    doujinshi['name'] = title
-    doujinshi['subtitle'] = subtitle.text if subtitle else ''
-
-    doujinshi_cover = html.find('div', attrs={'id': 'cover'})
-    img_id = re.search('/galleries/([\d]+)/cover\.(jpg|png)$', doujinshi_cover.a.img['src'])
-    if not img_id:
-        logger.critical('Tried yo get image id failed')
-        exit(1)
-
-    doujinshi['img_id'] = img_id.group(1)
-    doujinshi['ext'] = img_id.group(2)
-
-    pages = 0
-    for _ in doujinshi_info.find_all('div', class_=''):
-        pages = re.search('([\d]+) pages', _.text)
-        if pages:
-            pages = pages.group(1)
-            break
-    doujinshi['pages'] = int(pages)
+    doujinshi['name'] = str(response['title']['english'].encode('utf-8'))[2:]
+    doujinshi['subtitle'] = response['title']['japanese']
+    doujinshi['img_id'] = response['media_id']
+    doujinshi['ext'] = ''.join(map(lambda s: s['t'], response['images']['pages']))
+    doujinshi['pages'] = len(response['images']['pages'])
 
     # gain information of the doujinshi
-    information_fields = doujinshi_info.find_all('div', attrs={'class': 'field-name'})
-    needed_fields = ['Characters', 'Artists', 'Language', 'Tags']
-    for field in information_fields:
-        field_name = field.contents[0].strip().strip(':')
-        if field_name in needed_fields:
-            data = [sub_field.contents[0].strip() for sub_field in
-                    field.find_all('a', attrs={'class': 'tag'})]
-            doujinshi[field_name.lower()] = ', '.join(data)
+    needed_fields = ['character', 'artist', 'language']
+    for tag in response['tags']:
+        tag_type = tag['type']
+        if tag_type in needed_fields:
+            if tag_type not in doujinshi:
+                doujinshi[tag_type] = tag['name']
+            else:
+                doujinshi[tag_type] += tag['name']
 
     return doujinshi
 
@@ -76,20 +118,19 @@ def search_parser(keyword, page):
     logger.debug('Searching doujinshis of keyword {0}'.format(keyword))
     result = []
     try:
-        response = request('get', url=constant.SEARCH_URL, params={'q': keyword, 'page': page}).content
+        response = request('get', url=constant.SEARCH_URL, params={'query': keyword, 'page': page}).json()
+        if 'result' not in response:
+            raise Exception('No result in response')
     except requests.ConnectionError as e:
         logger.critical(e)
         logger.warn('If you are in China, please configure the proxy to fu*k GFW.')
         exit(1)
 
-    html = BeautifulSoup(response, 'html.parser')
-    doujinshi_search_result = html.find_all('div', attrs={'class': 'gallery'})
-    for doujinshi in doujinshi_search_result:
-        doujinshi_container = doujinshi.find('div', attrs={'class': 'caption'})
-        title = doujinshi_container.text.strip()
-        title = (title[:85] + '..') if len(title) > 85 else title
-        id_ = re.search('/g/(\d+)/', doujinshi.a['href']).group(1)
-        result.append({'id': id_, 'title': title})
+    for row in response['result']:
+        title = row['title']['english']
+        title = title[:85] + '..' if len(title) > 85 else title
+        result.append({'id': row['id'], 'title': title})
+
     if not result:
         logger.warn('Not found anything of keyword {}'.format(keyword))
 
@@ -104,5 +145,6 @@ def print_doujinshi(doujinshi_list):
     logger.info('Search Result\n' +
                 tabulate(tabular_data=doujinshi_list, headers=headers, tablefmt='rst'))
 
+
 if __name__ == '__main__':
     print(doujinshi_parser("32271"))