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-04-27 13:17:00 +02:00
|
|
|
|
|
|
|
# pylint has issues with urlparse: "some types could not be inferred"
|
|
|
|
# pylint: disable=E1103
|
|
|
|
|
2013-03-01 23:39:42 +01:00
|
|
|
from __future__ import absolute_import
|
2013-02-12 19:43:37 +01:00
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
2013-04-21 13:42:33 +02:00
|
|
|
from svtplay_dl.utils.urllib import urlparse, parse_qs, unquote_plus
|
2013-04-21 12:44:31 +02:00
|
|
|
from svtplay_dl.service import Service
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.utils import get_http_data
|
|
|
|
from svtplay_dl.log import log
|
|
|
|
from svtplay_dl.fetcher.http import download_http
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Sr(Service):
|
2013-01-17 00:21:47 +01:00
|
|
|
def handle(self, url):
|
|
|
|
return "sverigesradio.se" in url
|
|
|
|
|
|
|
|
def get(self, options, url):
|
|
|
|
data = get_http_data(url)
|
|
|
|
parse = urlparse(url)
|
2013-04-21 12:30:11 +02:00
|
|
|
|
|
|
|
if "metafile" in parse_qs(parse.query):
|
|
|
|
options.other = "%s?%s" % (parse.path, parse.query)
|
|
|
|
else:
|
2013-05-05 12:57:42 +02:00
|
|
|
match = re.search(r"linkUrl=(.*)\;isButton=", data)
|
2013-01-17 00:21:47 +01:00
|
|
|
if not match:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
options.other = unquote_plus(match.group(1))
|
2013-04-21 12:30:11 +02:00
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
url = "http://sverigesradio.se%s" % options.other
|
|
|
|
data = get_http_data(url)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
url = xml.find("entry").find("ref").attrib["href"]
|
|
|
|
download_http(options, url)
|
|
|
|
|