Compare commits

...

5 Commits

Author SHA1 Message Date
Leonhard Staut
bcace2019a impersonate=True in download_json, set age limit 2024-11-15 21:31:49 +01:00
Leonhard Staut
7cdc93e736 inline request params to download_json 2024-11-15 21:13:27 +01:00
Leonhard Staut
260f282b16 inline formats extraction 2024-11-15 21:04:57 +01:00
Leonhard Staut
fc9163c101 use raise_geo_restricted 2024-11-15 21:04:13 +01:00
Leonhard Staut
6c590de17a error map for more compact code 2024-11-15 21:03:40 +01:00

View File

@ -1,11 +1,11 @@
import re import re
from .common import InfoExtractor from .common import InfoExtractor
from ..networking import Request
from ..utils import ( from ..utils import (
ExtractorError, ExtractorError,
lowercase_escape, lowercase_escape,
url_or_none, url_or_none,
urlencode_postdata,
) )
@ -41,58 +41,48 @@ class ChaturbateIE(InfoExtractor):
'only_matching': True, 'only_matching': True,
}] }]
_ROOM_OFFLINE = 'Room is currently offline' _ERROR_MAP = {
_ROOM_PRIVATE = 'Room is currently in a private show' 'offline': 'Room is currently offline',
_ROOM_AWAY = 'Performer is currently away' 'private': 'Room is currently in a private show',
_ROOM_PASSWORD = 'Room is password protected' 'away': 'Performer is currently away',
_ROOM_HIDDEN = 'Hidden session in progress' 'password protected': 'Room is password protected',
_ROOM_BLOCKED = 'Room is not avaiable in this region' 'hidden': 'Hidden session in progress',
}
def _extract_from_api(self, video_id, tld): def _extract_from_api(self, video_id, tld):
req = Request( response = self._download_json(
f'https://chaturbate.{tld}/get_edge_hls_url_ajax/', f'https://chaturbate.{tld}/get_edge_hls_url_ajax/', video_id,
data=f'room_slug={video_id}'.encode(), data=urlencode_postdata({'room_slug': video_id}),
headers={ headers={
**self.geo_verification_headers(),
'X-Requested-With': 'XMLHttpRequest', 'X-Requested-With': 'XMLHttpRequest',
'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'application/json',
}, }, fatal=False, impersonate=True) or {}
)
response = self._download_json(req, video_id, fatal=False)
status = response.get('room_status') status = response.get('room_status')
if status == 'offline': if status != 'public':
raise ExtractorError(self._ROOM_OFFLINE, expected=True) if error := self._ERROR_MAP.get(status):
elif status == 'private': raise ExtractorError(error, expected=True)
raise ExtractorError(self._ROOM_PRIVATE, expected=True) self.report_warning('Falling back to webpage extraction')
elif status == 'away':
raise ExtractorError(self._ROOM_AWAY, expected=True)
elif status == 'hidden':
raise ExtractorError(self._ROOM_HIDDEN, expected=True)
elif status == 'password protected':
raise ExtractorError(self._ROOM_PASSWORD, expected=True)
elif status != 'public':
return None return None
m3u8_url = response.get('url') m3u8_url = response.get('url')
if not m3u8_url: if not m3u8_url:
raise ExtractorError(self._ROOM_BLOCKED, expected=True) self.raise_geo_restricted()
formats = self._extract_m3u8_formats(
m3u8_url, video_id, ext='mp4',
fatal=False, live=True)
return { return {
'id': video_id, 'id': video_id,
'title': video_id, 'title': video_id,
'thumbnail': f'https://roomimg.stream.highwebmedia.com/ri/{video_id}.jpg', 'thumbnail': f'https://roomimg.stream.highwebmedia.com/ri/{video_id}.jpg',
'is_live': True, 'is_live': True,
'formats': formats, 'age_limit': 18,
'formats': self._extract_m3u8_formats(m3u8_url, video_id, ext='mp4', live=True),
} }
def _extract_from_webpage(self, video_id, tld): def _extract_from_webpage(self, video_id, tld):
webpage = self._download_webpage( webpage = self._download_webpage(
f'https://chaturbate.{tld}/{video_id}/', video_id, f'https://chaturbate.{tld}/{video_id}/', video_id,
headers=self.geo_verification_headers()) headers=self.geo_verification_headers(), impersonate=True)
found_m3u8_urls = [] found_m3u8_urls = []
@ -130,8 +120,8 @@ class ChaturbateIE(InfoExtractor):
webpage, 'error', group='error', default=None) webpage, 'error', group='error', default=None)
if not error: if not error:
if any(p in webpage for p in ( if any(p in webpage for p in (
self._ROOM_OFFLINE, 'offline_tipping', 'tip_offline')): self._ERROR_MAP['offline'], 'offline_tipping', 'tip_offline')):
error = self._ROOM_OFFLINE error = self._ERROR_MAP['offline']
if error: if error:
raise ExtractorError(error, expected=True) raise ExtractorError(error, expected=True)
raise ExtractorError('Unable to find stream URL') raise ExtractorError('Unable to find stream URL')
@ -161,7 +151,4 @@ class ChaturbateIE(InfoExtractor):
def _real_extract(self, url): def _real_extract(self, url):
video_id, tld = self._match_valid_url(url).group('id', 'tld') video_id, tld = self._match_valid_url(url).group('id', 'tld')
extraction = self._extract_from_api(video_id, tld) return self._extract_from_api(video_id, tld) or self._extract_from_webpage(video_id, tld)
if extraction is None:
extraction = self._extract_from_webpage(video_id, tld)
return extraction