feat: Implement the dry run Radiquum/furaffinity-dl#7

This commit is contained in:
Kentai Radiquum 2024-10-29 22:59:11 +05:00
parent c0962094ca
commit 79b6001106
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 45 additions and 36 deletions

View file

@ -177,6 +177,13 @@ parser.add_argument(
help="how many threads will be used for parallel download [default: 3]", help="how many threads will be used for parallel download [default: 3]",
type=int, type=int,
) )
parser.add_argument(
"--dry-run",
"--dry",
dest="dry_run",
action="store_true",
help="disable multithreading download",
)
args = parser.parse_args() args = parser.parse_args()
@ -221,6 +228,7 @@ real_category: bool = args.real_category
request_compress: bool = args.request_compress request_compress: bool = args.request_compress
check_file_size: bool = args.check_file_size check_file_size: bool = args.check_file_size
disable_threading: bool = args.disable_threading disable_threading: bool = args.disable_threading
dry_run: bool = args.dry_run
if check_file_size: if check_file_size:
request_compress = False request_compress = False

View file

@ -18,7 +18,7 @@ def download(path, max_retries=5):
response = requests_retry_session().get(f"{config.BASE_URL}{path}") response = requests_retry_session().get(f"{config.BASE_URL}{path}")
s = BeautifulSoup(response.text, "html.parser") s = BeautifulSoup(response.text, "html.parser")
# System messages # System messages
if s.find(class_="notice-message") is not None: if s.find(class_="notice-message") is not None:
system_message_handler(s) system_message_handler(s)
@ -49,50 +49,52 @@ def download(path, max_retries=5):
output = f"{config.output_folder}/{author}" output = f"{config.output_folder}/{author}"
rating = s.find(class_="rating-box").text.strip() rating = s.find(class_="rating-box").text.strip()
if config.real_category:
real_category = get_image_cateory(s)
output = f"{config.output_folder}/{author}/{real_category}"
else:
if config.category != "gallery":
output = f"{config.output_folder}/{author}/{config.category}"
if config.folder is not None:
output = f"{config.output_folder}/{author}/folders/{config.folder.split('/')[1]}"
os.makedirs(output, exist_ok=True)
output_path = f"{output}/{title} ({view_id}) - {filename}"
output_path_fb = f"{output}/{title} - {filename}"
if config.rating is True:
os.makedirs(f"{output}/{rating}", exist_ok=True)
output_path = f"{output}/{rating}/{title} ({view_id}) - {filename}"
output_path_fb = f"{output}/{rating}/{title} - {filename}"
image_url = f"https:{image}" image_url = f"https:{image}"
if config.check_file_size and ( if not config.dry_run:
if config.real_category:
real_category = get_image_cateory(s)
output = f"{config.output_folder}/{author}/{real_category}"
else:
if config.category != "gallery":
output = f"{config.output_folder}/{author}/{config.category}"
if config.folder is not None:
output = f"{config.output_folder}/{author}/folders/{config.folder.split('/')[1]}"
os.makedirs(output, exist_ok=True)
output_path = f"{output}/{title} ({view_id}) - {filename}"
output_path_fb = f"{output}/{title} - {filename}"
if config.rating is True:
os.makedirs(f"{output}/{rating}", exist_ok=True)
output_path = f"{output}/{rating}/{title} ({view_id}) - {filename}"
output_path_fb = f"{output}/{rating}/{title} - {filename}"
if config.check_file_size 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)
): ):
content_length = get_content_length(image_url) content_length = get_content_length(image_url)
delete_file_if_mismatch_size(output_path_fb, content_length) delete_file_if_mismatch_size(output_path_fb, content_length)
delete_file_if_mismatch_size(output_path, content_length) delete_file_if_mismatch_size(output_path, content_length)
if config.dont_redownload is True and (
os.path.isfile(output_path_fb) or os.path.isfile(output_path)
):
return file_exists_fallback(author, title, view_id)
if config.dont_redownload is True and ( if (
os.path.isfile(output_path_fb) or os.path.isfile(output_path)
):
return file_exists_fallback(author, title, view_id)
if (
download_file( download_file(
image_url, f"{config.BASE_URL}{path}", output_path, f"{title} - [{rating}]" image_url, f"{config.BASE_URL}{path}", output_path, f"{title} - [{rating}]"
) )
is True 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")
else:
return download(path, max_retries - 1)
else: else:
return download(path, max_retries - 1) print(f"{config.SUCCESS_COLOR}[DRY] Found Submission: {title} - [{rating}]{config.END}")
if config.metadata is True: if config.metadata is True:
if config.html_description is True: if config.html_description is True:
@ -125,7 +127,6 @@ def download(path, max_retries=5):
f'{config.SUCCESS_COLOR}File saved as \ f'{config.SUCCESS_COLOR}File saved as \
"{output_path}" {config.END}' "{output_path}" {config.END}'
) )
return True return True