mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
cd992419c5
+ move post processing of tags to the track model + rebuild stores on settings update via API + check files from the store instead of the db when streaming + remove deprecetated table columns +misc
207 lines
5.9 KiB
Python
207 lines
5.9 KiB
Python
import re
|
|
|
|
from app.config import UserConfig
|
|
from app.enums.album_versions import AlbumVersionEnum, get_all_keywords
|
|
|
|
|
|
def split_artists(src: str, config: UserConfig):
|
|
"""
|
|
Splits a string of artists into a list of artists, preserving those in ignoreList.
|
|
Case-insensitive matching is used for the ignoreList.
|
|
"""
|
|
result = []
|
|
current = ""
|
|
i = 0
|
|
|
|
while i < len(src):
|
|
# Check if any ignored artist starts at this position (case-insensitive)
|
|
ignored_match = next(
|
|
(
|
|
src[i : i + len(ignored)]
|
|
for ignored in config.artistSplitIgnoreList
|
|
if src.lower().startswith(ignored.lower(), i)
|
|
),
|
|
None,
|
|
)
|
|
|
|
if ignored_match:
|
|
# If we have accumulated any current string, add it to result
|
|
if current.strip():
|
|
result.extend([a.strip() for a in current.split(",") if a.strip()])
|
|
current = ""
|
|
# Add the ignored artist to the result (preserving original case)
|
|
result.append(ignored_match)
|
|
# Move past the ignored artist
|
|
i += len(ignored_match)
|
|
elif src[i] in config.artistSeparators:
|
|
# If we encounter a separator, process the current string
|
|
if current.strip():
|
|
result.extend([a.strip() for a in current.split(",") if a.strip()])
|
|
current = ""
|
|
i += 1
|
|
else:
|
|
# If it's not an ignored artist or a separator, add to current
|
|
current += src[i]
|
|
i += 1
|
|
|
|
# Process any remaining current string
|
|
if current.strip():
|
|
result.extend([a.strip() for a in current.split(",") if a.strip()])
|
|
|
|
return result
|
|
|
|
|
|
def remove_prod(title: str) -> str:
|
|
"""
|
|
Removes the producer string in a track title using regex.
|
|
"""
|
|
|
|
# check if title contain title, if not return it.
|
|
if not ("prod." in title.lower()):
|
|
return title
|
|
|
|
# check if title has brackets
|
|
if re.search(r"[()\[\]]", title):
|
|
regex = r"\s?(\(|\[)prod\..*?(\)|\])\s?"
|
|
else:
|
|
regex = r"\s?\bprod\.\s*\S+"
|
|
|
|
# remove the producer string
|
|
title = re.sub(regex, "", title, flags=re.IGNORECASE)
|
|
return title.strip()
|
|
|
|
|
|
def parse_feat_from_title(title: str, config: UserConfig) -> tuple[list[str], str]:
|
|
"""
|
|
Extracts featured artists from a song title using regex.
|
|
"""
|
|
regex = r"\((?:feat|ft|featuring|with)\.?\s+(.+?)\)"
|
|
# regex for square brackets 👇
|
|
sqr_regex = r"\[(?:feat|ft|featuring|with)\.?\s+(.+?)\]"
|
|
|
|
match = re.search(regex, title, re.IGNORECASE)
|
|
|
|
if not match:
|
|
match = re.search(sqr_regex, title, re.IGNORECASE)
|
|
regex = sqr_regex
|
|
|
|
if not match:
|
|
return [], title
|
|
|
|
artists = match.group(1)
|
|
artists = split_artists(artists, config)
|
|
|
|
# remove "feat" group from title
|
|
new_title = re.sub(regex, "", title, flags=re.IGNORECASE)
|
|
return artists, new_title
|
|
|
|
|
|
def get_base_album_title(string: str) -> tuple[str, str | None]:
|
|
"""
|
|
Extracts the base album title from a string.
|
|
"""
|
|
pattern = re.compile(
|
|
rf"\s*(\(|\[)[^\)\]]*?({get_all_keywords()})[^\)\]]*?(\)|\])$",
|
|
re.IGNORECASE,
|
|
)
|
|
# TODO: Fix "Redundant character escape '\]' in RegExp "
|
|
match = pattern.search(string)
|
|
|
|
if match:
|
|
removed_block = match.group(0)
|
|
title = string.replace(removed_block, "")
|
|
return title.strip(), removed_block.strip()
|
|
|
|
return string, None
|
|
|
|
|
|
def get_anniversary(text: str) -> str | None:
|
|
"""
|
|
Extracts anniversary from text using regex.
|
|
"""
|
|
_end = "anniversary"
|
|
match = re.search(r"\b\d+\w*(?= anniversary)", text, re.IGNORECASE)
|
|
if match:
|
|
return match.group(0).strip().lower() + f" {_end}"
|
|
else:
|
|
return _end
|
|
|
|
|
|
def get_album_info(bracket_text: str | None) -> list[str]:
|
|
"""
|
|
Extracts album version info from the bracketed text on an album title string using regex.
|
|
"""
|
|
if not bracket_text:
|
|
return []
|
|
|
|
# replace all non-alphanumeric characters with an empty string
|
|
bracket_text = re.sub(r"[^a-zA-Z0-9\s]", "", bracket_text)
|
|
versions = []
|
|
|
|
for version_keywords in AlbumVersionEnum:
|
|
for keyword in version_keywords.value:
|
|
if re.search(keyword, bracket_text, re.IGNORECASE):
|
|
versions.append(version_keywords.name.lower())
|
|
break
|
|
|
|
if "anniversary" in versions:
|
|
anniversary = get_anniversary(bracket_text)
|
|
versions.insert(0, anniversary)
|
|
versions.remove("anniversary")
|
|
|
|
return versions
|
|
|
|
|
|
def get_base_title_and_versions(
|
|
original_album_title: str, get_versions=True
|
|
) -> tuple[str, list[str]]:
|
|
"""
|
|
Extracts the base album title and version info from an album title string using regex.
|
|
"""
|
|
album_title, version_block = get_base_album_title(original_album_title)
|
|
|
|
if version_block is None:
|
|
return original_album_title, []
|
|
|
|
if not get_versions:
|
|
return album_title, []
|
|
|
|
versions = get_album_info(version_block)
|
|
|
|
# if no version info could be extracted, accept defeat!
|
|
if len(versions) == 0:
|
|
album_title = original_album_title
|
|
|
|
return album_title, versions
|
|
|
|
|
|
def remove_bracketed_remaster(text: str):
|
|
"""
|
|
Removes remaster info from a track title that contains brackets using regex.
|
|
"""
|
|
return re.sub(
|
|
r"\s*[\\[(][^)\]]*remaster[^)\]]*[)\]]\s*", "", text, flags=re.IGNORECASE
|
|
).strip()
|
|
|
|
|
|
def remove_hyphen_remasters(text: str):
|
|
"""
|
|
Removes remaster info from a track title that contains a hypen (-) using regex.
|
|
"""
|
|
return re.sub(
|
|
r"\s-\s*[^-]*\bremaster[^-]*\s*", "", text, flags=re.IGNORECASE
|
|
).strip()
|
|
|
|
|
|
def clean_title(title: str) -> str:
|
|
"""
|
|
Removes remaster info from a track title using regex.
|
|
"""
|
|
if "remaster" not in title.lower():
|
|
return title
|
|
|
|
rem_1 = remove_bracketed_remaster(title)
|
|
rem_2 = remove_hyphen_remasters(title)
|
|
|
|
return rem_1 if len(rem_2) > len(rem_1) else rem_2
|