1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/service/svtplay.py

184 lines
6.3 KiB
Python
Raw Normal View History

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 -*-
from __future__ import absolute_import
import re
import json
import os
import xml.etree.ElementTree as ET
2014-06-07 20:43:40 +02:00
import copy
from svtplay_dl.service import Service, OpenGraphThumbMixin
2014-12-08 23:07:02 +01:00
from svtplay_dl.utils import get_http_data, filenamify
from svtplay_dl.utils.urllib import urlparse, urljoin
2014-04-27 20:48:13 +02:00
from svtplay_dl.fetcher.hds import hdsparse
2014-04-21 21:55:39 +02:00
from svtplay_dl.fetcher.hls import HLS, hlsparse
from svtplay_dl.fetcher.rtmp import RTMP
from svtplay_dl.fetcher.http import HTTP
from svtplay_dl.subtitle import subtitle
from svtplay_dl.log import log
class Svtplay(Service, OpenGraphThumbMixin):
supported_domains = ['svtplay.se', 'svt.se', 'beta.svtplay.se', 'svtflow.se']
def __init__(self, url):
Service.__init__(self, url)
self.subtitle = None
2014-01-06 23:14:06 +01:00
def get(self, options):
if re.findall("svt.se", self.url):
2014-12-08 23:07:02 +01:00
error, data = self.get_urldata()
if error:
2014-11-26 16:03:34 +01:00
log.error("Can't get the page")
return
2014-12-08 23:07:02 +01:00
match = re.search(r"data-json-href=\"(.*)\"", data)
if match:
filename = match.group(1).replace("&", "&").replace("&format=json", "")
url = "http://www.svt.se%s" % filename
else:
log.error("Can't find video file for: %s", self.url)
return
2014-01-06 23:14:06 +01:00
else:
url = self.url
pos = url.find("?")
if pos < 0:
if "svt.se" in url:
dataurl = "%s?format=json" % url
else:
dataurl = "%s?output=json" % url
else:
if "svt.se" in url:
dataurl = "%s&format=json" % url
else:
dataurl = "%s&output=json" % url
2014-12-08 23:07:02 +01:00
error, data = get_http_data(dataurl)
if error:
2014-11-26 16:12:39 +01:00
log.error("Can't get api page. this is a bug.")
2014-11-26 16:03:34 +01:00
return
try:
data = json.loads(data)
except ValueError:
log.error("Can't parse json data from the site")
return
2013-04-16 13:18:40 +02:00
if "live" in data["video"]:
options.live = data["video"]["live"]
if options.output_auto:
options.service = "svtplay"
options.output = outputfilename(data, options.output, self.get_urldata()[1])
if self.exclude(options):
return
if data["video"]["subtitleReferences"]:
try:
suburl = data["video"]["subtitleReferences"][0]["url"]
except KeyError:
pass
if suburl and len(suburl) > 0:
yield subtitle(copy.copy(options), "wrst", suburl)
if options.force_subtitle:
return
for i in data["video"]["videoReferences"]:
parse = urlparse(i["url"])
if parse.path.find("m3u8") > 0:
2014-04-21 21:55:39 +02:00
streams = hlsparse(i["url"])
if streams:
for n in list(streams.keys()):
yield HLS(copy.copy(options), streams[n], n)
2014-04-21 19:12:21 +02:00
elif parse.path.find("f4m") > 0:
match = re.search(r"\/se\/secure\/", i["url"])
if not match:
streams = hdsparse(copy.copy(options), i["url"])
if streams:
for n in list(streams.keys()):
yield streams[n]
2014-04-21 19:12:21 +02:00
elif parse.scheme == "rtmp":
embedurl = "%s?type=embed" % url
2014-12-08 23:07:02 +01:00
error, data = get_http_data(embedurl)
match = re.search(r"value=\"(/(public)?(statiskt)?/swf(/video)?/svtplayer-[0-9\.a-f]+swf)\"", data)
swf = "http://www.svtplay.se%s" % match.group(1)
options.other = "-W %s" % swf
2014-06-07 20:43:40 +02:00
yield RTMP(copy.copy(options), i["url"], i["bitrate"])
else:
2014-06-07 20:43:40 +02:00
yield HTTP(copy.copy(options), i["url"], "0")
def find_all_episodes(self, options):
match = re.search(r'<link rel="alternate" type="application/rss\+xml" [^>]*href="([^"]+)"',
self.get_urldata()[1])
if match is None:
match = re.findall(r'a class="play[^"]+"\s+href="(/video[^"]+)"', self.get_urldata()[1])
if not match:
log.error("Couldn't retrieve episode list")
return
episodes = [urljoin("http://www.svtplay.se", x) for x in match]
else:
error, data = get_http_data(match.group(1))
if error:
log.error("Cant get rss page")
return
xml = ET.XML(data)
episodes = [x.text for x in xml.findall(".//item/link")]
episodes_new = []
n = 1
for i in episodes:
episodes_new.append(i)
if n == options.all_last:
break
n += 1
return sorted(episodes_new)
def outputfilename(data, filename, raw):
directory = os.path.dirname(filename)
name = data["statistics"]["folderStructure"]
if name.find(".") > 0:
name = name[:name.find(".")]
match = re.search("^arkiv-", name)
if match:
name = name.replace("arkiv-", "")
name = name.replace("-", ".")
season = seasoninfo(raw)
other = filenamify(data["context"]["title"])
if season:
title = "%s.%s.%s-%s-svtplay" % (name, season, other, data["videoId"])
else:
title = "%s.%s-%s-svtplay" % (name, other, data["videoId"])
title = filenamify(title)
if len(directory):
output = os.path.join(directory, title)
else:
output = title
return output
def seasoninfo(data):
match = re.search(r'play_video-area-aside__sub-title">([^<]+)<span', data)
if match:
line = match.group(1)
else:
match = re.search(r'data-title="([^"]+)"', data)
if match:
line = match.group(1)
else:
return None
2015-01-05 21:52:34 +01:00
line = re.sub(" +", "", match.group(1)).replace('\n', '')
match = re.search(r"(song(\d+)-)?Avsnitt(\d+)", line)
if match:
if match.group(2) is None:
season = 1
else:
2014-12-28 16:08:50 +01:00
season = int(match.group(2))
if season < 10:
season = "0%s" % season
2014-12-29 20:02:49 +01:00
episode = int(match.group(3))
if episode < 10:
episode = "0%s" % episode
return "S%sE%s" % (season, episode)
else:
2014-12-29 20:02:49 +01:00
return None