stream-api/sources.py

35 lines
1.1 KiB
Python
Raw Normal View History

2021-05-01 18:01:24 +00:00
#!/usr/bin/env python3
import xml.dom.minidom
import requests
2021-05-06 13:23:43 +00:00
import json
2021-05-01 18:01:24 +00:00
playlist = None
try:
resp = requests.get("https://git.purser.it/roypur/icecast-relay/raw/branch/master/icecast.xml")
dom = xml.dom.minidom.parseString(resp.text)
except Exception as e:
print(e)
else:
2021-05-06 13:23:43 +00:00
playlist = {}
2021-05-01 18:01:24 +00:00
mounts = dom.getElementsByTagName("mount")
for mount in mounts:
mount_names = mount.getElementsByTagName("mount-name")
stream_names = mount.getElementsByTagName("stream-name")
if len(mount_names) == 1 and len(stream_names) == 1:
mount_name = mount_names[0].firstChild.nodeValue
stream_name = stream_names[0].firstChild.nodeValue
2021-05-06 13:23:43 +00:00
value = {}
value["radio"] = True
value["name"] = stream_name
playlist[mount_name] = value
2021-05-01 18:01:24 +00:00
if playlist is not None:
2021-05-06 13:23:43 +00:00
with open("/app/tv.json", "r") as f:
tv = json.loads(f.read())
for name in tv:
playlist[name] = tv[name]
with open("/app/sources.json", "w+") as f:
f.write(json.dumps(playlist))