2013-03-02 21:26:28 +01:00
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2014-02-05 23:15:19 +01:00
|
|
|
import json
|
2019-08-25 00:40:39 +02:00
|
|
|
import re
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2015-10-04 14:37:16 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.service import Service
|
|
|
|
from svtplay_dl.utils.text import decode_html_entities
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2017-09-01 20:53:04 +02:00
|
|
|
class Aftonbladettv(Service):
|
2021-03-15 13:21:54 +01:00
|
|
|
supported_domains = ["svd.se", "tv.aftonbladet.se"]
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
2016-10-06 22:46:40 +02:00
|
|
|
match = re.search('data-player-config="([^"]+)"', data)
|
2013-01-17 00:21:47 +01:00
|
|
|
if not match:
|
2017-06-05 13:14:22 +02:00
|
|
|
match = re.search('data-svpPlayer-video="([^"]+)"', data)
|
|
|
|
if not match:
|
2021-03-15 13:21:54 +01:00
|
|
|
match = re.search("window.ASSET = ({.*})", data)
|
|
|
|
if not match:
|
|
|
|
yield ServiceError("Can't find video info")
|
|
|
|
return
|
2017-06-05 13:14:22 +02:00
|
|
|
data = json.loads(decode_html_entities(match.group(1)))
|
2021-05-16 02:22:37 +02:00
|
|
|
yield from hlsparse(self.config, self.http.request("get", data["streamUrls"]["hls"]), data["streamUrls"]["hls"], output=self.output)
|
2017-09-01 20:53:04 +02:00
|
|
|
|
2018-01-30 20:11:37 +01:00
|
|
|
|
2017-09-01 20:53:04 +02:00
|
|
|
class Aftonbladet(Service):
|
2021-03-15 13:21:54 +01:00
|
|
|
supported_domains = ["aftonbladet.se"]
|
2017-09-01 20:53:04 +02:00
|
|
|
|
|
|
|
def get(self):
|
|
|
|
data = self.get_urldata()
|
|
|
|
|
2019-08-25 00:27:31 +02:00
|
|
|
match = re.search("window.FLUX_STATE = ({.*})</script>", data)
|
2017-09-01 20:53:04 +02:00
|
|
|
if not match:
|
|
|
|
yield ServiceError("Can't find video info")
|
|
|
|
return
|
|
|
|
|
2018-01-25 22:35:02 +01:00
|
|
|
try:
|
|
|
|
janson = json.loads(match.group(1))
|
|
|
|
except json.decoder.JSONDecodeError:
|
2021-04-27 19:44:09 +02:00
|
|
|
yield ServiceError(f"Can't decode api request: {match.group(1)}")
|
2018-01-25 22:35:02 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
videos = self._get_video(janson)
|
2019-08-25 00:33:51 +02:00
|
|
|
yield from videos
|
2018-01-25 22:28:07 +01:00
|
|
|
|
2018-01-25 22:35:02 +01:00
|
|
|
def _get_video(self, janson):
|
2018-06-03 12:49:25 +02:00
|
|
|
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":
|
2019-08-25 00:27:31 +02:00
|
|
|
streams = hlsparse(
|
|
|
|
self.config,
|
2019-09-06 22:49:49 +02:00
|
|
|
self.http.request("get", contents[i]["videoAsset"]["streamUrls"]["hls"]),
|
2019-08-25 00:27:31 +02:00
|
|
|
contents[i]["videoAsset"]["streamUrls"]["hls"],
|
|
|
|
output=self.output,
|
|
|
|
)
|
2018-06-03 12:49:25 +02:00
|
|
|
for key in list(streams.keys()):
|
|
|
|
yield streams[key]
|