2017-10-25 01:50:02 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
2025-02-22 22:43:49 +09:00
|
|
|
from datetime import datetime, timezone
|
|
|
|
try:
|
|
|
|
from zoneinfo import ZoneInfo # Python 3.9+
|
|
|
|
except ImportError:
|
|
|
|
from ..compat import compat_zoneinfo as ZoneInfo # Fallback for older versions
|
|
|
|
|
|
|
|
from ..utils import unified_timestamp, parse_iso8601
|
2017-10-25 01:50:02 +09:00
|
|
|
|
|
|
|
class StretchInternetIE(InfoExtractor):
|
2020-01-20 05:20:56 +09:00
|
|
|
_VALID_URL = r'https?://portal\.stretchinternet\.com/[^/]+/(?:portal|full)\.htm\?.*?\beventId=(?P<id>\d+)'
|
2017-10-25 01:50:02 +09:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
2021-03-01 22:00:03 +09:00
|
|
|
media_url = self._download_json(
|
|
|
|
'https://core.stretchlive.com/trinity/event/tcg/' + video_id,
|
|
|
|
video_id)[0]['media'][0]['url']
|
2025-02-22 22:43:49 +09:00
|
|
|
|
2017-12-09 19:58:08 +09:00
|
|
|
event = self._download_json(
|
2021-03-01 22:00:03 +09:00
|
|
|
'https://neo-client.stretchinternet.com/portal-ws/getEvent.json',
|
|
|
|
video_id, query={'eventID': video_id, 'token': 'asdf'})['event']
|
2017-12-09 19:58:08 +09:00
|
|
|
|
2017-10-25 01:50:02 +09:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
2020-01-20 05:20:56 +09:00
|
|
|
'title': event['title'],
|
2025-02-21 18:39:37 +09:00
|
|
|
'timestamp': self._parse_date(event.get('dateTimeString')),
|
2021-03-01 22:00:03 +09:00
|
|
|
'url': 'https://' + media_url,
|
|
|
|
'uploader_id': event.get('ownerID'),
|
2017-10-25 01:50:02 +09:00
|
|
|
}
|
2025-02-21 18:39:37 +09:00
|
|
|
|
|
|
|
def _parse_date(self, date_string):
|
2025-02-22 22:43:49 +09:00
|
|
|
"""Parses an ISO 8601 date string into a UNIX timestamp."""
|
|
|
|
if not date_string:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Try using youtube-dl's existing utilities
|
|
|
|
timestamp = unified_timestamp(date_string) or parse_iso8601(date_string)
|
|
|
|
if timestamp is not None:
|
|
|
|
return timestamp
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Manual parsing for cases not handled by utils
|
|
|
|
dt = datetime.strptime(date_string, '%Y-%m-%dT%H:%M:%S%z')
|
|
|
|
return int(dt.timestamp()) # UTC timestamp
|
|
|
|
except ValueError:
|
|
|
|
self._downloader.report_warning(f"Could not parse date string: {date_string}")
|
|
|
|
|
2025-02-21 18:39:37 +09:00
|
|
|
return None
|