rewrite search functions as classes

This commit is contained in:
geoffrey45
2022-05-18 18:04:01 +03:00
parent 8405efede0
commit 4040b99518
9 changed files with 170 additions and 32 deletions
+94 -9
View File
@@ -3,17 +3,100 @@ This library contains all the functions related to the search functionality.
"""
from typing import List
from app import models, helpers
from app import api, helpers, models
from app.lib import albumslib
from app import api
from rapidfuzz import fuzz, process
def get_tracks(query: str) -> List[models.Track]:
"""
Gets all songs with a given title.
"""
tracks = [track for track in api.TRACKS if query.lower() in track.title.lower()]
return helpers.remove_duplicates(tracks)
class SearchTracks:
def __init__(self, query) -> None:
self.query = query
def __call__(self) -> List[models.Track]:
"""
Gets all songs with a given title.
"""
tracks = [track.title for track in api.TRACKS]
results = process.extract(
self.query, tracks, scorer=fuzz.token_set_ratio, score_cutoff=50
)
print(results)
return [api.TRACKS[i[2]] for i in results]
class SearchArtists:
def __init__(self, query) -> None:
self.query = query
@staticmethod
def get_all_artist_names() -> List[str]:
"""
Gets all artist names.
"""
artists = [track.artists for track in api.TRACKS]
f_artists = []
for artist in artists:
aa = artist.split(",")
f_artists.extend(aa)
return f_artists
@staticmethod
def get_valid_name(name: str) -> str:
"""
returns a valid artist name
"""
return "".join([i for i in name if i not in '/\\:*?"<>|'])
def __call__(self) -> list:
"""
Gets all artists with a given name.
"""
artists = self.get_all_artist_names()
results = process.extract(self.query, artists)
f_artists = []
for artist in results:
aa = {
"name": artist[0],
"image": self.get_valid_name(artist[0]) + ".webp",
}
f_artists.append(aa)
return f_artists
class SearchAlbums:
def __init__(self, query) -> None:
self.query = query
def get_albums_by_name(self) -> List[models.Album]:
"""
Gets all albums with a given title.
"""
albums = [album.title for album in api.ALBUMS]
results = process.extract(self.query, albums)
return [api.ALBUMS[i[2]] for i in results]
def __call__(self) -> List[models.Album]:
"""
Gets all albums with a given title.
"""
artists = SearchArtists(self.query)()
a_albums = []
# get all artists that matched the query
# for get all albums from the artists
# get all albums that matched the query
# return [**artist_albums **albums]
def get_search_albums(query: str) -> List[models.Album]:
@@ -27,4 +110,6 @@ def get_artists(artist: str) -> List[models.Track]:
"""
Gets all songs with a given artist.
"""
return [track for track in api.TRACKS if artist.lower() in str(track.artists).lower()]
return [
track for track in api.TRACKS if artist.lower() in str(track.artists).lower()
]