mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 21:54:17 +01:00
c4afda5919
* added token and HMAC encoding to tv.aftonbladet url Co-authored-by: filipelander <filipelander.elander@sponswatch.com>
83 lines
3.1 KiB
Python
83 lines
3.1 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
import json
|
|
import re
|
|
|
|
from svtplay_dl.error import ServiceError
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
|
from svtplay_dl.service import Service
|
|
from svtplay_dl.utils.text import decode_html_entities
|
|
|
|
|
|
class Aftonbladettv(Service):
|
|
supported_domains = ["svd.se", "tv.aftonbladet.se"]
|
|
|
|
def get(self):
|
|
data = self.get_urldata()
|
|
match = re.search('data-player-config="([^"]+)"', data)
|
|
if not match:
|
|
match = re.search('data-svpPlayer-video="([^"]+)"', data)
|
|
if not match:
|
|
match = re.search("window.ASSET = ({.*})", data)
|
|
if not match:
|
|
yield ServiceError("Can't find video info")
|
|
return
|
|
data = json.loads(decode_html_entities(match.group(1)))
|
|
hdnea = self._login()
|
|
url = data["streamUrls"]["hls"] + hdnea if hdnea else data["streamUrls"]["hls"]
|
|
yield from hlsparse(config=self.config, res=self.http.request("get", url), url=url, output=self.output)
|
|
|
|
def _login(self):
|
|
if (token := self.config.get("token")) is None:
|
|
return None
|
|
if (match := re.search(r"^.*tv.aftonbladet.+video/([a-zA-Z0-9]+)/.*$", self.url)) is None:
|
|
return None
|
|
|
|
service = match.group(1)
|
|
res = self.http.request("get", f"https://svp-token-api.aftonbladet.se/svp/token/{service}?access=plus", headers={"x-sp-id": token})
|
|
if res.status_code != 200:
|
|
return None
|
|
expires = res.json()["expiry"]
|
|
hmac = res.json()["value"]
|
|
|
|
res = self.http.request("get", f"https://svp.vg.no/svp/token/v1/?vendor=ab&assetId={service}&expires={expires}&hmac={hmac}")
|
|
if res.status_code != 200:
|
|
return None
|
|
return f"?hdnea={res.text.replace('/', '%2F').replace('=', '%3D').replace(',', '%2C')}"
|
|
|
|
|
|
class Aftonbladet(Service):
|
|
supported_domains = ["aftonbladet.se"]
|
|
|
|
def get(self):
|
|
data = self.get_urldata()
|
|
|
|
match = re.search("window.FLUX_STATE = ({.*})</script>", data)
|
|
if not match:
|
|
yield ServiceError("Can't find video info")
|
|
return
|
|
|
|
try:
|
|
janson = json.loads(match.group(1))
|
|
except json.decoder.JSONDecodeError:
|
|
yield ServiceError(f"Can't decode api request: {match.group(1)}")
|
|
return
|
|
|
|
videos = self._get_video(janson)
|
|
yield from videos
|
|
|
|
def _get_video(self, janson):
|
|
collections = janson["collections"]
|
|
for n in list(collections.keys()):
|
|
contents = collections[n]["contents"]["items"]
|
|
for i in list(contents.keys()):
|
|
if "type" in contents[i] and contents[i]["type"] == "video":
|
|
streams = hlsparse(
|
|
self.config,
|
|
self.http.request("get", contents[i]["videoAsset"]["streamUrls"]["hls"]),
|
|
contents[i]["videoAsset"]["streamUrls"]["hls"],
|
|
output=self.output,
|
|
)
|
|
for key in list(streams.keys()):
|
|
yield streams[key]
|