mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-31 10:37:06 -04:00 
			
		
		
		
	The language_support variable is set to True by default, and set to False in only 5 engines. Except the documentation and the /config URL, this variable is not used. This commit remove the variable definition in the engines, and set value according to supported_languages length: False when the length is 0, True otherwise. Close #2485
		
			
				
	
	
		
			97 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # SPDX-License-Identifier: AGPL-3.0-or-later
 | |
| """
 | |
|  Youtube (Videos)
 | |
| """
 | |
| 
 | |
| from functools import reduce
 | |
| from json import loads
 | |
| from urllib.parse import quote_plus
 | |
| 
 | |
| # 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',
 | |
| }
 | |
| 
 | |
| # engine dependent config
 | |
| categories = ['videos', 'music']
 | |
| paging = True
 | |
| time_range_support = True
 | |
| 
 | |
| # search-url
 | |
| base_url = 'https://www.youtube.com/results'
 | |
| search_url = base_url + '?search_query={query}&page={page}'
 | |
| time_range_url = '&sp=EgII{time_range}%253D%253D'
 | |
| time_range_dict = {'day': 'Ag',
 | |
|                    'week': 'Aw',
 | |
|                    'month': 'BA',
 | |
|                    'year': 'BQ'}
 | |
| 
 | |
| embedded_url = '<iframe width="540" height="304" ' +\
 | |
|     'data-src="https://www.youtube-nocookie.com/embed/{videoid}" ' +\
 | |
|     'frameborder="0" allowfullscreen></iframe>'
 | |
| 
 | |
| base_youtube_url = 'https://www.youtube.com/watch?v='
 | |
| 
 | |
| 
 | |
| # do search-request
 | |
| def request(query, params):
 | |
|     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']])
 | |
| 
 | |
|     return params
 | |
| 
 | |
| 
 | |
| # get response from search-request
 | |
| def response(resp):
 | |
|     results = []
 | |
| 
 | |
|     results_data = resp.text[resp.text.find('ytInitialData'):]
 | |
|     results_data = results_data[results_data.find('{'):results_data.find(';</script>')]
 | |
| 
 | |
|     results_json = loads(results_data) if results_data else {}
 | |
|     sections = results_json.get('contents', {})\
 | |
|                            .get('twoColumnSearchResultsRenderer', {})\
 | |
|                            .get('primaryContents', {})\
 | |
|                            .get('sectionListRenderer', {})\
 | |
|                            .get('contents', [])
 | |
| 
 | |
|     for section in sections:
 | |
|         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'
 | |
|                 title = get_text_from_json(video.get('title', {}))
 | |
|                 content = get_text_from_json(video.get('descriptionSnippet', {}))
 | |
|                 embedded = embedded_url.format(videoid=videoid)
 | |
|                 author = get_text_from_json(video.get('ownerText', {}))
 | |
|                 length = get_text_from_json(video.get('lengthText', {}))
 | |
| 
 | |
|                 # append result
 | |
|                 results.append({'url': url,
 | |
|                                 'title': title,
 | |
|                                 'content': content,
 | |
|                                 'author': author,
 | |
|                                 'length': length,
 | |
|                                 'template': 'videos.html',
 | |
|                                 'embedded': embedded,
 | |
|                                 'thumbnail': thumbnail})
 | |
| 
 | |
|     # return results
 | |
|     return results
 | |
| 
 | |
| 
 | |
| 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', '')
 |