iptv/M3U8/scrapers/webcast.py

174 lines
4.2 KiB
Python
Raw Normal View History

import asyncio
2026-02-27 18:35:33 -05:00
import re
2025-12-08 13:21:43 -05:00
from functools import partial
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]] = {}
2025-12-15 21:59:13 -05:00
TAG = "WEBCAST"
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
CACHE_FILE = Cache(TAG, exp=19_800)
2025-12-08 13:21:43 -05:00
BASE_URLS = {
2026-02-27 15:39:06 -05:00
"MLB": "https://mlbwebcast.com",
# "NFL": "https://nflwebcast.com",
"NHL": "https://slapstreams.com",
}
2025-12-08 13:21:43 -05:00
def fix_event(s: str) -> str:
return " vs ".join(s.split("@"))
2026-02-27 18:35:33 -05:00
async def process_event(url: str, url_num: int) -> str | None:
if not (event_data := await network.request(url, log=log)):
2026-03-03 19:48:15 -05:00
log.warning(f"URL {url_num}) Failed to load url.")
2026-02-27 18:35:33 -05:00
return
soup = HTMLParser(event_data.content)
if not (iframe := soup.css_first('iframe[name="srcFrame"]')):
log.warning(f"URL {url_num}) No iframe element found.")
return
if not (iframe_src := iframe.attributes.get("src")):
log.warning(f"URL {url_num}) No iframe source found.")
return
if not (
iframe_src_data := await network.request(
iframe_src,
headers={"Referer": url},
log=log,
)
):
2026-03-03 19:48:15 -05:00
log.warning(f"URL {url_num}) Failed to load iframe source.")
2026-02-27 18:35:33 -05:00
return
pattern = re.compile(r"source:\s+(\'|\")(.*)(\'|\")", re.I)
if not (match := pattern.search(iframe_src_data.text)):
log.warning(f"URL {url_num}) No Clappr source found.")
return
log.info(f"URL {url_num}) Captured M3U8")
return match[2]
2026-02-27 19:19:30 -05:00
async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
tasks = [network.request(url, log=log) for url in BASE_URLS.values()]
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
results = await asyncio.gather(*tasks)
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
events = []
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
if not (
soups := [(HTMLParser(html.content), html.url) for html in results if html]
):
return events
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
for soup, url in soups:
sport = next((k for k, v in BASE_URLS.items() if v == url), "Live Event")
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
for row in soup.css("tr.singele_match_date"):
if not (vs_node := row.css_first("td.teamvs a")):
continue
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
event_name = vs_node.text(strip=True)
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
for span in vs_node.css("span.mtdate"):
date = span.text(strip=True)
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
event_name = event_name.replace(date, "").strip()
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
if not (href := vs_node.attributes.get("href")):
continue
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
event = fix_event(event_name)
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
if f"[{sport}] {event} ({TAG})" in cached_keys:
continue
2025-12-08 13:21:43 -05:00
2026-02-27 19:19:30 -05:00
events.append(
{
"sport": sport,
"event": event,
"link": href,
}
)
2025-12-08 13:21:43 -05:00
return events
2026-02-27 18:35:33 -05:00
async def scrape() -> None:
2025-12-08 13:21:43 -05:00
cached_urls = CACHE_FILE.load()
2025-12-18 04:14:54 -05:00
2026-02-27 18:35:33 -05:00
valid_urls = {k: v for k, v in cached_urls.items() if v["url"]}
valid_count = cached_count = len(valid_urls)
2025-12-18 04:14:54 -05:00
2026-02-27 18:35:33 -05:00
urls.update(valid_urls)
2025-12-08 13:21:43 -05:00
log.info(f"Loaded {cached_count} event(s) from cache")
log.info(f'Scraping from "{' & '.join(BASE_URLS.values())}"')
2025-12-08 13:21:43 -05:00
2026-03-02 00:50:28 -05:00
if events := await get_events(cached_urls.keys()):
log.info(f"Processing {len(events)} new URL(s)")
2026-02-27 19:19:30 -05:00
now = Time.clean(Time.now())
2026-02-27 18:35:33 -05:00
for i, ev in enumerate(events, start=1):
handler = partial(
process_event,
url=(link := ev["link"]),
url_num=i,
)
url = await network.safe_process(
handler,
url_num=i,
semaphore=network.PW_S,
log=log,
)
2026-02-27 19:19:30 -05:00
sport, event = ev["sport"], ev["event"]
2026-02-27 18:35:33 -05:00
key = f"[{sport}] {event} ({TAG})"
tvg_id, logo = leagues.get_tvg_info(sport, event)
entry = {
"url": url,
"logo": logo,
"base": BASE_URLS[sport],
2026-02-27 19:19:30 -05:00
"timestamp": now.timestamp(),
2026-02-27 18:35:33 -05:00
"id": tvg_id or "Live.Event.us",
"link": link,
}
cached_urls[key] = entry
if url:
valid_count += 1
urls[key] = entry
2026-03-02 00:50:28 -05:00
log.info(f"Collected and cached {valid_count - cached_count} new event(s)")
2025-12-18 04:14:54 -05:00
2025-12-08 13:21:43 -05:00
else:
log.info("No new events found")
CACHE_FILE.write(cached_urls)