| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  |  Youtube (Videos) | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  | from functools import reduce | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  | from json import loads, dumps | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import quote_plus | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://www.youtube.com/', | 
					
						
							|  |  |  |     "wikidata_id": 'Q866', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://developers.google.com/youtube/v3/docs/search/list?apix=true', | 
					
						
							|  |  |  |     "use_official_api": False, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'HTML', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | # engine dependent config | 
					
						
							|  |  |  | categories = ['videos', 'music'] | 
					
						
							|  |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  | language_support = False | 
					
						
							| 
									
										
										
										
											2016-10-30 20:26:38 +01:00
										 |  |  | time_range_support = True | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # search-url | 
					
						
							|  |  |  | base_url = 'https://www.youtube.com/results' | 
					
						
							| 
									
										
										
										
											2022-07-25 12:53:56 +02:00
										 |  |  | search_url = base_url + '?search_query={query}&page={page}' | 
					
						
							| 
									
										
										
										
											2016-10-30 20:26:38 +01:00
										 |  |  | time_range_url = '&sp=EgII{time_range}%253D%253D' | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  | # the key seems to be constant | 
					
						
							|  |  |  | next_page_url = 'https://www.youtube.com/youtubei/v1/search?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8' | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | time_range_dict = {'day': 'Ag', 'week': 'Aw', 'month': 'BA', 'year': 'BQ'} | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | base_youtube_url = 'https://www.youtube.com/watch?v=' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 10:12:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | # do search-request | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2022-07-25 12:53:56 +02:00
										 |  |  |     params['cookies']['CONSENT'] = "YES+" | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |     if not params['engine_data'].get('next_page_token'): | 
					
						
							|  |  |  |         params['url'] = search_url.format(query=quote_plus(query), page=params['pageno']) | 
					
						
							|  |  |  |         if params['time_range'] in time_range_dict: | 
					
						
							|  |  |  |             params['url'] += time_range_url.format(time_range=time_range_dict[params['time_range']]) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         params['url'] = next_page_url | 
					
						
							|  |  |  |         params['method'] = 'POST' | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         params['data'] = dumps( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'context': {"client": {"clientName": "WEB", "clientVersion": "2.20210310.12.01"}}, | 
					
						
							|  |  |  |                 'continuation': params['engine_data']['next_page_token'], | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |         params['headers']['Content-Type'] = 'application/json' | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # get response from search-request | 
					
						
							|  |  |  | def response(resp): | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |     if resp.search_params.get('engine_data'): | 
					
						
							|  |  |  |         return parse_next_page_response(resp.text) | 
					
						
							|  |  |  |     return parse_first_page_response(resp.text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def parse_next_page_response(response_text): | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |     result_json = loads(response_text) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     for section in ( | 
					
						
							|  |  |  |         result_json['onResponseReceivedCommands'][0] | 
					
						
							|  |  |  |         .get('appendContinuationItemsAction')['continuationItems'][0] | 
					
						
							|  |  |  |         .get('itemSectionRenderer')['contents'] | 
					
						
							|  |  |  |     ): | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |         if 'videoRenderer' not in section: | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         section = section['videoRenderer'] | 
					
						
							|  |  |  |         content = "-" | 
					
						
							|  |  |  |         if 'descriptionSnippet' in section: | 
					
						
							|  |  |  |             content = ' '.join(x['text'] for x in section['descriptionSnippet']['runs']) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         results.append( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'url': base_youtube_url + section['videoId'], | 
					
						
							|  |  |  |                 'title': ' '.join(x['text'] for x in section['title']['runs']), | 
					
						
							|  |  |  |                 'content': content, | 
					
						
							|  |  |  |                 'author': section['ownerText']['runs'][0]['text'], | 
					
						
							|  |  |  |                 'length': section['lengthText']['simpleText'], | 
					
						
							|  |  |  |                 'template': 'videos.html', | 
					
						
							| 
									
										
										
										
											2022-02-13 16:12:46 +01:00
										 |  |  |                 'iframe_src': 'https://www.youtube-nocookie.com/embed/' + section['videoId'], | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 'thumbnail': section['thumbnail']['thumbnails'][-1]['url'], | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         token = ( | 
					
						
							|  |  |  |             result_json['onResponseReceivedCommands'][0] | 
					
						
							|  |  |  |             .get('appendContinuationItemsAction')['continuationItems'][1] | 
					
						
							|  |  |  |             .get('continuationItemRenderer')['continuationEndpoint'] | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |             .get('continuationCommand')['token'] | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         ) | 
					
						
							|  |  |  |         results.append( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 "engine_data": token, | 
					
						
							|  |  |  |                 "key": "next_page_token", | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |     except: | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |     return results | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | def parse_first_page_response(response_text): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     results_data = response_text[response_text.find('ytInitialData') :] | 
					
						
							|  |  |  |     results_data = results_data[results_data.find('{') : results_data.find(';</script>')] | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  |     results_json = loads(results_data) if results_data else {} | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     sections = ( | 
					
						
							|  |  |  |         results_json.get('contents', {}) | 
					
						
							|  |  |  |         .get('twoColumnSearchResultsRenderer', {}) | 
					
						
							|  |  |  |         .get('primaryContents', {}) | 
					
						
							|  |  |  |         .get('sectionListRenderer', {}) | 
					
						
							|  |  |  |         .get('contents', []) | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for section in sections: | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |         if "continuationItemRenderer" in section: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             next_page_token = ( | 
					
						
							|  |  |  |                 section["continuationItemRenderer"] | 
					
						
							|  |  |  |                 .get("continuationEndpoint", {}) | 
					
						
							|  |  |  |                 .get("continuationCommand", {}) | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |                 .get("token", "") | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             ) | 
					
						
							| 
									
										
										
										
											2021-03-15 17:21:46 +01:00
										 |  |  |             if next_page_token: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 results.append( | 
					
						
							|  |  |  |                     { | 
					
						
							|  |  |  |                         "engine_data": next_page_token, | 
					
						
							|  |  |  |                         "key": "next_page_token", | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  |         for video_container in section.get('itemSectionRenderer', {}).get('contents', []): | 
					
						
							|  |  |  |             video = video_container.get('videoRenderer', {}) | 
					
						
							|  |  |  |             videoid = video.get('videoId') | 
					
						
							|  |  |  |             if videoid is not None: | 
					
						
							|  |  |  |                 url = base_youtube_url + videoid | 
					
						
							|  |  |  |                 thumbnail = 'https://i.ytimg.com/vi/' + videoid + '/hqdefault.jpg' | 
					
						
							| 
									
										
										
										
											2019-07-31 08:39:40 +02:00
										 |  |  |                 title = get_text_from_json(video.get('title', {})) | 
					
						
							|  |  |  |                 content = get_text_from_json(video.get('descriptionSnippet', {})) | 
					
						
							| 
									
										
										
										
											2020-06-09 20:31:51 +02:00
										 |  |  |                 author = get_text_from_json(video.get('ownerText', {})) | 
					
						
							|  |  |  |                 length = get_text_from_json(video.get('lengthText', {})) | 
					
						
							| 
									
										
										
										
											2019-03-27 03:33:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 # append result | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 results.append( | 
					
						
							|  |  |  |                     { | 
					
						
							|  |  |  |                         'url': url, | 
					
						
							|  |  |  |                         'title': title, | 
					
						
							|  |  |  |                         'content': content, | 
					
						
							|  |  |  |                         'author': author, | 
					
						
							|  |  |  |                         'length': length, | 
					
						
							|  |  |  |                         'template': 'videos.html', | 
					
						
							| 
									
										
										
										
											2022-02-13 16:12:46 +01:00
										 |  |  |                         'iframe_src': 'https://www.youtube-nocookie.com/embed/' + videoid, | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                         'thumbnail': thumbnail, | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2015-05-31 00:25:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							|  |  |  |     return results | 
					
						
							| 
									
										
										
										
											2019-07-31 08:39:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_text_from_json(element): | 
					
						
							|  |  |  |     if 'runs' in element: | 
					
						
							|  |  |  |         return reduce(lambda a, b: a + b.get('text', ''), element.get('runs'), '') | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return element.get('simpleText', '') |