2014-08-11 20:41:09 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
import re
|
2014-08-11 21:25:10 +02:00
|
|
|
import os
|
2014-08-11 20:41:09 +02:00
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2015-08-31 22:25:37 +02:00
|
|
|
from svtplay_dl.utils import is_py2_old
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2014-08-11 20:41:09 +02:00
|
|
|
from svtplay_dl.log import log
|
|
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
|
|
|
|
|
|
|
# This is _very_ similar to mtvservices..
|
|
|
|
class Mtvnn(Service, OpenGraphThumbMixin):
|
|
|
|
supported_domains = ['nickelodeon.se', "nickelodeon.nl", "nickelodeon.no"]
|
|
|
|
|
|
|
|
def get(self, options):
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2015-07-05 21:51:58 +02:00
|
|
|
match = re.search(r'"(http://api.mtvnn.com/v2/mrss.xml[^"]+)"', data)
|
2014-08-11 20:41:09 +02:00
|
|
|
if not match:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Can't find id for the video")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2015-07-05 21:51:58 +02:00
|
|
|
|
2015-08-31 19:45:15 +02:00
|
|
|
data = self.http.request("get", match.group(1)).content
|
2014-08-11 20:41:09 +02:00
|
|
|
xml = ET.XML(data)
|
|
|
|
mediagen = xml.find("channel").find("item").find("{http://search.yahoo.com/mrss/}group")
|
2014-08-11 21:25:10 +02:00
|
|
|
title = xml.find("channel").find("item").find("title").text
|
|
|
|
if options.output_auto:
|
|
|
|
directory = os.path.dirname(options.output)
|
|
|
|
if len(directory):
|
2015-08-24 23:02:18 +02:00
|
|
|
options.output = os.path.join(directory, title)
|
2014-08-11 21:25:10 +02:00
|
|
|
else:
|
|
|
|
options.output = title
|
2014-12-22 17:41:40 +01:00
|
|
|
|
|
|
|
if self.exclude(options):
|
|
|
|
return
|
|
|
|
|
2015-07-05 21:51:58 +02:00
|
|
|
swfurl = mediagen.find("{http://search.yahoo.com/mrss/}player").attrib["url"]
|
2015-09-02 19:46:55 +02:00
|
|
|
options.other = "-W %s" % self.http.check_redirect(swfurl)
|
2015-07-05 21:51:58 +02:00
|
|
|
|
2014-08-11 20:41:09 +02:00
|
|
|
contenturl = mediagen.find("{http://search.yahoo.com/mrss/}content").attrib["url"]
|
2015-08-31 19:45:15 +02:00
|
|
|
content = self.http.request("get", contenturl).content
|
2014-08-11 20:41:09 +02:00
|
|
|
xml = ET.XML(content)
|
|
|
|
ss = xml.find("video").find("item")
|
|
|
|
if is_py2_old:
|
|
|
|
sa = list(ss.getiterator("rendition"))
|
|
|
|
else:
|
|
|
|
sa = list(ss.iter("rendition"))
|
|
|
|
|
|
|
|
for i in sa:
|
2014-08-11 22:45:59 +02:00
|
|
|
yield RTMP(options, i.find("src").text, i.attrib["bitrate"])
|
|
|
|
|
|
|
|
def find_all_episodes(self, options):
|
2015-08-30 00:06:20 +02:00
|
|
|
match = re.search(r"data-franchise='([^']+)'", self.get_urldata())
|
2014-08-11 22:45:59 +02:00
|
|
|
if match is None:
|
|
|
|
log.error("Couldn't program id")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2014-08-11 22:45:59 +02:00
|
|
|
programid = match.group(1)
|
2015-08-30 00:06:20 +02:00
|
|
|
match = re.findall(r"<li class='(divider playlist-item|playlist-item)'( data-item-id='([^']+)')?", self.get_urldata())
|
2014-08-11 22:45:59 +02:00
|
|
|
if not match:
|
|
|
|
log.error("Couldn't retrieve episode list")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2014-09-27 22:53:41 +02:00
|
|
|
episodNr = []
|
|
|
|
for i in match:
|
|
|
|
if i[0] == "playlist-item":
|
|
|
|
episodNr.append(i[2])
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
|
2014-08-11 22:45:59 +02:00
|
|
|
episodes = []
|
2014-12-21 13:16:05 +01:00
|
|
|
n = 0
|
2014-09-27 22:53:41 +02:00
|
|
|
for i in sorted(episodNr):
|
2014-12-21 13:16:05 +01:00
|
|
|
if n == options.all_last:
|
|
|
|
break
|
2014-08-11 22:45:59 +02:00
|
|
|
episodes.append("http://www.nickelodeon.se/serier/%s-something/videos/%s-something" % (programid, i))
|
2014-12-21 13:16:05 +01:00
|
|
|
n += 1
|
2014-08-11 22:45:59 +02:00
|
|
|
return episodes
|