minor fixes

This commit is contained in:
Kentai Radiquum 2022-07-12 18:46:23 +05:00
parent 4a2ccfa507
commit 007f00b8ba
No known key found for this signature in database
GPG key ID: CB1FC16C710DB347
3 changed files with 45 additions and 30 deletions

View file

@ -20,8 +20,9 @@ if config.cookies is not None: # add cookies if present
def download(path): def download(path):
response = requests_retry_session(session=session).get(
response = requests_retry_session(session=session).get(f"{config.BASE_URL}{path}") f"{config.BASE_URL}{path}"
)
s = BeautifulSoup(response.text, "html.parser") s = BeautifulSoup(response.text, "html.parser")
# System messages # System messages
@ -38,8 +39,12 @@ def download(path):
filename = sanitize_filename(image.split("/")[-1:][0]) filename = sanitize_filename(image.split("/")[-1:][0])
author = s.find(class_="submission-id-sub-container").find("a").find("strong").text author = (
title = sanitize_filename(s.find(class_="submission-title").find("p").contents[0]) s.find(class_="submission-id-sub-container").find("a").find("strong").text
)
title = sanitize_filename(
s.find(class_="submission-title").find("p").contents[0]
)
view_id = int(path.split("/")[-2:-1][0]) view_id = int(path.split("/")[-2:-1][0])
output = f"{config.output_folder}/{author}" output = f"{config.output_folder}/{author}"
@ -61,25 +66,22 @@ def download(path):
if config.dont_redownload is True and ( if config.dont_redownload is True and (
os.path.isfile(output_path_fb) or os.path.isfile(output_path) os.path.isfile(output_path_fb) or os.path.isfile(output_path)
): ):
return file_exists_fallback(author, title, view_id)
image_url = f"https:{image}"
if download_file(image_url, output_path, f"{title} - [{rating}]") is True:
with open( with open(
f"{config.output_folder}/index.idx", encoding="utf-8", mode="a+" f"{config.output_folder}/index.idx", encoding="utf-8", mode="a+"
) as idx: ) as idx:
idx.write(f"({view_id})\n") idx.write(f"({view_id})\n")
return file_exists_fallback(author, title)
image_url = f"https:{image}"
download_file(
image_url,
output_path,
f"{title} - \
[{rating}]",
)
with open(f"{config.output_folder}/index.idx", encoding="utf-8", mode="a+") as idx:
idx.write(f"({view_id})\n")
if config.metadata is True: if config.metadata is True:
dsc = s.find(class_="submission-description").text.strip().replace("\r\n", "\n") dsc = (
s.find(class_="submission-description")
.text.strip()
.replace("\r\n", "\n")
)
if config.json_description is True: if config.json_description is True:
dsc = [] dsc = []
data = { data = {
@ -96,7 +98,9 @@ def download(path):
"species": s.find(class_="info").findAll("div")[2].find("span").text, "species": s.find(class_="info").findAll("div")[2].find("span").text,
"gender": s.find(class_="info").findAll("div")[3].find("span").text, "gender": s.find(class_="info").findAll("div")[3].find("span").text,
"views": int(s.find(class_="views").find(class_="font-large").text), "views": int(s.find(class_="views").find(class_="font-large").text),
"favorites": int(s.find(class_="favorites").find(class_="font-large").text), "favorites": int(
s.find(class_="favorites").find(class_="font-large").text
),
"rating": rating, "rating": rating,
"comments": [], "comments": [],
} }
@ -182,7 +186,9 @@ def create_metadata(output, data, s, title, filename):
json.dump(data, f, ensure_ascii=False, indent=4) json.dump(data, f, ensure_ascii=False, indent=4)
def file_exists_fallback(author, title): def file_exists_fallback(author, title, view_id):
with open(f"{config.output_folder}/index.idx", encoding="utf-8", mode="a+") as idx:
idx.write(f"({view_id})\n")
if config.check is True: if config.check is True:
print( print(
f'fallback: {config.SUCCESS_COLOR}Downloaded all recent files of \ f'fallback: {config.SUCCESS_COLOR}Downloaded all recent files of \

View file

@ -64,12 +64,19 @@ def system_message_handler(s):
.text.strip() .text.strip()
} }
except AttributeError: except AttributeError:
message = ( try:
s.find("section", class_="aligncenter notice-message") message = (
.find("div", class_="section-body alignleft") s.find("section", class_="aligncenter notice-message")
.find("div", class_="redirect-message") .find("div", class_="section-body alignleft")
.text.strip() .find("div", class_="redirect-message")
) .text.strip()
)
except AttributeError:
message = (
s.find("section", class_="aligncenter notice-message")
.find("div", class_="section-body alignleft")
.text.strip()
)
print(f"{config.WARN_COLOR}System Message: {message}{config.END}") print(f"{config.WARN_COLOR}System Message: {message}{config.END}")
raise download_complete raise download_complete

View file

@ -5,6 +5,7 @@ from pathlib import Path
import Modules.config as config import Modules.config as config
@lru_cache(maxsize=None) @lru_cache(maxsize=None)
def start_indexing(path, layer=0): def start_indexing(path, layer=0):
@ -19,15 +20,16 @@ def start_indexing(path, layer=0):
# iter the directory # iter the directory
for p in path.iterdir(): for p in path.iterdir():
name = p.stem
if p.is_file(): if p.is_file():
fname = re.search(r"\([0-9]{5,}\)", name) name = p.stem
if fname is None and name != "index": ext = p.suffix
match = re.search(r"\([0-9]{5,}\)", name)
if match is None and ext not in [".txt", ".idx"]:
return return
if match := re.search(r"\([0-9]{5,}\)", name): if match:
idx.write(f"{match[0]}\n") idx.write(f"{match[0]}\n")
print(f"found: {p} by {match[0]}") print(f"found: {p}")
elif p.is_dir(): elif p.is_dir():
start_indexing(p, layer + 1) start_indexing(p, layer + 1)