mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
49 lines
1.2 KiB
Python
49 lines
1.2 KiB
Python
import urllib
|
|
|
|
|
|
def instructions(keys):
|
|
from utilities import getArtistImage, getTrackImage
|
|
from htmlgenerators import artistLink
|
|
from urihandler import compose_querystring, uri_to_internal
|
|
from htmlmodules import module_trackcharts, module_filterselection
|
|
from malojatime import range_desc
|
|
|
|
filterkeys, timekeys, _, amountkeys = uri_to_internal(keys)
|
|
|
|
if len(filterkeys) == 0:
|
|
toptrackslink = "<a href='/top_tracks'><span>View #1 Tracks</span></a>"
|
|
else:
|
|
toptrackslink = ""
|
|
|
|
|
|
limitstring = ""
|
|
|
|
html_filterselector = module_filterselection(keys)
|
|
|
|
html_charts, rep = module_trackcharts(**amountkeys,**timekeys,**filterkeys)
|
|
|
|
|
|
if filterkeys.get("artist") is not None:
|
|
imgurl = getArtistImage(filterkeys.get("artist"))
|
|
limitstring = "by " + artistLink(filterkeys.get("artist"))
|
|
elif rep is not None:
|
|
imgurl = getTrackImage(rep["artists"],rep["title"])
|
|
else:
|
|
imgurl = ""
|
|
|
|
limitstring += " " + timekeys["timerange"].desc(prefix=True)
|
|
|
|
pushresources = [{"file":imgurl,"type":"image"}] if imgurl.startswith("/") else []
|
|
|
|
|
|
|
|
replace = {
|
|
"KEY_TOPARTIST_IMAGEURL":imgurl,
|
|
"KEY_TRACKLIST":html_charts,
|
|
"KEY_LIMITS":limitstring,
|
|
"KEY_FILTERSELECTOR":html_filterselector,
|
|
"TOP_TRACKS_LINK":toptrackslink,
|
|
}
|
|
|
|
return (replace,pushresources)
|