mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-01-07 11:05:51 +01:00
[ie/niconico] raise_login_required() for all possible availabilities
This commit is contained in:
parent
efe4b7101a
commit
1e23756e50
@ -1053,6 +1053,14 @@ def _real_extract(self, url):
|
||||
|
||||
live_status, availability = self._check_status_and_availability(embedded_data, video_id)
|
||||
|
||||
if availability == 'premium_only':
|
||||
self.raise_login_required('This video requires premium', metadata_available=True)
|
||||
elif availability == 'subscriber_only':
|
||||
self.raise_login_required('This video is for members only', metadata_available=True)
|
||||
elif availability == 'needs_auth':
|
||||
# PPV or tickets for limited time viewing
|
||||
self.raise_login_required('This video requires additional steps to watch', metadata_available=True)
|
||||
|
||||
latency = try_get(self._configuration_arg('latency'), lambda x: x[0])
|
||||
if latency not in self._KNOWN_LATENCY:
|
||||
latency = 'high'
|
||||
@ -1098,11 +1106,13 @@ def _check_status_and_availability(self, embedded_data, video_id):
|
||||
return live_status, self._availability()
|
||||
|
||||
if is_member_free is False:
|
||||
msg = 'You cannot access the paid content, thus the video may be blank.'
|
||||
availability = {'needs_auth': True}
|
||||
msg = 'Paid content cannot be accessed, the video may be blank.'
|
||||
else:
|
||||
msg = 'You cannot access restricted content, thus a part of the video or the entire video may be blank.'
|
||||
availability = {'needs_subscription': True}
|
||||
msg = 'Restricted content cannot be accessed, a part of the video or the entire video may be blank.'
|
||||
self.report_warning(msg, video_id)
|
||||
return live_status, self._availability(needs_subscription=True)
|
||||
return live_status, self._availability(**availability)
|
||||
|
||||
if traverse_obj(embedded_data, ('userProgramWatch', 'isCountryRestrictionTarget', {bool})):
|
||||
self.raise_geo_restricted(countries=self._GEO_COUNTRIES, metadata_available=True)
|
||||
@ -1147,11 +1157,4 @@ def _check_status_and_availability(self, embedded_data, video_id):
|
||||
] for x in rejected_reasons),
|
||||
})
|
||||
|
||||
if availability == 'premium_only':
|
||||
self.raise_login_required('This video requires premium', metadata_available=True)
|
||||
elif availability == 'subscriber_only':
|
||||
self.raise_login_required('This video is for members only', metadata_available=True)
|
||||
elif availability == 'needs_auth':
|
||||
self.raise_login_required(metadata_available=True)
|
||||
|
||||
return live_status, availability
|
||||
|
Loading…
Reference in New Issue
Block a user