iptv/M3U8/scrapers/streamsgate.py

222 lines
5.2 KiB
Python
Raw Normal View History

2026-03-20 12:52:11 -04:00
import asyncio
import re
2025-12-08 13:21:43 -05:00
from functools import partial
2026-03-20 12:52:11 -04:00
from itertools import chain
2025-12-08 13:21:43 -05:00
from typing import Any
2026-03-20 12:52:11 -04:00
from urllib.parse import urljoin
2025-12-08 13:21:43 -05:00
from selectolax.parser import HTMLParser
2025-12-08 13:21:43 -05:00
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 = "STRMSGATE"
2025-12-13 16:57:14 -05:00
CACHE_FILE = Cache(TAG, exp=10_800)
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
API_FILE = Cache(f"{TAG}-api", exp=19_800)
2025-12-08 13:21:43 -05:00
BASE_URL = "https://streamsgates.io"
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
SPORT_URLS = [
urljoin(BASE_URL, f"data/{sport}.json")
for sport in [
# "cfb",
"mlb",
"nba",
# "nfl",
"nhl",
"soccer",
"ufc",
]
]
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
def get_event(t1: str, t2: str) -> str:
match t1:
case "RED ZONE":
return "NFL RedZone"
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
case "TBD":
return "TBD"
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
case _:
return f"{t1.strip()} vs {t2.strip()}"
2025-12-08 13:21:43 -05:00
async def process_event(url: str, url_num: int) -> tuple[str | None, str | None]:
2026-04-11 19:31:42 -04:00
nones = None, None
if not (event_data := await network.request(url, log=log)):
log.warning(f"URL {url_num}) Failed to load url.")
2026-04-11 19:31:42 -04:00
return nones
soup_1 = HTMLParser(event_data.content)
ifr = soup_1.css_first("iframe")
if not ifr or not (src := ifr.attributes.get("src")):
log.warning(f"URL {url_num}) No iframe element found.")
2026-04-11 19:31:42 -04:00
return nones
ifr_src = f"https:{src}" if src.startswith("//") else src
if not (
ifr_src_data := await network.request(
ifr_src,
headers={"Referer": url},
log=log,
)
):
log.warning(f"URL {url_num}) Failed to load iframe source. (IFR1)")
2026-04-11 19:31:42 -04:00
return nones
valid_m3u8 = re.compile(r"file:\s+(\'|\")([^\"]*)(\'|\")", re.I)
if not (match := valid_m3u8.search(ifr_src_data.text)):
log.warning(f"URL {url_num}) No source found.")
2026-04-11 19:31:42 -04:00
return nones
log.info(f"URL {url_num}) Captured M3U8")
return match[2], ifr_src
2026-03-20 12:52:11 -04:00
async def refresh_api_cache(now_ts: float) -> list[dict[str, Any]]:
tasks = [network.request(url, log=log) for url in SPORT_URLS]
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
results = await asyncio.gather(*tasks)
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
if not (data := [*chain.from_iterable(r.json() for r in results if r)]):
return [{"timestamp": now_ts}]
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
for ev in data:
ev["ts"] = ev.pop("timestamp")
2026-03-03 19:48:15 -05:00
2026-03-20 12:52:11 -04:00
data[-1]["timestamp"] = now_ts
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
return data
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
now = Time.clean(Time.now())
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
if not (api_data := API_FILE.load(per_entry=False, index=-1)):
log.info("Refreshing API cache")
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
api_data = await refresh_api_cache(now.timestamp())
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
API_FILE.write(api_data)
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
events = []
2025-12-18 03:04:11 -05:00
start_dt = now.delta(minutes=-30)
end_dt = now.delta(minutes=30)
2025-12-18 03:04:11 -05:00
2026-03-20 12:52:11 -04:00
for stream_group in api_data:
date = stream_group.get("time")
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
sport = stream_group.get("league")
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
t1, t2 = stream_group.get("away"), stream_group.get("home")
2025-12-08 13:21:43 -05:00
if not (t1 and t2):
continue
2026-03-20 12:52:11 -04:00
event = get_event(t1, t2)
2025-12-08 13:21:43 -05:00
2026-03-20 12:52:11 -04:00
if not (date and sport):
continue
if f"[{sport}] {event} ({TAG})" in cached_keys:
continue
event_dt = Time.from_str(date, timezone="UTC")
if not start_dt <= event_dt <= end_dt:
continue
if not (streams := stream_group.get("streams")):
continue
if not (url := streams[0].get("url")):
continue
events.append(
{
"sport": sport,
"event": event,
"link": url,
"timestamp": event_dt.timestamp(),
}
)
2025-12-08 13:21:43 -05:00
return events
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-28 15:42:50 -05:00
valid_urls = {k: v for k, v in cached_urls.items() if v["url"]}
2025-12-18 04:14:54 -05:00
2026-02-28 15:42:50 -05:00
valid_count = cached_count = len(valid_urls)
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 "{BASE_URL}"')
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)")
for i, ev in enumerate(events, start=1):
handler = partial(
process_event,
url=(link := ev["link"]),
url_num=i,
)
url, iframe = await network.safe_process(
handler,
url_num=i,
semaphore=network.PW_S,
log=log,
)
sport, event, ts = (
ev["sport"],
ev["event"],
ev["timestamp"],
)
key = f"[{sport}] {event} ({TAG})"
tvg_id, logo = leagues.get_tvg_info(sport, event)
entry = {
"url": url,
"logo": logo,
"base": iframe,
"timestamp": ts,
"id": tvg_id or "Live.Event.us",
"link": link,
}
cached_urls[key] = entry
if url:
valid_count += 1
urls[key] = entry
2025-12-08 13:21:43 -05:00
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)