1
0
Fork 0
mirror of https://github.com/Findus23/RadioStats.git synced 2024-09-20 17:13:48 +02:00

no empty line at start of sitemap

This commit is contained in:
Lukas Winkler 2018-08-27 20:29:18 +02:00
parent 50cdc7bc11
commit 13e298e772
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -1,29 +1,20 @@
from peewee import SQL, fn
xml = """
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
"""
from models import Channel, Play, Song
xml = """<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
"""
for channel in Channel.select().where(Channel.has_data == 1):
xml += """
<url>
<loc>https://radiostats.lw1.at/{channel}</loc>
</url>
""".format(channel=channel.shortname)
xml += "<url><loc>https://radiostats.lw1.at/{channel}</loc></url>".format(channel=channel.shortname)
get = Play.select(Play.song, Song.id, fn.Count(SQL('*')).alias("count")) \
.join(Channel).switch(Play).join(Song) \
.where((Song.show == 0) & (Channel.shortname == channel.shortname)) \
.group_by(Play.song).order_by(SQL('count').desc()).limit(500)
for i in get:
song = i.song.id
xml += """
<url>
<loc>https://radiostats.lw1.at/{channel}/song/{songid}</loc>
</url>
""".format(channel=channel.shortname, songid=song)
xml += "<url><loc>https://radiostats.lw1.at/{channel}/song/{songid}</loc></url>".format(channel=channel.shortname, songid=song)
xml += "</urlset>"