Skip to content

Commit b25b58a

Browse files
committed
👷 Refactored path file split method.
1 parent 1336beb commit b25b58a

File tree

2 files changed

+14
-21
lines changed

2 files changed

+14
-21
lines changed

tidal_dl_ng/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def _download(ctx: typer.Context, urls: list[str], try_login: bool = True) -> bo
139139
file_template=file_template,
140140
download_delay=download_delay,
141141
quality_audio=settings.data.quality_audio,
142-
quality_video=settings.data.quality_video
142+
quality_video=settings.data.quality_video,
143143
)
144144
elif media_type in [MediaType.ALBUM, MediaType.PLAYLIST, MediaType.MIX, MediaType.ARTIST]:
145145
item_ids: [int] = []

tidal_dl_ng/helper/path.py

+13-20
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
import posixpath
55
import re
66
import sys
7-
from collections.abc import Generator
87
from copy import deepcopy
9-
from pathlib import Path
10-
from typing import Any
118
from urllib.parse import unquote, urlsplit
129

1310
from pathvalidate import sanitize_filename, sanitize_filepath
@@ -210,18 +207,7 @@ def get_format_template(
210207
def path_file_sanitize(path_file: pathlib.Path, adapt: bool = False, uniquify: bool = True) -> pathlib.Path:
211208
sanitized_path_file: pathlib.Path = pathlib.Path(path_file.root)
212209
# Get each directory name separately (first value in tuple; second value is for the file suffix).
213-
to_sanitize: [(str, str)] = []
214-
receding_is_first: bool = True
215-
216-
for i in receding_path(path_file):
217-
if receding_is_first:
218-
receding_is_first = False
219-
220-
to_sanitize.append((i.stem, i.suffix))
221-
else:
222-
to_sanitize.append((i.name, ""))
223-
224-
to_sanitize.reverse()
210+
to_sanitize: [[str, str]] = path_split_parts_suffix(path_file)
225211

226212
for name, suffix in to_sanitize:
227213
# Sanitize names: We need first top make sure that none file / directory name has bad chars or is longer than 255 chars.
@@ -256,7 +242,7 @@ def path_file_sanitize(path_file: pathlib.Path, adapt: bool = False, uniquify: b
256242

257243
# Sanitize the whole path. The whole path with filename is not allowed to be longer then the max path length depending on the OS.
258244
try:
259-
sanitized_path_file: str = sanitize_filepath(
245+
sanitized_path_file: pathlib.Path = sanitize_filepath(
260246
sanitized_path_file, replacement_text=" ", validate_after_sanitize=True, platform="auto"
261247
)
262248
except ValidationError as e:
@@ -344,8 +330,15 @@ def url_to_filename(url: str) -> str:
344330
return basename
345331

346332

347-
def receding_path(p: pathlib.Path) -> Generator[Path | Any, Any, None]:
348-
while str(p) != p.root:
349-
yield p
333+
def path_split_parts_suffix(p: pathlib.Path) -> [[str, str]]:
334+
"""Splits the path to file in parts and also splits the suffix from the file stem.
350335
351-
p = p.parent
336+
:param p: Path to file which should be split in parts.
337+
:type p: pathlib.Path
338+
:return: List of tuples (Stem, Suffix) of each path part.
339+
"""
340+
result: [[str, str]] = [[part, ""] for part in p.parts]
341+
result[-1][0] = p.stem
342+
result[-1][-1] = p.suffix
343+
344+
return result

0 commit comments

Comments
 (0)