iptv/M3U8/scrapers/totalsportek.py

206 lines
5.2 KiB
Python
Raw Normal View History

2025-12-24 01:54:02 -05:00
import re
from functools import partial
from urllib.parse import urljoin, urlparse
2025-12-24 01:54:02 -05:00
from selectolax.parser import HTMLParser
from .utils import Cache, Time, get_logger, leagues, network
log = get_logger(__name__)
urls: dict[str, dict[str, str | float]] = {}
TAG = "TOTALSPRTK"
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=28_800)
2026-01-19 16:52:57 -05:00
MIRRORS = [
{
"base": "https://live.totalsportek777.com/",
"hex_decode": True,
},
{
"base": "https://live2.totalsportek777.com/",
"hex_decode": False,
},
]
2025-12-24 01:54:02 -05:00
def fix_txt(s: str) -> str:
s = " ".join(s.split())
2025-12-24 01:54:02 -05:00
return s.upper() if s.islower() else s
2026-01-19 16:52:57 -05:00
async def process_event(href: str, url_num: int) -> tuple[str | None, str | None]:
valid_m3u8 = re.compile(r'var\s+(\w+)\s*=\s*"([^"]*)"', re.IGNORECASE)
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
for x, mirror in enumerate(MIRRORS, start=1):
base: str = mirror["base"]
2025-12-24 01:54:02 -05:00
hex_decode: bool = mirror["hex_decode"]
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
url = urljoin(base, href)
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
if not (html_data := await network.request(url, log=log)):
log.info(f"M{x} | URL {url_num}) Failed to load url.")
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
return None, None
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
soup = HTMLParser(html_data.content)
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
iframe = soup.css_first("iframe")
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
if not iframe or not (iframe_src := iframe.attributes.get("src")):
log.warning(f"M{x} | URL {url_num}) No iframe element found.")
continue
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
if not (iframe_src_data := await network.request(iframe_src, log=log)):
log.warning(f"M{x} | URL {url_num}) Failed to load iframe source.")
continue
if not (match := valid_m3u8.search(iframe_src_data.text)):
log.warning(f"M{x} | URL {url_num}) No Clappr source found.")
continue
raw: str = match[2]
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
try:
m3u8_url = bytes.fromhex(raw).decode("utf-8") if hex_decode else raw
except Exception as e:
log.warning(f"M{x} | URL {url_num}) Decoding failed: {e}")
continue
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
if m3u8_url and iframe_src:
log.info(f"M{x} | URL {url_num}) Captured M3U8")
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
return m3u8_url, iframe_src
2025-12-24 01:54:02 -05:00
log.warning(f"M{x} | URL {url_num}) No M3U8 found")
2026-01-19 16:52:57 -05:00
return None, None
async def get_events(url: str, cached_keys: list[str]) -> list[dict[str, str]]:
2025-12-24 01:54:02 -05:00
events = []
2026-01-19 16:52:57 -05:00
if not (html_data := await network.request(url, log=log)):
2025-12-24 01:54:02 -05:00
return events
soup = HTMLParser(html_data.content)
sport = "Live Event"
for node in soup.css("a"):
if not node.attributes.get("class"):
continue
2025-12-24 01:54:02 -05:00
if (parent := node.parent) and "my-1" in parent.attributes.get("class", ""):
if span := node.css_first("span"):
sport = span.text(strip=True)
2025-12-24 01:54:02 -05:00
sport = fix_txt(sport)
if not (teams := [t.text(strip=True) for t in node.css(".col-7 .col-12")]):
continue
if not (href := node.attributes.get("href")):
continue
2025-12-24 01:54:02 -05:00
href = urlparse(href).path if href.startswith("http") else href
2025-12-24 01:54:02 -05:00
if not (time_node := node.css_first(".col-3 span")):
continue
2025-12-24 01:54:02 -05:00
if time_node.text(strip=True) != "MatchStarted":
continue
2025-12-24 01:54:02 -05:00
event_name = fix_txt(" vs ".join(teams))
if f"[{sport}] {event_name} ({TAG})" in cached_keys:
continue
2025-12-24 01:54:02 -05:00
events.append(
{
"sport": sport,
"event": event_name,
"href": href,
}
)
2025-12-24 01:54:02 -05:00
return events
async def scrape() -> None:
cached_urls = CACHE_FILE.load()
2025-12-27 12:52:18 -05:00
valid_urls = {k: v for k, v in cached_urls.items() if v["url"]}
2025-12-24 01:54:02 -05:00
2025-12-27 12:52:18 -05:00
valid_count = cached_count = len(valid_urls)
urls.update(valid_urls)
2025-12-24 01:54:02 -05:00
log.info(f"Loaded {cached_count} event(s) from cache")
2026-01-19 16:52:57 -05:00
if not (base_url := await network.get_base([mirr["base"] for mirr in MIRRORS])):
log.warning("No working TotalSportek mirrors")
CACHE_FILE.write(cached_urls)
return
2025-12-24 01:54:02 -05:00
2026-01-19 16:52:57 -05:00
events = await get_events(base_url, cached_urls.keys())
2025-12-24 01:54:02 -05:00
log.info(f"Processing {len(events)} new URL(s)")
if events:
now = Time.clean(Time.now())
for i, ev in enumerate(events, start=1):
handler = partial(
process_event,
2026-01-19 16:52:57 -05:00
href=ev["href"],
2025-12-24 01:54:02 -05:00
url_num=i,
)
url, iframe = await network.safe_process(
handler,
url_num=i,
semaphore=network.HTTP_S,
log=log,
)
2026-01-19 16:52:57 -05:00
sport, event, href = (
2025-12-27 12:52:18 -05:00
ev["sport"],
ev["event"],
2026-01-19 16:52:57 -05:00
ev["href"],
2025-12-27 12:52:18 -05:00
)
2025-12-24 01:54:02 -05:00
2025-12-27 12:52:18 -05:00
key = f"[{sport}] {event} ({TAG})"
2025-12-24 01:54:02 -05:00
2025-12-27 12:52:18 -05:00
tvg_id, logo = leagues.get_tvg_info(sport, event)
2025-12-24 01:54:02 -05:00
2025-12-27 12:52:18 -05:00
entry = {
"url": url,
"logo": logo,
"base": iframe,
"timestamp": now.timestamp(),
"id": tvg_id or "Live.Event.us",
2026-01-19 16:52:57 -05:00
"href": href,
2025-12-27 12:52:18 -05:00
}
cached_urls[key] = entry
if url:
valid_count += 1
2025-12-24 01:54:02 -05:00
2025-12-27 12:52:18 -05:00
urls[key] = entry
2025-12-24 01:54:02 -05:00
2025-12-27 12:52:18 -05:00
if new_count := valid_count - cached_count:
2025-12-24 01:54:02 -05:00
log.info(f"Collected and cached {new_count} new event(s)")
else:
log.info("No new events found")
CACHE_FILE.write(cached_urls)