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

+ rewrite load all albums + artist logic with itertools.groupby + add a function to convert seconds to string
94 lines
3.1 KiB
Python
94 lines
3.1 KiB
Python
from flask_restful import Resource, reqparse
|
|
from datetime import datetime
|
|
from app.store.albums import AlbumStore
|
|
from app.store.artists import ArtistStore
|
|
|
|
from app.serializers.album import serialize_for_card as serialize_album
|
|
from app.serializers.artist import serialize_for_card as serialize_artist
|
|
from app.utils import format_number
|
|
from app.utils.dates import (
|
|
create_new_date,
|
|
date_string_to_time_passed,
|
|
seconds_to_time_string,
|
|
)
|
|
|
|
parser = reqparse.RequestParser()
|
|
|
|
parser.add_argument("start", type=int, default=0, location="args")
|
|
parser.add_argument("limit", type=int, default=20, location="args")
|
|
parser.add_argument("sortby", type=str, default="created_date", location="args")
|
|
parser.add_argument("reverse", type=str, default="1", location="args")
|
|
|
|
|
|
class Albums(Resource):
|
|
def get(self, itemtype: str):
|
|
is_albums = itemtype == "albums"
|
|
is_artists = itemtype == "artists"
|
|
|
|
items = AlbumStore.albums
|
|
|
|
if is_artists:
|
|
items = ArtistStore.artists
|
|
|
|
args = parser.parse_args()
|
|
|
|
start = args["start"]
|
|
limit = args["limit"]
|
|
sort = args["sortby"]
|
|
reverse = args["reverse"] == "1"
|
|
|
|
if sort == "":
|
|
sort = "created_date"
|
|
|
|
sort_is_count = sort == "count"
|
|
sort_is_duration = sort == "duration"
|
|
|
|
sort_is_date = is_albums and sort == "date"
|
|
sort_is_create_date = is_albums and sort == "created_date"
|
|
sort_is_artist = is_albums and sort == "albumartists"
|
|
|
|
sort_is_artist_trackcount = is_artists and sort == "trackcount"
|
|
sort_is_artist_albumcount = is_artists and sort == "albumcount"
|
|
|
|
lambda_sort = lambda x: getattr(x, sort)
|
|
if sort_is_artist:
|
|
lambda_sort = lambda x: getattr(x, sort)[0].name
|
|
|
|
sorted_items = sorted(items, key=lambda_sort, reverse=reverse)
|
|
items = sorted_items[start : start + limit]
|
|
|
|
album_list = []
|
|
|
|
for item in items:
|
|
item_dict = serialize_album(item) if is_albums else serialize_artist(item)
|
|
|
|
if sort_is_date:
|
|
item_dict["help_text"] = item.date
|
|
|
|
if sort_is_create_date:
|
|
date = create_new_date(datetime.fromtimestamp(item.created_date))
|
|
timeago = date_string_to_time_passed(date)
|
|
item_dict["help_text"] = timeago
|
|
|
|
if sort_is_count:
|
|
item_dict[
|
|
"help_text"
|
|
] = f"{format_number(item.count)} track{'' if item.count == 1 else 's'}"
|
|
|
|
if sort_is_duration:
|
|
item_dict["help_text"] = seconds_to_time_string(item.duration)
|
|
|
|
if sort_is_artist_trackcount:
|
|
item_dict[
|
|
"help_text"
|
|
] = f"{format_number(item.trackcount)} track{'' if item.trackcount == 1 else 's'}"
|
|
|
|
if sort_is_artist_albumcount:
|
|
item_dict[
|
|
"help_text"
|
|
] = f"{format_number(item.albumcount)} album{'' if item.albumcount == 1 else 's'}"
|
|
|
|
album_list.append(item_dict)
|
|
|
|
return {"items": album_list, "total": len(sorted_items)}
|