2021-04-30 08:49:10 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import streamlink
|
|
|
|
import tornado.web
|
|
|
|
import tornado.routing
|
2021-04-30 11:26:55 +00:00
|
|
|
import requests
|
2021-05-06 13:23:43 +00:00
|
|
|
import json
|
2021-04-30 11:55:10 +00:00
|
|
|
import os
|
2021-05-08 17:08:54 +00:00
|
|
|
import urllib.parse
|
2021-05-09 10:37:36 +00:00
|
|
|
import re
|
2021-04-30 08:49:10 +00:00
|
|
|
|
|
|
|
providers = {}
|
|
|
|
providers["nrk"] = "https://tv.nrk.no"
|
|
|
|
providers["svt"] = "https://svtplay.se"
|
|
|
|
providers["youtube"] = "https://youtu.be"
|
2021-04-30 11:26:55 +00:00
|
|
|
providers["twitch"] = "https://twitch.tv"
|
2021-04-30 08:49:10 +00:00
|
|
|
|
2021-04-30 11:55:10 +00:00
|
|
|
proxies = {}
|
2021-05-08 17:08:54 +00:00
|
|
|
proxies_raw = {}
|
2021-05-09 09:37:19 +00:00
|
|
|
proxies_req = {}
|
2021-04-30 11:55:10 +00:00
|
|
|
|
2021-05-08 17:08:54 +00:00
|
|
|
for key in providers:
|
|
|
|
proxies[key] = streamlink.Streamlink()
|
2021-04-30 11:55:10 +00:00
|
|
|
proxy = os.environ.get(key.upper() + "_PROXY")
|
|
|
|
proxies[key].set_option("http-timeout", 2.0)
|
|
|
|
if proxy is not None:
|
2021-05-09 09:37:19 +00:00
|
|
|
proxies[key].set_option("https-proxy", "socks5://" + proxy)
|
|
|
|
proxies_raw[key] = proxy
|
|
|
|
proxies_req[key] = {}
|
|
|
|
proxies_req[key]["http"] = "socks5://" + proxy
|
|
|
|
proxies_req[key]["https"] = "socks5://" + proxy
|
2021-04-30 11:55:10 +00:00
|
|
|
|
2021-05-06 13:23:43 +00:00
|
|
|
playlist = None
|
|
|
|
icecast_server = os.environ.get("ICECAST_SERVER")
|
|
|
|
stream_server = os.environ.get("STREAM_SERVER")
|
2021-05-08 17:08:54 +00:00
|
|
|
proxy_server = os.environ.get("PROXY_SERVER")
|
2021-05-06 13:54:18 +00:00
|
|
|
|
2021-05-06 13:23:43 +00:00
|
|
|
if icecast_server is not None and stream_server is not None:
|
|
|
|
with open("/app/sources.json", "r") as f:
|
|
|
|
data = json.loads(f.read())
|
|
|
|
playlist = "#EXTM3U\n"
|
|
|
|
for key in data:
|
|
|
|
current = data[key]
|
|
|
|
name = current["name"]
|
|
|
|
radio = current["radio"]
|
|
|
|
if radio:
|
|
|
|
playlist += f'#EXTINF:0 radio="true", {name}\n'
|
|
|
|
playlist += icecast_server + key + "\n"
|
|
|
|
else:
|
|
|
|
playlist += f'#EXTINF:0 radio="false", {name}\n'
|
|
|
|
playlist += stream_server + key + "\n"
|
|
|
|
|
2021-05-09 16:43:28 +00:00
|
|
|
template = None
|
2021-05-09 16:49:40 +00:00
|
|
|
try:
|
|
|
|
with open("/app/index.html", "r") as f:
|
|
|
|
template = tornado.template.Template(f.read().strip())
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
2021-05-09 16:43:28 +00:00
|
|
|
|
2021-05-10 15:40:38 +00:00
|
|
|
videojs_version = None
|
|
|
|
try:
|
|
|
|
with open("/app/videojs-version.txt", "r") as f:
|
|
|
|
videojs_version = f.read().strip()
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
|
2021-05-09 10:37:36 +00:00
|
|
|
def get_proxy_url(proxy, current, path):
|
|
|
|
data = {}
|
|
|
|
data["upstream"] = urllib.parse.urljoin(current, path)
|
2021-05-09 19:12:14 +00:00
|
|
|
data["proxied"] = True
|
2021-05-09 10:37:36 +00:00
|
|
|
ret = None
|
2021-05-09 19:12:14 +00:00
|
|
|
if proxy is None:
|
|
|
|
data["proxied"] = False
|
|
|
|
else:
|
|
|
|
data["proxy"] = proxy
|
|
|
|
if proxy_server is None:
|
2021-05-09 10:37:36 +00:00
|
|
|
return data["upstream"]
|
|
|
|
presp = requests.post(proxy_server, json=data)
|
|
|
|
return presp.text
|
|
|
|
|
2021-05-09 09:37:19 +00:00
|
|
|
def rewrite(current, provider):
|
|
|
|
proxy_req = proxies_req.get(provider)
|
2021-05-09 09:39:37 +00:00
|
|
|
proxy = proxies_raw.get(provider)
|
2021-05-09 09:37:19 +00:00
|
|
|
resp = requests.head(current, proxies=proxy_req)
|
2021-05-09 09:14:45 +00:00
|
|
|
ctype = resp.headers.get("Content-Type")
|
|
|
|
if ctype is None:
|
2021-05-08 22:49:52 +00:00
|
|
|
return None
|
2021-05-09 09:14:45 +00:00
|
|
|
else:
|
|
|
|
if "mpegurl" not in ctype.lower():
|
|
|
|
return None
|
2021-05-09 09:49:09 +00:00
|
|
|
resp = requests.get(current, proxies=proxy_req)
|
2021-05-08 22:49:52 +00:00
|
|
|
ndata = None
|
|
|
|
if resp.text is not None:
|
2021-05-08 17:08:54 +00:00
|
|
|
ndata = ""
|
2021-05-10 14:24:31 +00:00
|
|
|
links = []
|
2021-05-08 17:08:54 +00:00
|
|
|
for line in resp.text.splitlines():
|
2021-05-09 10:37:36 +00:00
|
|
|
if line.startswith("#EXT-X-KEY:METHOD="):
|
|
|
|
matches = re.findall(r'(?<=URI=").+(?=")', line)
|
|
|
|
if len(matches) == 1:
|
2021-05-10 14:24:31 +00:00
|
|
|
ldata = {}
|
|
|
|
ldata["upstream"] = urllib.parse.urljoin(current, matches[0])
|
|
|
|
ldata["proxy"] = proxy
|
|
|
|
ldata["proxied"] = isinstance(proxy, str)
|
|
|
|
links.append(ldata)
|
|
|
|
elif line.startswith("#"):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
ldata = {}
|
|
|
|
ldata["upstream"] = urllib.parse.urljoin(current, line)
|
|
|
|
ldata["proxy"] = proxy
|
|
|
|
ldata["proxied"] = isinstance(proxy, str)
|
|
|
|
links.append(ldata)
|
|
|
|
presp = requests.post(proxy_server, json=links)
|
|
|
|
if isinstance(presp.text, str):
|
|
|
|
print(presp.text)
|
|
|
|
links = json.loads(presp.text)
|
|
|
|
for line in resp.text.splitlines():
|
|
|
|
if line.startswith("#EXT-X-KEY:METHOD="):
|
|
|
|
matches = re.findall(r'(?<=URI=").+(?=")', line)
|
|
|
|
if len(matches) == 1:
|
|
|
|
new_url = links.pop(0)
|
2021-05-09 10:37:36 +00:00
|
|
|
ndata += re.sub(r'URI=".+"', f'URI="{new_url}"', line)
|
|
|
|
elif line.startswith("#"):
|
2021-05-08 17:08:54 +00:00
|
|
|
ndata += line
|
|
|
|
else:
|
2021-05-10 14:24:31 +00:00
|
|
|
ndata += links.pop(0)
|
2021-05-08 17:08:54 +00:00
|
|
|
ndata += "\n"
|
2021-05-10 14:24:31 +00:00
|
|
|
return ndata
|
2021-05-08 17:08:54 +00:00
|
|
|
|
2021-04-30 08:49:10 +00:00
|
|
|
class MainHandler(tornado.web.RequestHandler):
|
2021-05-06 13:54:18 +00:00
|
|
|
def handle_any(self, write):
|
2021-04-30 08:49:10 +00:00
|
|
|
provider = self.get_query_argument("provider", None)
|
2021-05-09 16:43:28 +00:00
|
|
|
render = self.get_query_argument("render", False)
|
|
|
|
if isinstance(provider, str):
|
|
|
|
if isinstance(render, str):
|
|
|
|
if render.lower() == "true":
|
|
|
|
self.handle_render(provider, write)
|
|
|
|
else:
|
|
|
|
self.handle_stream(provider, write)
|
|
|
|
else:
|
|
|
|
self.handle_stream(provider, write)
|
|
|
|
else:
|
|
|
|
self.set_status(404)
|
|
|
|
if write:
|
2021-05-09 16:49:40 +00:00
|
|
|
self.write("Stream not found.")
|
2021-05-09 16:43:28 +00:00
|
|
|
|
|
|
|
def handle_render(self, provider, write):
|
2021-05-10 15:40:38 +00:00
|
|
|
if template is not None and version is not None:
|
2021-05-09 16:49:40 +00:00
|
|
|
stream_path = f'{self.request.path}?provider={provider}'
|
2021-05-10 15:40:38 +00:00
|
|
|
rendered = template.generate(stream=stream_path, videojs_version=videojs_version)
|
2021-05-09 16:49:40 +00:00
|
|
|
self.write(rendered)
|
|
|
|
else:
|
|
|
|
self.set_status(404)
|
|
|
|
self.write("HTML template missing.")
|
|
|
|
|
2021-05-09 16:43:28 +00:00
|
|
|
def handle_stream(self, provider, write):
|
2021-05-08 17:12:21 +00:00
|
|
|
upstream = None
|
2021-05-08 17:08:54 +00:00
|
|
|
proxy = None
|
2021-05-09 16:43:28 +00:00
|
|
|
if provider in providers.keys():
|
2021-04-30 11:55:10 +00:00
|
|
|
proxy = proxies.get(provider)
|
2021-05-09 13:08:56 +00:00
|
|
|
src = providers[provider] + self.request.path
|
2021-04-30 08:49:10 +00:00
|
|
|
try:
|
2021-05-09 18:34:30 +00:00
|
|
|
resp = requests.head(src, allow_redirects=True)
|
2021-04-30 11:26:55 +00:00
|
|
|
if resp is not None:
|
|
|
|
src = resp.url
|
2021-05-09 18:34:30 +00:00
|
|
|
if isinstance(src, str) and "consent.youtube.com" in src:
|
|
|
|
video_id = self.request.path.strip("/")
|
|
|
|
src = f'https://www.youtube.com/watch?v={video_id}'
|
2021-04-30 08:49:10 +00:00
|
|
|
except Exception as e:
|
2021-05-01 18:01:24 +00:00
|
|
|
print(e)
|
2021-04-30 08:49:10 +00:00
|
|
|
else:
|
2021-04-30 11:26:55 +00:00
|
|
|
try:
|
2021-04-30 11:55:10 +00:00
|
|
|
streams = proxy.streams(src)
|
2021-04-30 11:26:55 +00:00
|
|
|
for key in reversed(streams):
|
|
|
|
stream = streams.get(key)
|
|
|
|
if hasattr(stream, "url"):
|
2021-05-08 17:12:21 +00:00
|
|
|
upstream = stream.url
|
2021-04-30 11:26:55 +00:00
|
|
|
break
|
|
|
|
except Exception as e:
|
2021-05-01 18:01:24 +00:00
|
|
|
print(str(e))
|
2021-05-08 17:12:21 +00:00
|
|
|
upstream = None
|
|
|
|
if upstream is None:
|
2021-05-06 13:54:18 +00:00
|
|
|
self.set_status(404)
|
|
|
|
if write:
|
2021-05-09 16:49:40 +00:00
|
|
|
self.write("Stream not found.")
|
2021-04-30 11:26:55 +00:00
|
|
|
else:
|
2021-05-09 09:37:19 +00:00
|
|
|
data = rewrite(upstream, provider)
|
2021-05-08 22:49:52 +00:00
|
|
|
if data is None:
|
|
|
|
self.redirect(upstream, status=303)
|
|
|
|
else:
|
|
|
|
self.set_header("Content-Type", "application/vnd.apple.mpegurl")
|
|
|
|
self.write(data)
|
2021-04-30 15:51:09 +00:00
|
|
|
def get(self):
|
2021-05-06 13:54:18 +00:00
|
|
|
self.handle_any(True)
|
2021-04-30 15:51:09 +00:00
|
|
|
def head(self):
|
2021-05-06 13:54:18 +00:00
|
|
|
self.handle_any(False)
|
2021-05-01 18:01:24 +00:00
|
|
|
|
|
|
|
class FileHandler(tornado.web.RequestHandler):
|
|
|
|
def get(self):
|
|
|
|
self.set_header("Content-Type", "text/plain; charset=utf-8")
|
2021-05-06 13:23:43 +00:00
|
|
|
self.write(playlist)
|
|
|
|
|
2021-04-30 08:49:10 +00:00
|
|
|
try:
|
2021-05-01 18:01:24 +00:00
|
|
|
handlers = []
|
|
|
|
handlers.append((tornado.routing.PathMatches("/sources.m3u8"), FileHandler))
|
|
|
|
handlers.append((tornado.routing.AnyMatches(), MainHandler))
|
|
|
|
app_web = tornado.web.Application(handlers)
|
2021-04-30 08:49:10 +00:00
|
|
|
app_web.listen(8080)
|
|
|
|
tornado.ioloop.IOLoop.current().start()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
print()
|
|
|
|
|