2015-09-10 23:40:48 +02:00
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
import re
|
2016-03-20 21:04:09 +01:00
|
|
|
import xml.etree.ElementTree as ET
|
2018-01-30 22:07:21 +01:00
|
|
|
from urllib.parse import urlparse
|
2015-09-10 23:40:48 +02:00
|
|
|
|
|
|
|
from svtplay_dl.error import ServiceError
|
2022-04-17 00:08:26 +02:00
|
|
|
from svtplay_dl.fetcher.dash import dashparse
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
|
|
|
from svtplay_dl.service import Service
|
2015-09-10 23:40:48 +02:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2015-09-10 23:40:48 +02:00
|
|
|
class Solidtango(Service):
|
2019-08-25 00:27:31 +02:00
|
|
|
supported_domains_re = [r"^([^.]+\.)*solidtango.com"]
|
2020-09-23 13:45:05 +02:00
|
|
|
supported_domains = ["mm-resource-service.herokuapp.com", "solidtango.com", "solidsport.com"]
|
2015-09-10 23:40:48 +02:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-09-10 23:40:48 +02:00
|
|
|
data = self.get_urldata()
|
2020-09-27 20:36:51 +02:00
|
|
|
parse = urlparse(self.url)
|
|
|
|
if "solidsport" in parse.netloc:
|
|
|
|
if self.config.get("username") and self.config.get("password"):
|
2022-04-17 00:08:26 +02:00
|
|
|
self.http.request("get", "https://solidsport.com/login")
|
2020-09-27 20:36:51 +02:00
|
|
|
pdata = {
|
2022-04-17 00:08:26 +02:00
|
|
|
"username": self.config.get("username"),
|
|
|
|
"password": self.config.get("password"),
|
2020-09-27 20:36:51 +02:00
|
|
|
}
|
2022-04-17 00:08:26 +02:00
|
|
|
res = self.http.request("post", "https://solidsport.com/api/play_v1/session/auth", json=pdata)
|
|
|
|
if res.status_code > 400:
|
2020-09-27 20:36:51 +02:00
|
|
|
yield ServiceError("Wrong username or password")
|
|
|
|
return
|
2022-04-17 00:08:26 +02:00
|
|
|
|
|
|
|
auth_token = res.json()["token"]
|
|
|
|
slug = parse.path[parse.path.rfind("/") + 1 :]
|
|
|
|
company = re.search(r"/([^\/]+)/", parse.path).group(1)
|
|
|
|
url = f"https://solidsport.com/api/play_v1/media_object/watch?company={company}&"
|
|
|
|
if "/watch/" in self.url:
|
|
|
|
url += f"media_object_slug={slug}"
|
|
|
|
elif "/games/" in self.url:
|
|
|
|
url += f"game_ident={slug}"
|
|
|
|
res = self.http.request("get", url, headers={"Authorization": f"Bearer {auth_token}"})
|
|
|
|
videoid = res.json()["id"]
|
|
|
|
self.output["title"] = res.json()["title"]
|
|
|
|
self.output["id"] = res.json()["id"]
|
|
|
|
url = f"https://solidsport.com/api/play_v1/media_object/{videoid}/request_stream_urls?admin_access=false&company={company}"
|
|
|
|
res = self.http.request("get", url, headers={"Authorization": f"Bearer {auth_token}"})
|
|
|
|
if "dash" in res.json()["urls"]:
|
|
|
|
yield from dashparse(self.config, self.http.request("get", res.json()["urls"]["dash"]), res.json()["urls"]["dash"], self.output)
|
|
|
|
if "hls" in res.json()["urls"]:
|
|
|
|
yield from hlsparse(self.config, self.http.request("get", res.json()["urls"]["hls"]), res.json()["urls"]["hls"], self.output)
|
|
|
|
return
|
2015-09-10 23:40:48 +02:00
|
|
|
|
2016-02-19 21:29:49 +01:00
|
|
|
match = re.search('src="(http://mm-resource-service.herokuapp.com[^"]*)"', data)
|
|
|
|
if match:
|
|
|
|
data = self.http.request("get", match.group(1)).text
|
|
|
|
match = re.search('src="(https://[^"]+solidtango[^"]+)" ', data)
|
|
|
|
if match:
|
|
|
|
data = self.http.request("get", match.group(1)).text
|
2019-08-25 00:27:31 +02:00
|
|
|
match = re.search(r"<title>(http[^<]+)</title>", data)
|
2015-09-10 23:40:48 +02:00
|
|
|
if match:
|
|
|
|
data = self.http.request("get", match.group(1)).text
|
|
|
|
|
2019-08-25 00:27:31 +02:00
|
|
|
match = re.search("is_livestream: true", data)
|
2017-01-27 01:19:47 +01:00
|
|
|
if match:
|
2018-05-13 13:06:45 +02:00
|
|
|
self.config.set("live", True)
|
2019-08-25 00:27:31 +02:00
|
|
|
match = re.search("isLivestream: true", data)
|
2016-02-19 21:29:49 +01:00
|
|
|
if match:
|
2018-05-13 13:06:45 +02:00
|
|
|
self.config.set("live", True)
|
2015-09-10 23:40:48 +02:00
|
|
|
match = re.search('html5_source: "([^"]+)"', data)
|
2017-01-27 01:19:47 +01:00
|
|
|
match2 = re.search('hlsURI: "([^"]+)"', data)
|
2015-09-10 23:40:48 +02:00
|
|
|
if match:
|
2021-05-16 02:22:37 +02:00
|
|
|
yield from hlsparse(self.config, self.http.request("get", match.group(1)), match.group(1), output=self.output)
|
2017-01-27 01:19:47 +01:00
|
|
|
elif match2:
|
2021-05-16 02:22:37 +02:00
|
|
|
yield from hlsparse(self.config, self.http.request("get", match2.group(1)), match2.group(1), output=self.output)
|
2015-09-10 23:40:48 +02:00
|
|
|
else:
|
2016-03-20 21:04:09 +01:00
|
|
|
parse = urlparse(self.url)
|
2021-12-18 19:52:08 +01:00
|
|
|
url2 = f"https://{parse.netloc}/api/v1/play/{parse.path[parse.path.rfind('/') + 1 :]}.xml"
|
2016-03-20 21:04:09 +01:00
|
|
|
data = self.http.request("get", url2)
|
|
|
|
if data.status_code != 200:
|
2019-09-06 22:49:49 +02:00
|
|
|
yield ServiceError("Can't find video info. if there is a video on the page. its a bug.")
|
2016-03-20 21:04:09 +01:00
|
|
|
return
|
2017-08-01 19:34:53 +02:00
|
|
|
xmldoc = data.text
|
|
|
|
xml = ET.XML(xmldoc)
|
2016-03-20 21:04:09 +01:00
|
|
|
elements = xml.findall(".//manifest")
|
2021-05-16 02:22:37 +02:00
|
|
|
yield from hlsparse(self.config, self.http.request("get", elements[0].text), elements[0].text, output=self.output)
|