2014-11-08 23:02:02 +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 json
|
|
|
|
import re
|
|
|
|
import copy
|
2014-11-23 13:03:23 +01:00
|
|
|
import os
|
2014-11-08 23:02:02 +01:00
|
|
|
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2015-08-30 00:06:20 +02:00
|
|
|
from svtplay_dl.utils import filenamify
|
2014-11-08 23:02:02 +01:00
|
|
|
from svtplay_dl.utils.urllib import urlparse
|
2015-10-04 14:37:16 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2014-11-08 23:02:02 +01:00
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2014-11-08 23:02:02 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-11-08 23:02:02 +01:00
|
|
|
class Disney(Service, OpenGraphThumbMixin):
|
2016-01-01 13:18:08 +01:00
|
|
|
supported_domains = ['disney.se', 'video.disney.se', 'disneyjunior.disney.se']
|
2014-11-08 23:02:02 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2014-11-08 23:02:02 +01:00
|
|
|
parse = urlparse(self.url)
|
2016-01-01 13:18:08 +01:00
|
|
|
if parse.hostname == "video.disney.se" or parse.hostname == "disneyjunior.disney.se":
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
2016-05-15 22:47:38 +02:00
|
|
|
if self.exclude():
|
2015-09-06 23:04:48 +02:00
|
|
|
yield ServiceError("Excluding video")
|
2014-12-22 17:41:40 +01:00
|
|
|
return
|
|
|
|
|
2014-12-08 23:07:02 +01:00
|
|
|
match = re.search(r"Grill.burger=({.*}):", data)
|
2014-11-08 23:02:02 +01:00
|
|
|
if not match:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Can't find video info")
|
2014-11-08 23:02:02 +01:00
|
|
|
return
|
|
|
|
jsondata = json.loads(match.group(1))
|
|
|
|
for n in jsondata["stack"]:
|
|
|
|
if len(n["data"]) > 0:
|
|
|
|
for x in n["data"]:
|
|
|
|
if "flavors" in x:
|
|
|
|
for i in x["flavors"]:
|
|
|
|
if i["format"] == "mp4":
|
2015-12-26 11:46:14 +01:00
|
|
|
yield HTTP(copy.copy(self.options), i["url"], i["bitrate"])
|
2014-11-08 23:02:02 +01:00
|
|
|
else:
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-08 23:07:02 +01:00
|
|
|
match = re.search(r"uniqueId : '([^']+)'", data)
|
2014-11-08 23:02:02 +01:00
|
|
|
if not match:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Can't find video info")
|
2014-11-08 23:02:02 +01:00
|
|
|
return
|
|
|
|
uniq = match.group(1)
|
2015-08-30 00:06:20 +02:00
|
|
|
match = re.search("entryId : '([^']+)'", self.get_urldata())
|
2014-11-08 23:02:02 +01:00
|
|
|
entryid = match.group(1)
|
2015-08-30 00:06:20 +02:00
|
|
|
match = re.search("partnerId : '([^']+)'", self.get_urldata())
|
2014-11-08 23:02:02 +01:00
|
|
|
partnerid = match.group(1)
|
2015-08-30 00:06:20 +02:00
|
|
|
match = re.search("uiConfId : '([^']+)'", self.get_urldata())
|
2014-11-08 23:02:02 +01:00
|
|
|
uiconfid = match.group(1)
|
|
|
|
|
2015-08-30 00:06:20 +02:00
|
|
|
match = re.search("json : ({.*}}),", self.get_urldata())
|
2014-12-20 22:23:41 +01:00
|
|
|
jsondata = json.loads(match.group(1))
|
|
|
|
parse = urlparse(self.url)
|
|
|
|
if len(parse.fragment) > 0:
|
|
|
|
entry = parse.fragment[parse.fragment.rindex("/")+1:]
|
|
|
|
if entry in jsondata["idlist"]:
|
|
|
|
entryid = jsondata["idlist"][entry]
|
|
|
|
else:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Cant find video info")
|
2014-12-20 22:23:41 +01:00
|
|
|
return
|
2015-12-26 11:46:14 +01:00
|
|
|
if self.options.output_auto:
|
2014-12-20 22:23:41 +01:00
|
|
|
for i in jsondata["playlists"][0]["playlist"]:
|
|
|
|
if entryid in i["id"]:
|
|
|
|
title = i["longId"]
|
|
|
|
break
|
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
directory = os.path.dirname(self.options.output)
|
|
|
|
self.options.service = "disney"
|
|
|
|
title = "%s-%s" % (title, self.options.service)
|
2014-12-20 22:23:41 +01:00
|
|
|
title = filenamify(title)
|
|
|
|
if len(directory):
|
2015-12-26 11:46:14 +01:00
|
|
|
self.options.output = os.path.join(directory, title)
|
2014-12-20 22:23:41 +01:00
|
|
|
else:
|
2015-12-26 11:46:14 +01:00
|
|
|
self.options.output = title
|
2014-11-08 23:02:02 +01:00
|
|
|
|
|
|
|
url = "http://cdnapi.kaltura.com/html5/html5lib/v1.9.7.6/mwEmbedFrame.php?&wid=%s&uiconf_id=%s&entry_id=%s&playerId=%s&forceMobileHTML5=true&urid=1.9.7.6&callback=mwi" % \
|
|
|
|
(partnerid, uiconfid, entryid, uniq)
|
2015-10-20 00:02:10 +02:00
|
|
|
data = self.http.request("get", url).text
|
2014-11-09 02:15:43 +01:00
|
|
|
match = re.search(r"mwi\(({.*})\);", data)
|
2014-11-08 23:02:02 +01:00
|
|
|
jsondata = json.loads(match.group(1))
|
|
|
|
data = jsondata["content"]
|
2014-11-09 02:15:43 +01:00
|
|
|
match = re.search(r"window.kalturaIframePackageData = ({.*});", data)
|
2014-11-08 23:02:02 +01:00
|
|
|
jsondata = json.loads(match.group(1))
|
|
|
|
ks = jsondata["enviornmentConfig"]["ks"]
|
2015-12-26 11:46:14 +01:00
|
|
|
if self.options.output_auto:
|
2014-11-23 13:03:23 +01:00
|
|
|
name = jsondata["entryResult"]["meta"]["name"]
|
2015-12-26 11:46:14 +01:00
|
|
|
directory = os.path.dirname(self.options.output)
|
|
|
|
self.options.service = "disney"
|
|
|
|
title = "%s-%s" % (name, self.options.service)
|
2014-11-23 13:03:23 +01:00
|
|
|
title = filenamify(title)
|
|
|
|
if len(directory):
|
2015-12-26 11:46:14 +01:00
|
|
|
self.options.output = os.path.join(directory, title)
|
2014-11-23 13:03:23 +01:00
|
|
|
else:
|
2015-12-26 11:46:14 +01:00
|
|
|
self.options.output = title
|
2014-11-08 23:02:02 +01:00
|
|
|
|
2016-05-15 22:47:38 +02:00
|
|
|
if self.exclude():
|
|
|
|
return
|
|
|
|
|
2014-11-08 23:02:02 +01:00
|
|
|
url = "http://cdnapi.kaltura.com/p/%s/sp/%s00/playManifest/entryId/%s/format/applehttp/protocol/http/a.m3u8?ks=%s&referrer=aHR0cDovL3d3dy5kaXNuZXkuc2U=&" % (partnerid[1:], partnerid[1:], entryid, ks)
|
2015-08-30 00:06:20 +02:00
|
|
|
redirect = self.http.check_redirect(url)
|
2015-12-26 11:46:14 +01:00
|
|
|
streams = hlsparse(self.options, self.http.request("get", redirect), redirect)
|
2014-11-08 23:02:02 +01:00
|
|
|
for n in list(streams.keys()):
|
2015-10-04 14:37:16 +02:00
|
|
|
yield streams[n]
|