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
|
2014-02-05 21:34:41 +01:00
|
|
|
import json
|
2013-02-12 19:43:37 +01:00
|
|
|
import re
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-03-19 22:58:40 +01:00
|
|
|
from svtplay_dl.utils.urllib import quote_plus
|
2014-02-05 21:34:41 +01:00
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2014-09-11 23:30:34 +02:00
|
|
|
from svtplay_dl.utils import get_http_data, HTTPError
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
2014-04-21 17:33:44 +02:00
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-02-05 21:34:41 +01:00
|
|
|
class Sr(Service, OpenGraphThumbMixin):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['sverigesradio.se']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
2014-09-11 23:30:34 +02:00
|
|
|
try:
|
|
|
|
match = re.search(r'href="(/sida/[\.\/=a-z0-9&;\?]+\d+)" aria-label', self.get_urldata())
|
|
|
|
except HTTPError as e:
|
|
|
|
log.error("Can't find webpage")
|
|
|
|
return
|
2014-02-05 21:34:41 +01:00
|
|
|
if not match:
|
|
|
|
log.error("Can't find audio info")
|
|
|
|
sys.exit(2)
|
|
|
|
path = quote_plus(match.group(1))
|
|
|
|
dataurl = "http://sverigesradio.se/sida/ajax/getplayerinfo?url=%s&isios=false&playertype=html5" % path
|
|
|
|
data = get_http_data(dataurl)
|
|
|
|
playerinfo = json.loads(data)["playerInfo"]
|
|
|
|
for i in playerinfo["AudioSources"]:
|
2014-02-11 18:45:46 +01:00
|
|
|
url = i["Url"]
|
|
|
|
if not url.startswith('http'):
|
2014-04-21 17:33:44 +02:00
|
|
|
url = 'http:%s' % url
|
2014-06-07 20:43:40 +02:00
|
|
|
yield HTTP(copy.copy(options), url, i["Quality"])
|
2014-02-05 21:34:41 +01:00
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
|