2024-04-19 09:43:21 +00:00
|
|
|
from typing import Tuple, Union, Optional
|
2023-09-13 16:55:04 +00:00
|
|
|
from pathlib import Path
|
2024-04-09 12:00:51 +00:00
|
|
|
import string
|
2024-04-19 09:40:00 +00:00
|
|
|
from functools import lru_cache
|
2023-07-27 18:44:24 +00:00
|
|
|
|
2023-04-18 20:39:19 +00:00
|
|
|
from transliterate.exceptions import LanguageDetectionError
|
|
|
|
from transliterate import translit
|
2023-05-10 14:39:44 +00:00
|
|
|
from pathvalidate import sanitize_filename
|
|
|
|
|
2023-04-18 20:39:19 +00:00
|
|
|
|
2023-07-27 18:44:24 +00:00
|
|
|
COMMON_TITLE_APPENDIX_LIST: Tuple[str, ...] = (
|
|
|
|
"(official video)",
|
|
|
|
)
|
2024-04-19 10:02:54 +00:00
|
|
|
OPEN_BRACKETS = "(["
|
|
|
|
CLOSE_BRACKETS = ")]"
|
|
|
|
DISALLOWED_SUBSTRING_IN_BRACKETS = ("official", "video", "audio", "lyrics", "prod", "remix", "ft", "feat", "ft.", "feat.")
|
2023-07-27 18:44:24 +00:00
|
|
|
|
2024-04-19 09:40:00 +00:00
|
|
|
@lru_cache
|
2023-01-31 12:18:52 +00:00
|
|
|
def unify(string: str) -> str:
|
|
|
|
"""
|
2023-04-18 20:39:19 +00:00
|
|
|
returns a unified str, to make comparisons easy.
|
|
|
|
a unified string has the following attributes:
|
2024-04-12 12:14:10 +00:00
|
|
|
- is lowercase
|
2023-01-31 12:18:52 +00:00
|
|
|
"""
|
2023-04-18 20:39:19 +00:00
|
|
|
|
2024-04-12 12:14:10 +00:00
|
|
|
if string is None:
|
|
|
|
return None
|
|
|
|
|
2023-04-18 20:39:19 +00:00
|
|
|
try:
|
|
|
|
string = translit(string, reversed=True)
|
|
|
|
except LanguageDetectionError:
|
|
|
|
pass
|
|
|
|
|
2023-01-31 12:18:52 +00:00
|
|
|
return string.lower()
|
2023-04-03 09:17:55 +00:00
|
|
|
|
2023-04-18 20:39:19 +00:00
|
|
|
|
2023-09-13 16:55:04 +00:00
|
|
|
def fit_to_file_system(string: Union[str, Path]) -> Union[str, Path]:
|
|
|
|
def fit_string(string: str) -> str:
|
|
|
|
if string == "/":
|
|
|
|
return "/"
|
|
|
|
string = string.strip()
|
2023-04-18 20:39:19 +00:00
|
|
|
|
2023-09-13 16:55:04 +00:00
|
|
|
while string[0] == ".":
|
|
|
|
if len(string) == 0:
|
|
|
|
return string
|
2023-04-18 20:39:19 +00:00
|
|
|
|
2023-09-13 16:55:04 +00:00
|
|
|
string = string[1:]
|
2023-04-18 20:39:19 +00:00
|
|
|
|
2023-09-13 16:55:04 +00:00
|
|
|
string = string.replace("/", "_").replace("\\", "_")
|
|
|
|
string = sanitize_filename(string)
|
|
|
|
return string
|
2023-04-18 20:39:19 +00:00
|
|
|
|
2023-09-13 16:55:04 +00:00
|
|
|
if isinstance(string, Path):
|
|
|
|
return Path(*(fit_string(part) for part in string.parts))
|
|
|
|
else:
|
|
|
|
return fit_string(string)
|
2023-07-27 18:44:24 +00:00
|
|
|
|
|
|
|
|
2024-04-19 09:43:21 +00:00
|
|
|
def clean_song_title(raw_song_title: str, artist_name: Optional[str] = None) -> str:
|
2023-07-27 18:44:24 +00:00
|
|
|
"""
|
|
|
|
This function cleans common naming "conventions" for non clean song titles, like the title of youtube videos
|
|
|
|
|
|
|
|
cleans:
|
|
|
|
|
|
|
|
- `artist - song` -> `song`
|
|
|
|
- `song (Official Video)` -> `song`
|
|
|
|
- ` song` -> `song`
|
|
|
|
- `song (prod. some producer)`
|
|
|
|
"""
|
|
|
|
raw_song_title = raw_song_title.strip()
|
|
|
|
|
|
|
|
# Clean official Video appendix
|
|
|
|
for dirty_appendix in COMMON_TITLE_APPENDIX_LIST:
|
|
|
|
if raw_song_title.lower().endswith(dirty_appendix):
|
|
|
|
raw_song_title = raw_song_title[:-len(dirty_appendix)].strip()
|
|
|
|
|
2024-04-19 10:02:54 +00:00
|
|
|
# remove brackets and their content if they contain disallowed substrings
|
|
|
|
for open_bracket, close_bracket in zip(OPEN_BRACKETS, CLOSE_BRACKETS):
|
|
|
|
start = 0
|
|
|
|
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
open_bracket_index = raw_song_title.index(open_bracket, start)
|
|
|
|
except ValueError:
|
|
|
|
break
|
|
|
|
try:
|
|
|
|
close_bracket_index = raw_song_title.index(close_bracket, open_bracket_index + 1)
|
|
|
|
except ValueError:
|
|
|
|
break
|
|
|
|
|
|
|
|
substring = raw_song_title[open_bracket_index + 1:close_bracket_index]
|
|
|
|
if any(disallowed_substring in substring for disallowed_substring in DISALLOWED_SUBSTRING_IN_BRACKETS):
|
|
|
|
raw_song_title = raw_song_title[:open_bracket_index] + raw_song_title[close_bracket_index + 1:]
|
|
|
|
else:
|
|
|
|
start = close_bracket_index + 1
|
|
|
|
|
2024-04-19 09:43:21 +00:00
|
|
|
# everything that requires the artist name
|
|
|
|
if artist_name is not None:
|
|
|
|
artist_name = artist_name.strip()
|
2023-07-27 18:44:24 +00:00
|
|
|
|
2024-04-19 09:43:21 +00:00
|
|
|
# Remove artist from the start of the title
|
|
|
|
if raw_song_title.lower().startswith(artist_name.lower()):
|
|
|
|
raw_song_title = raw_song_title[len(artist_name):].strip()
|
|
|
|
|
|
|
|
if raw_song_title.startswith("-"):
|
|
|
|
raw_song_title = raw_song_title[1:].strip()
|
2023-07-27 18:44:24 +00:00
|
|
|
|
|
|
|
return raw_song_title.strip()
|
2023-09-12 09:06:26 +00:00
|
|
|
|
|
|
|
|
2023-08-10 21:01:16 +00:00
|
|
|
def comment(uncommented_string: str) -> str:
|
|
|
|
_fragments = uncommented_string.split("\n")
|
|
|
|
_fragments = ["# " + frag for frag in _fragments]
|
|
|
|
return "\n".join(_fragments)
|
|
|
|
|
2024-04-09 12:00:51 +00:00
|
|
|
|
|
|
|
# comparisons
|
|
|
|
TITLE_THRESHOLD_LEVENSHTEIN = 1
|
|
|
|
UNIFY_TO = " "
|
|
|
|
|
|
|
|
ALLOWED_LENGTH_DISTANCE = 20
|
|
|
|
|
|
|
|
|
|
|
|
def unify_punctuation(to_unify: str) -> str:
|
|
|
|
for char in string.punctuation:
|
|
|
|
to_unify = to_unify.replace(char, UNIFY_TO)
|
|
|
|
return to_unify
|
|
|
|
|
2024-04-10 14:39:46 +00:00
|
|
|
def hash_url(url: str) -> int:
|
|
|
|
return url.strip().lower().lstrip("https://").lstrip("http://")
|
|
|
|
|
2024-04-09 12:00:51 +00:00
|
|
|
|
|
|
|
def remove_feature_part_from_track(title: str) -> str:
|
|
|
|
if ")" != title[-1]:
|
|
|
|
return title
|
|
|
|
if "(" not in title:
|
|
|
|
return title
|
|
|
|
|
|
|
|
return title[:title.index("(")]
|
|
|
|
|
|
|
|
|
|
|
|
def modify_title(to_modify: str) -> str:
|
|
|
|
to_modify = to_modify.strip()
|
|
|
|
to_modify = to_modify.lower()
|
|
|
|
to_modify = remove_feature_part_from_track(to_modify)
|
|
|
|
to_modify = unify_punctuation(to_modify)
|
|
|
|
return to_modify
|
|
|
|
|
|
|
|
|
|
|
|
def match_titles(title_1: str, title_2: str):
|
|
|
|
title_1, title_2 = modify_title(title_1), modify_title(title_2)
|
|
|
|
distance = jellyfish.levenshtein_distance(title_1, title_2)
|
|
|
|
return distance > TITLE_THRESHOLD_LEVENSHTEIN, distance
|
|
|
|
|
|
|
|
|
|
|
|
def match_artists(artist_1, artist_2: str):
|
|
|
|
if type(artist_1) == list:
|
|
|
|
distances = []
|
|
|
|
|
|
|
|
for artist_1_ in artist_1:
|
|
|
|
match, distance = match_titles(artist_1_, artist_2)
|
|
|
|
if not match:
|
|
|
|
return match, distance
|
|
|
|
|
|
|
|
distances.append(distance)
|
|
|
|
return True, min(distances)
|
|
|
|
return match_titles(artist_1, artist_2)
|
|
|
|
|
|
|
|
def match_length(length_1: int | None, length_2: int | None) -> bool:
|
|
|
|
# returning true if either one is Null, because if one value is not known,
|
|
|
|
# then it shouldn't be an attribute which could reject an audio source
|
|
|
|
if length_1 is None or length_2 is None:
|
|
|
|
return True
|
|
|
|
return abs(length_1 - length_2) <= ALLOWED_LENGTH_DISTANCE
|
|
|
|
|