2014-03-19 22:44:58 +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-10 12:40:07 +01:00
|
|
|
from __future__ import absolute_import
|
|
|
|
import re
|
|
|
|
import json
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2013-03-10 12:40:07 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
from svtplay_dl.service import Service
|
2014-04-21 19:05:06 +02:00
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2013-03-10 12:40:07 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Radioplay(Service):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['radioplay.se']
|
2013-03-10 12:40:07 +01:00
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
|
|
|
if self.exclude(options):
|
2015-09-06 23:04:48 +02:00
|
|
|
yield ServiceError("Excluding video")
|
2014-12-22 17:41:40 +01:00
|
|
|
return
|
|
|
|
|
2014-12-22 10:17:14 +01:00
|
|
|
match = re.search(r"RP.vcdData = ({.*});</script>", data)
|
2013-03-10 12:40:07 +01:00
|
|
|
if match:
|
|
|
|
data = json.loads(match.group(1))
|
2014-04-21 19:05:06 +02:00
|
|
|
for i in list(data["station"]["streams"].keys()):
|
2014-06-07 20:43:40 +02:00
|
|
|
yield HTTP(copy.copy(options), data["station"]["streams"][i], i)
|
2013-03-10 12:40:07 +01:00
|
|
|
else:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Can't find stream info")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|