1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00
maloja/website/scrobbles.py

56 lines
2.0 KiB
Python
Raw Normal View History

2018-12-19 18:11:10 +03:00
import urllib
import json
def replacedict(keys,dbport):
2018-12-26 19:42:55 +03:00
from utilities import getArtistInfo
2018-12-26 21:20:26 +03:00
from htmlgenerators import getTimeDesc, artistLink, artistLinks, trackLink, keysToUrl, pickKeys, clean
2018-12-19 18:11:10 +03:00
2018-12-26 21:20:26 +03:00
clean(keys)
2018-12-26 19:42:55 +03:00
timekeys = pickKeys(keys,"since","to","in")
2018-12-26 21:20:26 +03:00
limitkeys = pickKeys(keys,"artist","title","associated")
2018-12-27 05:09:29 +03:00
# Get scrobble data
2018-12-26 19:42:55 +03:00
response = urllib.request.urlopen("http://localhost:" + str(dbport) + "/scrobbles?" + keysToUrl(limitkeys,timekeys))
2018-12-23 01:19:52 +03:00
db_data = json.loads(response.read())
scrobbles = db_data["list"]
2018-12-27 05:09:29 +03:00
# describe the scope
limitstring = ""
2018-12-24 23:25:09 +03:00
if keys.get("title") is not None:
2018-12-27 05:09:29 +03:00
limitstring += "of " + trackLink({"title":keys.get("title"),"artists":keys.getall("artist")}) + " "
limitstring += "by " + artistLinks(keys.getall("artist"))
2018-12-24 23:25:09 +03:00
elif keys.get("artist") is not None:
2018-12-27 05:09:29 +03:00
limitstring += "by " + artistLink(keys.get("artist"))
if keys.get("associated") is not None:
response = urllib.request.urlopen("http://localhost:" + str(dbport) + "/artistinfo?artist=" + urllib.parse.quote(keys["artist"]))
db_data = json.loads(response.read())
2018-12-27 05:09:29 +03:00
moreartists = db_data["associated"]
2018-12-23 01:19:52 +03:00
if moreartists != []:
2018-12-27 05:09:29 +03:00
limitstring += " <span class='extra'>including " + artistLinks(moreartists) + "</span>"
2018-12-23 01:19:52 +03:00
2018-12-27 05:09:29 +03:00
# get representative artist for image
if keys.get("artist") is not None:
imgurl = getArtistInfo(keys.get("artist")).get("image")
elif (len(scrobbles) != 0):
imgurl = getArtistInfo(scrobbles[0]["artists"][0]).get("image")
2018-12-23 01:19:52 +03:00
else:
2018-12-27 05:09:29 +03:00
imgurl = ""
2018-12-19 18:11:10 +03:00
2018-12-23 01:19:52 +03:00
2018-12-27 05:09:29 +03:00
# build list
2018-12-22 02:31:27 +03:00
html = "<table class='list'>"
2018-12-19 18:11:10 +03:00
for s in scrobbles:
2018-12-26 21:20:26 +03:00
html += "<tr>"
html += "<td class='time'>" + getTimeDesc(s["time"]) + "</td>"
2018-12-28 20:06:09 +03:00
#html += """<td class='icon' style="background-image:url('""" + getArtistInfo(s["artists"][0]).get("image") + """')" /></td>"""
2018-12-26 21:20:26 +03:00
html += "<td class='artists'>" + artistLinks(s["artists"]) + "</td>"
2018-12-27 05:09:29 +03:00
html += "<td class='title'>" + trackLink({"artists":s["artists"],"title":s["title"]}) + "</td>"
html += "</tr>"
2018-12-19 18:11:10 +03:00
html += "</table>"
return {"KEY_SCROBBLELIST":html,"KEY_SCROBBLES":str(len(scrobbles)),"KEY_IMAGEURL":imgurl,"KEY_LIMITS":limitstring}