mirror of
https://github.com/krateng/maloja.git
synced 2025-06-12 21:32:12 +03:00
Implemented artist track charts
This commit is contained in:
parent
f68fe04760
commit
02ddeb4dc0
@ -148,7 +148,10 @@ def get_charts_artists(**keys):
|
|||||||
@waitfordb
|
@waitfordb
|
||||||
def get_charts_tracks(**keys):
|
def get_charts_tracks(**keys):
|
||||||
(since,to) = keys.get('timerange').timestamps()
|
(since,to) = keys.get('timerange').timestamps()
|
||||||
result = sqldb.count_scrobbles_by_track(since=since,to=to)
|
if 'artist' in keys:
|
||||||
|
result = sqldb.count_scrobbles_by_track_of_artist(since=since,to=to,artist=keys['artist'])
|
||||||
|
else:
|
||||||
|
result = sqldb.count_scrobbles_by_track(since=since,to=to)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def get_pulse(**keys):
|
def get_pulse(**keys):
|
||||||
@ -495,7 +498,7 @@ def start_db():
|
|||||||
dbstatus['healthy'] = True
|
dbstatus['healthy'] = True
|
||||||
dbstatus['complete'] = True
|
dbstatus['complete'] = True
|
||||||
|
|
||||||
firstscrobble = sqldb.get_scrobbles(max=1)[0]
|
firstscrobble = sqldb.get_scrobbles()[0]
|
||||||
register_scrobbletime(firstscrobble['time'])
|
register_scrobbletime(firstscrobble['time'])
|
||||||
|
|
||||||
|
|
||||||
|
@ -302,7 +302,7 @@ def get_scrobbles_of_track(track,since=None,to=None):
|
|||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
def get_scrobbles(since=None,to=None,resolve_references=True,max=math.inf):
|
def get_scrobbles(since=None,to=None,resolve_references=True):
|
||||||
|
|
||||||
if since is None: since=0
|
if since is None: since=0
|
||||||
if to is None: to=now()
|
if to is None: to=now()
|
||||||
@ -394,7 +394,6 @@ def count_scrobbles_by_artist(since,to):
|
|||||||
|
|
||||||
|
|
||||||
def count_scrobbles_by_track(since,to):
|
def count_scrobbles_by_track(since,to):
|
||||||
print(since,to)
|
|
||||||
|
|
||||||
with engine.begin() as conn:
|
with engine.begin() as conn:
|
||||||
op = sql.select(
|
op = sql.select(
|
||||||
@ -414,6 +413,35 @@ def count_scrobbles_by_track(since,to):
|
|||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
def count_scrobbles_by_track_of_artist(since,to,artist):
|
||||||
|
|
||||||
|
artist_id = get_artist_id(artist)
|
||||||
|
|
||||||
|
jointable = sql.join(
|
||||||
|
DB['scrobbles'],
|
||||||
|
DB['trackartists'],
|
||||||
|
DB['scrobbles'].c.track_id == DB['trackartists'].c.track_id
|
||||||
|
)
|
||||||
|
|
||||||
|
with engine.begin() as conn:
|
||||||
|
op = sql.select(
|
||||||
|
sql.func.count(sql.func.distinct(DB['scrobbles'].c.timestamp)).label('count'),
|
||||||
|
DB['scrobbles'].c.track_id
|
||||||
|
).select_from(jointable).filter(
|
||||||
|
DB['scrobbles'].c.timestamp<=to,
|
||||||
|
DB['scrobbles'].c.timestamp>=since,
|
||||||
|
DB['trackartists'].c.artist_id==artist_id
|
||||||
|
).group_by(DB['scrobbles'].c.track_id).order_by(sql.desc('count'))
|
||||||
|
result = conn.execute(op).all()
|
||||||
|
|
||||||
|
|
||||||
|
counts = [row.count for row in result]
|
||||||
|
tracks = get_tracks_map(row.track_id for row in result)
|
||||||
|
result = [{'scrobbles':row.count,'track':tracks[row.track_id]} for row in result]
|
||||||
|
result = rank(result,key='scrobbles')
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### functions that get mappings for several entities -> rows
|
### functions that get mappings for several entities -> rows
|
||||||
|
Loading…
x
Reference in New Issue
Block a user