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-02-12 19:43:37 +01:00
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
2013-03-01 23:39:42 +01:00
|
|
|
from svtplay.utils import get_http_data
|
|
|
|
from svtplay.log import log
|
2013-03-10 14:56:10 +01:00
|
|
|
from svtplay.fetcher.http import download_http
|
2013-02-12 19:43:37 +01:00
|
|
|
|
|
|
|
if sys.version_info > (3, 0):
|
|
|
|
from urllib.parse import urlparse, parse_qs, unquote_plus
|
|
|
|
else:
|
|
|
|
from urlparse import urlparse, parse_qs
|
|
|
|
from urllib import unquote_plus
|
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
class Sr():
|
|
|
|
def handle(self, url):
|
|
|
|
return "sverigesradio.se" in url
|
|
|
|
|
|
|
|
def get(self, options, url):
|
|
|
|
data = get_http_data(url)
|
|
|
|
parse = urlparse(url)
|
|
|
|
try:
|
|
|
|
metafile = parse_qs(parse[4])["metafile"][0]
|
|
|
|
options.other = "%s?%s" % (parse[2], parse[4])
|
|
|
|
except KeyError:
|
|
|
|
match = re.search("linkUrl=(.*)\;isButton=", data)
|
|
|
|
if not match:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
options.other = unquote_plus(match.group(1))
|
|
|
|
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)
|
|
|
|
|