mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-12-02 16:32:51 +01:00
add test, add geo verification proxy support
This commit is contained in:
parent
31b0294bd6
commit
fc79d7325c
|
@ -2244,9 +2244,17 @@ class BiliBiliSearchPageIE(BilibiliBaseIE):
|
||||||
'id': 'yt - dlp 下载器',
|
'id': 'yt - dlp 下载器',
|
||||||
'title': 'yt - dlp 下载器',
|
'title': 'yt - dlp 下载器',
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
'url': r'https://search.bilibili.com/bangumi?keyword=%E5%AD%A4%E7%8B%AC%E6%91%87%E6%BB%9A&from_source=webtop_search&spm_id_from=333.1007&search_source=5',
|
||||||
|
'playlist_mincount': 1,
|
||||||
|
'info_dict': {
|
||||||
|
'id': '孤独摇滚',
|
||||||
|
'title': '孤独摇滚',
|
||||||
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
headers = self.geo_verification_headers()
|
||||||
entries = []
|
entries = []
|
||||||
if not self._get_cookies('https://api.bilibili.com').get('buvid3'):
|
if not self._get_cookies('https://api.bilibili.com').get('buvid3'):
|
||||||
self._set_cookie('.bilibili.com', 'buvid3', f'{uuid.uuid4()}infoc')
|
self._set_cookie('.bilibili.com', 'buvid3', f'{uuid.uuid4()}infoc')
|
||||||
|
@ -2267,15 +2275,18 @@ def _real_extract(self, url):
|
||||||
r'https://api.bilibili.com/x/web-interface/search/all/v2',
|
r'https://api.bilibili.com/x/web-interface/search/all/v2',
|
||||||
video_id=playlist_id, query={
|
video_id=playlist_id, query={
|
||||||
'keyword': playlist_id,
|
'keyword': playlist_id,
|
||||||
})
|
}, headers=headers)
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, HTTPError) and e.cause.status == 412:
|
if isinstance(e.cause, HTTPError) and e.cause.status == 412:
|
||||||
raise ExtractorError('Request is blocked by server (-412).', expected=True)
|
raise ExtractorError('Request is blocked by server (-412).', expected=True)
|
||||||
status_code = search_all_result['code']
|
status_code = search_all_result['code']
|
||||||
if status_code == -400:
|
if status_code == -400:
|
||||||
raise ExtractorError('Invalid request (-400).', expected=True)
|
raise ExtractorError('Invalid request (-400).', expected=True)
|
||||||
|
result_list = search_all_result['data'].get('result')
|
||||||
result_list = search_all_result['data']['result']
|
if result_list is None:
|
||||||
|
self.write_debug(f'Response: {search_all_result}')
|
||||||
|
raise ExtractorError(f'Result not found in the response ({status_code}).',
|
||||||
|
expected=True)
|
||||||
for result_type_dict in result_list:
|
for result_type_dict in result_list:
|
||||||
for result_data in result_type_dict['data']:
|
for result_data in result_type_dict['data']:
|
||||||
if result_data['type'] == 'video':
|
if result_data['type'] == 'video':
|
||||||
|
@ -2293,14 +2304,18 @@ def _real_extract(self, url):
|
||||||
video_id=playlist_id, query={
|
video_id=playlist_id, query={
|
||||||
'keyword': playlist_id,
|
'keyword': playlist_id,
|
||||||
'search_type': search_type_mapping[search_type],
|
'search_type': search_type_mapping[search_type],
|
||||||
})
|
}, headers=headers)
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, HTTPError) and e.cause.status == 412:
|
if isinstance(e.cause, HTTPError) and e.cause.status == 412:
|
||||||
raise ExtractorError('Request is blocked by server (-412).', expected=True)
|
raise ExtractorError('Request is blocked by server (-412).', expected=True)
|
||||||
status_code = search_type_result['code']
|
status_code = search_type_result['code']
|
||||||
if status_code == -400:
|
if status_code == -400:
|
||||||
raise ExtractorError('Invalid request (-400).', expected=True)
|
raise ExtractorError('Invalid request (-400).', expected=True)
|
||||||
result_list = search_type_result['data']['result']
|
result_list = search_type_result['data'].get('result')
|
||||||
|
if result_list is None:
|
||||||
|
self.write_debug(f'Response: {search_type_result}')
|
||||||
|
raise ExtractorError(f'Result not found in the response ({status_code}).',
|
||||||
|
expected=True)
|
||||||
for result_data in result_list:
|
for result_data in result_list:
|
||||||
if result_data['type'] == 'video':
|
if result_data['type'] == 'video':
|
||||||
entries.append(self.url_result(result_data['arcurl']))
|
entries.append(self.url_result(result_data['arcurl']))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user