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
|
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-04-21 17:33:44 +02:00
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
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):
|
2015-08-30 11:27:31 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
|
|
|
if self.exclude(options):
|
|
|
|
return
|
|
|
|
|
2015-08-31 20:18:18 +02:00
|
|
|
match = re.search(r'href="(/sida/[\.\/=a-z0-9&;\?]+playaudio=\d+)"', data)
|
2014-02-05 21:34:41 +01:00
|
|
|
if not match:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Can't find audio info")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2014-02-05 21:34:41 +01:00
|
|
|
path = quote_plus(match.group(1))
|
|
|
|
dataurl = "http://sverigesradio.se/sida/ajax/getplayerinfo?url=%s&isios=false&playertype=html5" % path
|
2015-08-31 19:45:15 +02:00
|
|
|
data = self.http.request("get", dataurl).content
|
2014-02-05 21:34:41 +01:00
|
|
|
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
|
2015-01-16 21:15:05 +01:00
|
|
|
yield HTTP(copy.copy(options), url, i["Quality"]/1000)
|
2014-02-05 21:34:41 +01:00
|
|
|
|
2013-01-17 00:21:47 +01:00
|
|
|
|