-
-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# -*- coding: utf-8 -*- | ||
import logging | ||
from bs4 import Tag | ||
from lncrawl.core.crawler import Crawler | ||
import urllib.parse | ||
|
||
from lncrawl.models import Volume, Chapter | ||
|
||
headers = { | ||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0", | ||
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8," | ||
"application/signed-exchange;v=b3;q=0.7", | ||
"Accept-Encoding": "gzip, deflate, br", | ||
"Accept-Language": "en-US,en;q=0.9,de-CH;q=0.8,de;q=0.7", | ||
"Cache-Control": "no-cache", | ||
"Content-Type": "application/x-www-form-urlencoded", | ||
"Origin": "https://69shuba.cx/", | ||
"DNT": "1", | ||
"Referer": "https://69shuba.cx/modules/article/search.php", | ||
"Connection": "keep-alive", | ||
"Upgrade-Insecure-Requests": "1", | ||
"Sec-Ch-Ua": '"Not_A Brand";v="8", "Chromium";v="120", "Opera GX";v="106"', | ||
"Sec-Ch-Ua-Platform": "Windows", | ||
"Sec-Fetch-Dest": "document", | ||
"Sec-Fetch-Mode": "navigate", | ||
"Sec-Fetch-Site": "same-origin", | ||
"Sec-Fetch-User": "?1", | ||
} | ||
|
||
logger = logging.getLogger(__name__) | ||
search_url = "https://69shuba.cx/modules/article/search.php" | ||
|
||
|
||
class sixnineshu(Crawler): | ||
base_url = [ | ||
"https://69shuba.cx" | ||
] | ||
|
||
def initialize(self): | ||
# the default lxml parser cannot handle the huge gbk encoded sites (fails after 4.3k chapters) | ||
self.init_parser("html.parser") | ||
self.init_executor(ratelimit=20) | ||
|
||
def search_novel(self, query): | ||
query = urllib.parse.quote(query.encode("gbk")) | ||
data = f"searchkey={query}&searchtype=all" | ||
soup = self.get_soup( | ||
search_url, | ||
headers=headers, | ||
data=data, | ||
encoding="gbk", | ||
# cookies=self.cookies2, | ||
) | ||
|
||
results = [] | ||
for novel in soup.select("div.newbox ul li"): | ||
results.append( | ||
{ | ||
"title": novel.select_one("h3 a:not([imgbox])").text.title(), | ||
"url": self.absolute_url(novel.select_one("h3 a.imgbox")["href"]), | ||
"info": "Latest: %s" % novel.select_one("div.zxzj p").text, | ||
} | ||
) | ||
|
||
return results | ||
|
||
def read_novel_info(self): | ||
logger.debug("Visiting %s", self.novel_url) | ||
soup = self.get_soup(self.novel_url, encoding="gbk") | ||
|
||
possible_title = soup.select_one("div.booknav2 h1 a") | ||
assert possible_title, "No novel title" | ||
self.novel_title = possible_title.text.strip() | ||
logger.info("Novel title: %s", self.novel_title) | ||
|
||
possible_image = soup.select_one("div.bookimg2 img") | ||
if isinstance(possible_image, Tag): | ||
self.novel_cover = self.absolute_url(possible_image["src"]) | ||
logger.info("Novel cover: %s", self.novel_cover) | ||
|
||
possible_author = soup.select_one('.booknav2 p a') | ||
if isinstance(possible_author, Tag): | ||
self.novel_author = possible_author.text.strip() | ||
logger.info("Novel Author: %s", self.novel_author) | ||
|
||
# Only one category per novel on this website | ||
possible_tag = soup.select_one('div.booknav2 > p:nth-child(4) > a') | ||
if isinstance(possible_tag, Tag): | ||
self.novel_tags = [possible_tag.text.strip()] | ||
logger.info("Novel Tag: %s", self.novel_tags) | ||
|
||
# https://www.69shuba.com/txt/A43616.htm -> https://www.69shuba.com/A43616/ | ||
# soup = self.get_soup(self.novel_url.replace("/txt/", "/").replace(".htm", "/"), encoding="gbk") | ||
|
||
# manually correct their false chapter identifiers if need be | ||
chapter_catalog = self.get_soup(f'{self.novel_url[:-4]}/', encoding="gbk") | ||
# logger.debug(chapter_catalog.select("div#catalog li")) | ||
chapter_list = chapter_catalog.select("div#catalog li") | ||
for item in reversed(chapter_list): | ||
chap_id = int(item["data-num"]) | ||
vol_id = len(self.chapters) // 100 + 1 | ||
if len(self.chapters) % 100 == 0: | ||
self.volumes.append(Volume(vol_id)) | ||
a = item.a["href"] | ||
self.chapters.append( | ||
Chapter( | ||
chap_id, | ||
url=self.absolute_url(a), | ||
title=item.a.text.strip(), | ||
volume=vol_id, | ||
) | ||
) | ||
|
||
def download_chapter_body(self, chapter): | ||
soup = self.get_soup(chapter.url, encoding="gbk") | ||
|
||
contents = soup.select_one("div.txtnav") | ||
contents.select_one("h1").decompose() | ||
contents.select_one("div.txtinfo").decompose() | ||
contents.select_one("div#txtright").decompose() | ||
|
||
return self.cleaner.extract_contents(contents) |