2014-12-18 00:08:31 +01:00
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
import copy
|
2019-08-25 00:40:39 +02:00
|
|
|
import json
|
|
|
|
import re
|
2018-01-30 22:07:21 +01:00
|
|
|
from urllib.parse import unquote_plus
|
2014-12-18 00:08:31 +01:00
|
|
|
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
|
|
from svtplay_dl.service import OpenGraphThumbMixin
|
|
|
|
from svtplay_dl.service import Service
|
2014-12-18 00:08:31 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-12-18 00:08:31 +01:00
|
|
|
class Youplay(Service, OpenGraphThumbMixin):
|
2019-08-25 00:27:31 +02:00
|
|
|
supported_domains = ["www.affarsvarlden.se"]
|
2014-12-18 00:08:31 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-18 00:08:31 +01:00
|
|
|
match = re.search(r'script async defer src="(//content.youplay.se[^"]+)"', data)
|
|
|
|
if not match:
|
2019-08-25 00:33:51 +02:00
|
|
|
yield ServiceError("Cant find video info for {}".format(self.url))
|
2014-12-18 00:08:31 +01:00
|
|
|
return
|
|
|
|
|
2019-08-25 00:33:51 +02:00
|
|
|
data = self.http.request("get", "http:{}".format(match.group(1)).content)
|
2014-12-22 10:20:37 +01:00
|
|
|
match = re.search(r'decodeURIComponent\("([^"]+)"\)\)', data)
|
2014-12-18 00:08:31 +01:00
|
|
|
if not match:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Can't decode video info")
|
2014-12-18 00:08:31 +01:00
|
|
|
return
|
|
|
|
data = unquote_plus(match.group(1))
|
2014-12-22 10:20:37 +01:00
|
|
|
match = re.search(r"videoData = ({[^;]+});", data)
|
2014-12-18 00:08:31 +01:00
|
|
|
if not match:
|
2019-08-25 00:33:51 +02:00
|
|
|
yield ServiceError("Cant find video info for {}".format(self.url))
|
2014-12-18 00:08:31 +01:00
|
|
|
return
|
|
|
|
# fix broken json.
|
2014-12-22 10:20:37 +01:00
|
|
|
regex = re.compile(r"\s(\w+):")
|
2014-12-18 00:08:31 +01:00
|
|
|
data = regex.sub(r"'\1':", match.group(1))
|
2019-08-25 00:27:31 +02:00
|
|
|
data = data.replace("'", '"')
|
2014-12-18 00:08:31 +01:00
|
|
|
j = re.sub(r"{\s*(\w)", r'{"\1', data)
|
2014-12-26 02:04:29 +01:00
|
|
|
j = j.replace("\n", "")
|
2014-12-18 00:08:31 +01:00
|
|
|
j = re.sub(r'",\s*}', '"}', j)
|
2014-12-26 02:04:29 +01:00
|
|
|
jsondata = json.loads(j)
|
2014-12-18 00:08:31 +01:00
|
|
|
for i in jsondata["episode"]["sources"]:
|
|
|
|
match = re.search(r"mp4_(\d+)", i)
|
|
|
|
if match:
|
2019-09-06 22:49:49 +02:00
|
|
|
yield HTTP(copy.copy(self.config), jsondata["episode"]["sources"][i], match.group(1), output=self.output)
|