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 -*-
|
2013-03-01 23:39:42 +01:00
|
|
|
from __future__ import absolute_import
|
2013-01-17 00:21:47 +01:00
|
|
|
import re
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2016-06-29 23:52:13 +02:00
|
|
|
import json
|
2015-12-27 20:55:10 +01:00
|
|
|
import hashlib
|
2018-01-30 22:07:21 +01:00
|
|
|
from urllib.parse import urljoin, urlparse, parse_qs
|
2018-02-26 00:06:06 +01:00
|
|
|
from operator import itemgetter
|
2015-12-27 20:55:10 +01:00
|
|
|
|
|
|
|
from svtplay_dl.log import log
|
2014-01-19 14:26:48 +01:00
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2018-03-13 00:33:39 +01:00
|
|
|
from svtplay_dl.utils.text import filenamify
|
2014-04-27 20:48:13 +02:00
|
|
|
from svtplay_dl.fetcher.hds import hdsparse
|
2015-10-04 14:37:16 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2016-03-26 21:38:31 +01:00
|
|
|
from svtplay_dl.fetcher.dash import dashparse
|
2014-08-31 01:20:36 +02:00
|
|
|
from svtplay_dl.subtitle import subtitle
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2018-01-07 20:52:19 +01:00
|
|
|
URL_VIDEO_API = "http://api.svt.se/videoplayer-api/video/"
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2018-01-30 20:11:37 +01:00
|
|
|
|
2014-01-19 14:26:48 +01:00
|
|
|
class Svtplay(Service, OpenGraphThumbMixin):
|
2014-05-01 19:51:21 +02:00
|
|
|
supported_domains = ['svtplay.se', 'svt.se', 'beta.svtplay.se', 'svtflow.se']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-12-27 14:40:27 +01:00
|
|
|
parse = urlparse(self.url)
|
2015-12-28 11:41:15 +01:00
|
|
|
if parse.netloc == "www.svtplay.se" or parse.netloc == "svtplay.se":
|
2018-01-07 20:52:19 +01:00
|
|
|
if parse.path[:6] != "/video" and parse.path[:6] != "/klipp" and parse.path[:8] != "/kanaler":
|
2017-09-26 19:58:16 +02:00
|
|
|
yield ServiceError("This mode is not supported anymore. Need the url with the video.")
|
2015-12-27 14:40:27 +01:00
|
|
|
return
|
2016-01-10 15:33:30 +01:00
|
|
|
|
2017-02-21 00:00:30 +01:00
|
|
|
query = parse_qs(parse.query)
|
|
|
|
self.access = None
|
|
|
|
if "accessService" in query:
|
|
|
|
self.access = query["accessService"]
|
|
|
|
|
2018-01-07 20:52:19 +01:00
|
|
|
if parse.path[:8] == "/kanaler":
|
|
|
|
res = self.http.get(URL_VIDEO_API + "ch-{0}".format(parse.path[9:]))
|
|
|
|
try:
|
|
|
|
janson = res.json()
|
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
yield ServiceError("Can't decode api request: {0}".format(res.request.url))
|
|
|
|
return
|
|
|
|
videos = self._get_video(janson)
|
|
|
|
self.options.live = True
|
|
|
|
for i in videos:
|
|
|
|
yield i
|
|
|
|
return
|
|
|
|
|
2016-11-06 14:52:11 +01:00
|
|
|
match = re.search("__svtplay'] = ({.*});", self.get_urldata())
|
|
|
|
if not match:
|
2017-09-26 19:58:16 +02:00
|
|
|
yield ServiceError("Can't find video info.")
|
2016-11-06 14:55:43 +01:00
|
|
|
return
|
2017-05-03 16:03:44 +02:00
|
|
|
janson = json.loads(match.group(1))["videoPage"]
|
2015-12-27 14:40:27 +01:00
|
|
|
|
2017-02-19 15:39:38 +01:00
|
|
|
if "programTitle" not in janson["video"]:
|
2017-09-26 19:58:16 +02:00
|
|
|
yield ServiceError("Can't find any video on that page.")
|
2017-02-18 18:28:03 +01:00
|
|
|
return
|
|
|
|
|
2017-02-21 00:00:30 +01:00
|
|
|
if self.access:
|
|
|
|
for i in janson["video"]["versions"]:
|
|
|
|
if i["accessService"] == self.access:
|
|
|
|
url = urljoin("http://www.svtplay.se", i["contentUrl"])
|
|
|
|
res = self.http.get(url)
|
|
|
|
match = re.search("__svtplay'] = ({.*});", res.text)
|
|
|
|
if not match:
|
2017-09-26 19:58:16 +02:00
|
|
|
yield ServiceError("Can't find video info.")
|
2017-02-21 00:00:30 +01:00
|
|
|
return
|
2017-05-03 16:03:44 +02:00
|
|
|
janson = json.loads(match.group(1))["videoPage"]
|
2017-02-21 00:00:30 +01:00
|
|
|
|
2018-05-13 13:06:45 +02:00
|
|
|
self.outputfilename(janson["video"])
|
2014-08-27 22:41:38 +02:00
|
|
|
|
2016-05-14 22:54:30 +02:00
|
|
|
if self.exclude():
|
2017-09-26 19:58:16 +02:00
|
|
|
yield ServiceError("Excluding video.")
|
2014-12-22 17:41:40 +01:00
|
|
|
return
|
|
|
|
|
2017-01-26 21:54:58 +01:00
|
|
|
if "programVersionId" in janson["video"]:
|
|
|
|
vid = janson["video"]["programVersionId"]
|
|
|
|
else:
|
|
|
|
vid = janson["video"]["id"]
|
2018-01-07 20:52:19 +01:00
|
|
|
res = self.http.get(URL_VIDEO_API + vid)
|
2017-10-03 21:07:26 +02:00
|
|
|
try:
|
|
|
|
janson = res.json()
|
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
yield ServiceError("Can't decode api request: {0}".format(res.request.url))
|
|
|
|
return
|
2017-05-08 00:14:05 +02:00
|
|
|
videos = self._get_video(janson)
|
|
|
|
for i in videos:
|
|
|
|
yield i
|
|
|
|
|
|
|
|
def _get_video(self, janson):
|
2017-01-27 02:10:46 +01:00
|
|
|
if "subtitleReferences" in janson:
|
|
|
|
for i in janson["subtitleReferences"]:
|
|
|
|
if i["format"] == "websrt" and "url" in i:
|
|
|
|
yield subtitle(copy.copy(self.options), "wrst", i["url"])
|
|
|
|
|
2017-01-26 21:54:58 +01:00
|
|
|
if "videoReferences" in janson:
|
|
|
|
if len(janson["videoReferences"]) == 0:
|
2017-09-26 19:58:16 +02:00
|
|
|
yield ServiceError("Media doesn't have any associated videos.")
|
2016-11-06 19:48:22 +01:00
|
|
|
return
|
2015-10-25 15:44:47 +01:00
|
|
|
|
2017-01-26 21:54:58 +01:00
|
|
|
for i in janson["videoReferences"]:
|
2017-09-26 21:17:47 +02:00
|
|
|
streams = None
|
|
|
|
alt_streams = None
|
2017-09-26 21:56:04 +02:00
|
|
|
alt = None
|
|
|
|
query = parse_qs(urlparse(i["url"]).query)
|
|
|
|
if "alt" in query and len(query["alt"]) > 0:
|
|
|
|
alt = self.http.get(query["alt"][0])
|
|
|
|
|
2017-01-26 21:54:58 +01:00
|
|
|
if i["format"] == "hls":
|
2018-05-13 13:06:45 +02:00
|
|
|
streams = hlsparse(self.config, self.http.request("get", i["url"]), i["url"], output=self.output)
|
2017-09-26 21:56:04 +02:00
|
|
|
if alt:
|
2018-05-13 13:06:45 +02:00
|
|
|
alt_streams = hlsparse(self.config, self.http.request("get", alt.request.url), alt.request.url, output=self.output)
|
2017-09-26 21:17:47 +02:00
|
|
|
|
|
|
|
elif i["format"] == "hds":
|
2016-11-06 19:48:22 +01:00
|
|
|
match = re.search(r"\/se\/secure\/", i["url"])
|
|
|
|
if not match:
|
2018-05-13 13:06:45 +02:00
|
|
|
streams = hdsparse(self.config, self.http.request("get", i["url"], params={"hdcore": "3.7.0"}),
|
|
|
|
i["url"], output=self.output)
|
2017-09-26 21:56:04 +02:00
|
|
|
if alt:
|
2018-05-13 13:06:45 +02:00
|
|
|
alt_streams = hdsparse(self.config, self.http.request("get", alt.request.url, params={"hdcore": "3.7.0"}),
|
|
|
|
alt.request.url, output=self.output)
|
2017-09-26 21:17:47 +02:00
|
|
|
elif i["format"] == "dash264" or i["format"] == "dashhbbtv":
|
2018-05-13 13:06:45 +02:00
|
|
|
streams = dashparse(self.config, self.http.request("get", i["url"]), i["url"], output=self.output)
|
2017-09-26 21:56:04 +02:00
|
|
|
if alt:
|
2018-05-13 13:06:45 +02:00
|
|
|
alt_streams = dashparse(self.config, self.http.request("get", alt.request.url),
|
|
|
|
alt.request.url, output=self.output)
|
2017-09-26 21:17:47 +02:00
|
|
|
|
|
|
|
if streams:
|
|
|
|
for n in list(streams.keys()):
|
|
|
|
yield streams[n]
|
|
|
|
if alt_streams:
|
|
|
|
for n in list(alt_streams.keys()):
|
|
|
|
yield alt_streams[n]
|
2016-09-10 17:30:04 +02:00
|
|
|
|
2016-08-20 13:52:19 +02:00
|
|
|
def _last_chance(self, videos, page, maxpage=2):
|
|
|
|
if page > maxpage:
|
|
|
|
return videos
|
|
|
|
|
2017-09-26 20:11:39 +02:00
|
|
|
res = self.http.get("http://www.svtplay.se/sista-chansen?sida={}".format(page))
|
2016-10-31 19:14:29 +01:00
|
|
|
match = re.search("__svtplay'] = ({.*});", res.text)
|
2016-08-20 13:52:19 +02:00
|
|
|
if not match:
|
|
|
|
return videos
|
|
|
|
|
|
|
|
dataj = json.loads(match.group(1))
|
2016-09-15 08:53:49 +02:00
|
|
|
pages = dataj["gridPage"]["pagination"]["totalPages"]
|
2016-08-20 13:52:19 +02:00
|
|
|
|
2017-09-26 19:58:16 +02:00
|
|
|
for i in dataj["gridPage"]["content"]:
|
2016-08-20 13:52:19 +02:00
|
|
|
videos.append(i["contentUrl"])
|
|
|
|
page += 1
|
|
|
|
self._last_chance(videos, page, pages)
|
|
|
|
return videos
|
|
|
|
|
2016-08-20 15:51:58 +02:00
|
|
|
def _genre(self, jansson):
|
|
|
|
videos = []
|
2017-02-06 13:12:33 +01:00
|
|
|
parse = urlparse(self._url)
|
2017-02-15 23:15:50 +01:00
|
|
|
dataj = jansson["clusterPage"]
|
|
|
|
tab = re.search("tab=(.+)", parse.query)
|
2017-02-15 00:47:36 +01:00
|
|
|
if tab:
|
2017-02-06 13:12:33 +01:00
|
|
|
tab = tab.group(1)
|
|
|
|
for i in dataj["tabs"]:
|
|
|
|
if i["slug"] == tab:
|
2017-02-15 00:47:36 +01:00
|
|
|
videos = self.videos_to_list(i["content"], videos)
|
|
|
|
else:
|
|
|
|
videos = self.videos_to_list(dataj["clips"], videos)
|
|
|
|
|
2016-08-20 15:51:58 +02:00
|
|
|
return videos
|
2016-08-20 13:52:19 +02:00
|
|
|
|
2018-05-13 13:06:45 +02:00
|
|
|
def find_all_episodes(self, config):
|
2016-08-20 13:52:19 +02:00
|
|
|
parse = urlparse(self._url)
|
2017-05-07 14:47:15 +02:00
|
|
|
|
2018-01-09 14:37:11 +01:00
|
|
|
videos = []
|
2017-04-12 21:23:56 +02:00
|
|
|
tab = None
|
2018-01-09 14:37:11 +01:00
|
|
|
match = re.search("__svtplay'] = ({.*});", self.get_urldata())
|
|
|
|
if re.search("sista-chansen", parse.path):
|
|
|
|
videos = self._last_chance(videos, 1)
|
|
|
|
elif not match:
|
|
|
|
log.error("Couldn't retrieve episode list.")
|
|
|
|
return
|
2017-04-12 21:23:56 +02:00
|
|
|
else:
|
2018-01-09 14:37:11 +01:00
|
|
|
dataj = json.loads(match.group(1))
|
|
|
|
if re.search("/genre", parse.path):
|
|
|
|
videos = self._genre(dataj)
|
2016-08-20 13:52:19 +02:00
|
|
|
else:
|
2018-01-09 14:37:11 +01:00
|
|
|
if parse.query:
|
2018-02-22 05:04:20 +01:00
|
|
|
query = parse_qs(parse.query)
|
|
|
|
if "tab" in query:
|
|
|
|
tab = query["tab"][0]
|
2018-01-09 14:37:11 +01:00
|
|
|
|
2018-02-22 04:50:31 +01:00
|
|
|
if dataj["relatedVideoContent"]:
|
|
|
|
items = dataj["relatedVideoContent"]["relatedVideosAccordion"]
|
|
|
|
for i in items:
|
|
|
|
if tab:
|
|
|
|
if i["slug"] == tab:
|
|
|
|
videos = self.videos_to_list(i["videos"], videos)
|
|
|
|
else:
|
|
|
|
if "klipp" not in i["slug"] and "kommande" not in i["slug"]:
|
|
|
|
videos = self.videos_to_list(i["videos"], videos)
|
2018-05-13 13:06:45 +02:00
|
|
|
if self.config.get("include_clips"):
|
2018-02-22 04:50:31 +01:00
|
|
|
if i["slug"] == "klipp":
|
|
|
|
videos = self.videos_to_list(i["videos"], videos)
|
2018-01-09 14:37:11 +01:00
|
|
|
|
|
|
|
episodes = [urljoin("http://www.svtplay.se", x) for x in videos]
|
2017-05-07 15:02:55 +02:00
|
|
|
|
2018-05-13 13:06:45 +02:00
|
|
|
if config.get("all_last") > 0:
|
|
|
|
return episodes[-config.get("all_last"):]
|
2018-01-09 14:34:20 +01:00
|
|
|
return episodes
|
2014-12-28 13:57:50 +01:00
|
|
|
|
2017-02-15 00:40:25 +01:00
|
|
|
def videos_to_list(self, lvideos, videos):
|
2018-02-22 04:12:52 +01:00
|
|
|
if "episodeNumber" in lvideos[0] and lvideos[0]["episodeNumber"]:
|
|
|
|
lvideos = sorted(lvideos, key=itemgetter('episodeNumber'))
|
2017-02-15 00:40:25 +01:00
|
|
|
for n in lvideos:
|
|
|
|
parse = urlparse(n["contentUrl"])
|
|
|
|
if parse.path not in videos:
|
2018-05-13 13:06:45 +02:00
|
|
|
videos.append(parse.path)
|
2017-02-21 00:00:30 +01:00
|
|
|
if "versions" in n:
|
|
|
|
for i in n["versions"]:
|
|
|
|
parse = urlparse(i["contentUrl"])
|
2018-05-13 13:06:45 +02:00
|
|
|
if parse.path not in videos:
|
2017-02-21 00:00:30 +01:00
|
|
|
videos.append(parse.path)
|
|
|
|
|
2017-02-15 00:40:25 +01:00
|
|
|
return videos
|
|
|
|
|
2018-05-13 13:06:45 +02:00
|
|
|
def outputfilename(self, data):
|
2017-02-01 13:19:59 +01:00
|
|
|
name = None
|
2018-05-13 13:06:45 +02:00
|
|
|
desc = None
|
2018-01-08 22:06:17 +01:00
|
|
|
if "programTitle" in data and data["programTitle"]:
|
2017-02-15 00:40:25 +01:00
|
|
|
name = filenamify(data["programTitle"])
|
2018-01-08 22:06:17 +01:00
|
|
|
elif "titleSlug" in data and data["titleSlug"]:
|
|
|
|
name = filenamify(data["titleSlug"])
|
2018-05-13 13:06:45 +02:00
|
|
|
other = data["title"]
|
2017-01-26 21:54:58 +01:00
|
|
|
|
2017-02-15 00:40:25 +01:00
|
|
|
if "programVersionId" in data:
|
|
|
|
vid = str(data["programVersionId"])
|
2015-12-27 14:40:27 +01:00
|
|
|
else:
|
2017-02-15 00:40:25 +01:00
|
|
|
vid = str(data["id"])
|
2018-01-13 20:27:40 +01:00
|
|
|
id = hashlib.sha256(vid.encode("utf-8")).hexdigest()[:7]
|
2015-12-27 14:40:27 +01:00
|
|
|
|
2016-01-03 02:42:32 +01:00
|
|
|
if name == other:
|
|
|
|
other = None
|
2017-02-15 23:15:50 +01:00
|
|
|
elif name is None:
|
2017-01-26 21:54:58 +01:00
|
|
|
name = other
|
|
|
|
other = None
|
2018-05-13 13:06:45 +02:00
|
|
|
|
|
|
|
season, episode = self.seasoninfo(data)
|
2017-02-21 00:00:30 +01:00
|
|
|
if "accessService" in data:
|
|
|
|
if data["accessService"] == "audioDescription":
|
2018-05-13 13:06:45 +02:00
|
|
|
desc = "syntolkat"
|
2017-02-21 00:00:30 +01:00
|
|
|
if data["accessService"] == "signInterpretation":
|
2018-05-13 13:06:45 +02:00
|
|
|
desc = "teckentolkat"
|
|
|
|
|
|
|
|
if not other:
|
|
|
|
other = desc
|
2015-12-27 14:40:27 +01:00
|
|
|
else:
|
2018-05-13 13:06:45 +02:00
|
|
|
other += "-{}".format(desc)
|
|
|
|
|
|
|
|
self.output["title"] = name
|
|
|
|
self.output["id"] = id
|
|
|
|
self.output["season"] = season
|
|
|
|
self.output["episode"] = episode
|
|
|
|
self.output["episodename"] = other
|
2015-12-27 14:40:27 +01:00
|
|
|
|
|
|
|
def seasoninfo(self, data):
|
2017-02-15 00:40:25 +01:00
|
|
|
if "season" in data and data["season"]:
|
|
|
|
season = "{:02d}".format(data["season"])
|
|
|
|
episode = "{:02d}".format(data["episodeNumber"])
|
2016-11-06 14:52:11 +01:00
|
|
|
if int(season) == 0 and int(episode) == 0:
|
2018-05-13 13:06:45 +02:00
|
|
|
return None, None
|
|
|
|
return season, episode
|
2014-12-28 14:33:25 +01:00
|
|
|
else:
|
2018-05-13 13:06:45 +02:00
|
|
|
return None, None
|