iptv/M3U8/scrapers/streamsgate.py

188 lines
4.6 KiB
Python
Raw Normal View History

2025-12-08 13:21:43 -05:00
import asyncio
from functools import partial
from itertools import chain
from typing import Any
from urllib.parse import urljoin
from playwright.async_api import Browser
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
API_FILE = Cache(f"{TAG}-api", exp=19_800)
2025-12-08 13:21:43 -05:00
BASE_URL = "https://streamingon.org"
2026-03-04 18:15:39 -05:00
SPORT_URLS = [
urljoin(BASE_URL, f"data/{sport}.json")
for sport in [
"boxing",
# "cfb",
"f1",
"mlb",
"nba",
# "nfl",
"nhl",
"soccer",
"ufc",
]
2025-12-08 13:21:43 -05:00
]
def get_event(t1: str, t2: str) -> str:
match t1:
case "RED ZONE":
return "NFL RedZone"
case "TBD":
return "TBD"
case _:
return f"{t1.strip()} vs {t2.strip()}"
2025-12-18 03:04:11 -05:00
async def refresh_api_cache(now_ts: float) -> list[dict[str, Any]]:
2026-03-04 18:15:39 -05:00
tasks = [network.request(url, log=log) for url in SPORT_URLS]
2025-12-08 13:21:43 -05:00
results = await asyncio.gather(*tasks)
2025-12-18 12:51:16 -05: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
for ev in data:
ev["ts"] = ev.pop("timestamp")
2025-12-12 10:46:56 -05:00
data[-1]["timestamp"] = now_ts
2025-12-08 13:21:43 -05:00
return data
2025-12-18 03:04:11 -05:00
async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
2025-12-08 13:21:43 -05:00
now = Time.clean(Time.now())
if not (api_data := API_FILE.load(per_entry=False, index=-1)):
2026-03-03 19:48:15 -05:00
log.info("Refreshing API cache")
2025-12-18 03:04:11 -05:00
api_data = await refresh_api_cache(now.timestamp())
2025-12-08 13:21:43 -05:00
API_FILE.write(api_data)
events = []
2025-12-16 20:39:52 -05:00
start_dt = now.delta(hours=-1)
2025-12-16 14:27:05 -05:00
end_dt = now.delta(minutes=5)
2025-12-08 13:21:43 -05:00
for stream_group in api_data:
2025-12-22 17:08:41 -05:00
date = stream_group.get("time")
2025-12-08 13:21:43 -05:00
sport = stream_group.get("league")
t1, t2 = stream_group.get("away"), stream_group.get("home")
2025-12-18 03:04:11 -05:00
event = get_event(t1, t2)
2025-12-22 17:08:41 -05:00
if not (date and sport):
2025-12-18 03:04:11 -05:00
continue
2025-12-18 12:51:16 -05:00
if f"[{sport}] {event} ({TAG})" in cached_keys:
2025-12-18 03:04:11 -05:00
continue
2025-12-22 17:08:41 -05:00
event_dt = Time.from_str(date, timezone="UTC")
2025-12-08 13:21:43 -05:00
2025-12-16 14:27:05 -05:00
if not start_dt <= event_dt <= end_dt:
2025-12-08 13:21:43 -05:00
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(),
}
)
return events
async def scrape(browser: Browser) -> 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)")
2026-01-24 11:50:43 -05:00
async with network.event_context(browser, stealth=False) as context:
for i, ev in enumerate(events, start=1):
async with network.event_page(context) as page:
2025-12-23 13:28:56 -05:00
handler = partial(
network.process_event,
url=(link := ev["link"]),
2025-12-23 13:28:56 -05:00
url_num=i,
page=page,
2025-12-23 13:28:56 -05:00
log=log,
2025-12-16 20:39:52 -05:00
)
2025-12-08 13:21:43 -05:00
2025-12-23 13:28:56 -05:00
url = await network.safe_process(
handler,
url_num=i,
semaphore=network.PW_S,
log=log,
)
2026-02-28 15:42:50 -05:00
sport, event, ts = (
ev["sport"],
ev["event"],
ev["timestamp"],
)
key = f"[{sport}] {event} ({TAG})"
2025-12-23 13:28:56 -05:00
2026-02-28 15:42:50 -05:00
tvg_id, logo = leagues.get_tvg_info(sport, event)
2025-12-08 13:21:43 -05:00
2026-02-28 15:42:50 -05:00
entry = {
"url": url,
"logo": logo,
"base": "https://instreams.click/",
"timestamp": ts,
"id": tvg_id or "Live.Event.us",
"link": link,
}
cached_urls[key] = entry
if url:
valid_count += 1
2025-12-08 13:21:43 -05:00
2026-02-28 15:42:50 -05:00
entry["url"] = url.split("&e")[0]
2025-12-08 13:21:43 -05:00
2026-02-28 15:42:50 -05:00
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)