mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
41 lines
1.0 KiB
Python
41 lines
1.0 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_topartists, module_filterselection
|
|
from malojatime import range_desc
|
|
|
|
_, timekeys, delimitkeys, _ = uri_to_internal(keys)
|
|
|
|
|
|
limitstring = ""
|
|
|
|
html_filterselector = module_filterselection(keys,delimit=True)
|
|
|
|
html_charts, rep = module_topartists(**timekeys, **delimitkeys)
|
|
|
|
|
|
#if filterkeys.get("artist") is not None:
|
|
# imgurl = getArtistImage(filterkeys.get("artist"))
|
|
# limitstring = "by " + artistLink(filterkeys.get("artist"))
|
|
if rep is not None:
|
|
imgurl = getArtistImage(rep)
|
|
else:
|
|
imgurl = ""
|
|
|
|
limitstring += " " + range_desc(**timekeys)
|
|
|
|
pushresources = [{"file":imgurl,"type":"image"}] if imgurl.startswith("/") else []
|
|
|
|
|
|
|
|
replace = {"KEY_TOPARTIST_IMAGEURL":imgurl,
|
|
"KEY_ARTISTLIST":html_charts,
|
|
"KEY_LIMITS":limitstring,
|
|
"KEY_FILTERSELECTOR":html_filterselector}
|
|
|
|
return (replace,pushresources)
|