mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-07 03:35:35 +00:00

+ fix: sqlite3.ProgrammingError: Cannot operate on a closed cursor on ProcessAlbumColors() + move processing artist images from periodic_scans to Populate + bump hash string limit from 7 to 10 + add last_mod property to database + fix: TypeError: '<' not supported between instances of 'int' and 'str' on album page
180 lines
5.6 KiB
Python
180 lines
5.6 KiB
Python
import os
|
|
from tqdm import tqdm
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
from requests import ConnectionError as RequestConnectionError
|
|
from requests import ReadTimeout
|
|
|
|
from app import settings
|
|
from app.db.sqlite.tracks import SQLiteTrackMethods
|
|
from app.db.sqlite.settings import SettingsSQLMethods as sdb
|
|
from app.db.sqlite.favorite import SQLiteFavoriteMethods as favdb
|
|
from app.lib.artistlib import CheckArtistImages
|
|
from app.lib.colorlib import ProcessAlbumColors, ProcessArtistColors
|
|
|
|
from app.lib.taglib import extract_thumb, get_tags
|
|
from app.lib.trackslib import validate_tracks
|
|
from app.logger import log
|
|
from app.models import Album, Artist, Track
|
|
from app.utils.filesystem import run_fast_scandir
|
|
|
|
from app.store.albums import AlbumStore
|
|
from app.store.tracks import TrackStore
|
|
from app.store.artists import ArtistStore
|
|
from app.utils.network import Ping
|
|
|
|
get_all_tracks = SQLiteTrackMethods.get_all_tracks
|
|
insert_many_tracks = SQLiteTrackMethods.insert_many_tracks
|
|
remove_tracks_by_filepaths = SQLiteTrackMethods.remove_tracks_by_filepaths
|
|
|
|
POPULATE_KEY = ""
|
|
|
|
|
|
class PopulateCancelledError(Exception):
|
|
pass
|
|
|
|
|
|
class Populate:
|
|
"""
|
|
Populates the database with all songs in the music directory
|
|
|
|
checks if the song is in the database, if not, it adds it
|
|
also checks if the album art exists in the image path, if not tries to extract it.
|
|
"""
|
|
|
|
def __init__(self, key: str) -> None:
|
|
global POPULATE_KEY
|
|
POPULATE_KEY = key
|
|
|
|
validate_tracks()
|
|
tracks = get_all_tracks()
|
|
tracks = list(tracks)
|
|
|
|
dirs_to_scan = sdb.get_root_dirs()
|
|
|
|
if len(dirs_to_scan) == 0:
|
|
log.warning(
|
|
(
|
|
"The root directory is not configured. "
|
|
+ "Open the app in your webbrowser to configure."
|
|
)
|
|
)
|
|
return
|
|
|
|
try:
|
|
if dirs_to_scan[0] == "$home":
|
|
dirs_to_scan = [settings.Paths.USER_HOME_DIR]
|
|
except IndexError:
|
|
pass
|
|
|
|
files = []
|
|
|
|
for _dir in dirs_to_scan:
|
|
files.extend(run_fast_scandir(_dir, full=True)[1])
|
|
|
|
self.remove_modified(tracks)
|
|
untagged = self.filter_untagged(tracks, files)
|
|
|
|
if len(untagged) != 0:
|
|
self.tag_untagged(untagged, key)
|
|
|
|
ProcessTrackThumbnails()
|
|
ProcessAlbumColors()
|
|
ProcessArtistColors()
|
|
|
|
tried_to_download_new_images = False
|
|
|
|
if Ping()():
|
|
tried_to_download_new_images = True
|
|
try:
|
|
CheckArtistImages()
|
|
except (RequestConnectionError, ReadTimeout):
|
|
log.error(
|
|
"Internet connection lost. Downloading artist images stopped."
|
|
)
|
|
else:
|
|
log.warning(
|
|
f"No internet connection. Downloading artist images halted for {settings.get_scan_sleep_time()} seconds."
|
|
)
|
|
|
|
# Re-process the new artist images.
|
|
if tried_to_download_new_images:
|
|
ProcessArtistColors()
|
|
|
|
@staticmethod
|
|
def remove_modified(tracks: list[Track]):
|
|
modified = [
|
|
t.filepath for t in tracks if t.last_mod != os.path.getmtime(t.filepath)
|
|
]
|
|
|
|
TrackStore.remove_tracks_by_filepaths(modified)
|
|
remove_tracks_by_filepaths(modified)
|
|
|
|
@staticmethod
|
|
def filter_untagged(tracks: list[Track], files: list[str]):
|
|
tagged_files = [t.filepath for t in tracks]
|
|
return set(files) - set(tagged_files)
|
|
|
|
@staticmethod
|
|
def tag_untagged(untagged: set[str], key: str):
|
|
log.info("Found %s new tracks", len(untagged))
|
|
tagged_tracks: list[dict] = []
|
|
tagged_count = 0
|
|
|
|
fav_tracks = favdb.get_fav_tracks()
|
|
fav_tracks = "-".join([t[1] for t in fav_tracks])
|
|
|
|
for file in tqdm(untagged, desc="Reading files"):
|
|
if POPULATE_KEY != key:
|
|
raise PopulateCancelledError("Populate key changed")
|
|
|
|
tags = get_tags(file)
|
|
|
|
if tags is not None:
|
|
tagged_tracks.append(tags)
|
|
track = Track(**tags)
|
|
track.is_favorite = track.trackhash in fav_tracks
|
|
|
|
TrackStore.add_track(track)
|
|
|
|
if not AlbumStore.album_exists(track.albumhash):
|
|
AlbumStore.add_album(AlbumStore.create_album(track))
|
|
|
|
for artist in track.artist:
|
|
if not ArtistStore.artist_exists(artist.artisthash):
|
|
ArtistStore.add_artist(Artist(artist.name))
|
|
|
|
for artist in track.albumartist:
|
|
if not ArtistStore.artist_exists(artist.artisthash):
|
|
ArtistStore.add_artist(Artist(artist.name))
|
|
|
|
tagged_count += 1
|
|
else:
|
|
log.warning("Could not read file: %s", file)
|
|
|
|
if len(tagged_tracks) > 0:
|
|
log.info("Adding %s tracks to database", len(tagged_tracks))
|
|
insert_many_tracks(tagged_tracks)
|
|
|
|
log.info("Added %s/%s tracks", tagged_count, len(untagged))
|
|
|
|
|
|
def get_image(album: Album):
|
|
for track in TrackStore.tracks:
|
|
if track.albumhash == album.albumhash:
|
|
extract_thumb(track.filepath, track.image)
|
|
break
|
|
|
|
|
|
class ProcessTrackThumbnails:
|
|
def __init__(self) -> None:
|
|
with ThreadPoolExecutor(max_workers=4) as pool:
|
|
results = list(
|
|
tqdm(
|
|
pool.map(get_image, AlbumStore.albums),
|
|
total=len(AlbumStore.albums),
|
|
desc="Extracting track images",
|
|
)
|
|
)
|
|
|
|
list(results)
|