| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  |  Dailymotion (Videos) | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | from datetime import datetime | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							| 
									
										
										
										
											2019-07-31 08:37:51 +02:00
										 |  |  | from searx.utils import match_language, html_to_text | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://www.dailymotion.com', | 
					
						
							|  |  |  |     "wikidata_id": 'Q769222', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://www.dailymotion.com/developer', | 
					
						
							|  |  |  |     "use_official_api": True, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'JSON', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  | categories = ['videos'] | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | # search-url | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  | # see http://www.dailymotion.com/doc/api/obj-video.html | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | search_url = 'https://api.dailymotion.com/videos?fields=created_time,title,description,duration,url,thumbnail_360_url,id&sort=relevance&limit=5&page={pageno}&{query}'  # noqa | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | embedded_url = ( | 
					
						
							|  |  |  |     '<iframe frameborder="0" width="540" height="304" ' | 
					
						
							|  |  |  |     + 'data-src="https://www.dailymotion.com/embed/video/{videoid}" allowfullscreen></iframe>' | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-01-30 00:01:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-06 03:51:38 +01:00
										 |  |  | supported_languages_url = 'https://api.dailymotion.com/languages' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | # do search-request | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2019-01-06 15:27:46 +01:00
										 |  |  |     if params['language'] == 'all': | 
					
						
							|  |  |  |         locale = 'en-US' | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         locale = match_language(params['language'], supported_languages) | 
					
						
							| 
									
										
										
										
											2014-09-07 17:14:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |     params['url'] = search_url.format( | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         query=urlencode({'search': query, 'localization': locale}), pageno=params['pageno'] | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | # get response from search-request | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  |     search_res = loads(resp.text) | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return empty array if there are no results | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  |     if 'list' not in search_res: | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  |         return [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # parse results | 
					
						
							| 
									
										
										
										
											2013-12-30 22:42:37 +01:00
										 |  |  |     for res in search_res['list']: | 
					
						
							|  |  |  |         title = res['title'] | 
					
						
							|  |  |  |         url = res['url'] | 
					
						
							| 
									
										
										
										
											2019-07-31 08:37:51 +02:00
										 |  |  |         content = html_to_text(res['description']) | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  |         thumbnail = res['thumbnail_360_url'] | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |         publishedDate = datetime.fromtimestamp(res['created_time'], None) | 
					
						
							|  |  |  |         embedded = embedded_url.format(videoid=res['id']) | 
					
						
							| 
									
										
										
										
											2014-01-05 13:55:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-02 11:43:12 +02:00
										 |  |  |         # http to https | 
					
						
							|  |  |  |         thumbnail = thumbnail.replace("http://", "https://") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         results.append( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'template': 'videos.html', | 
					
						
							|  |  |  |                 'url': url, | 
					
						
							|  |  |  |                 'title': title, | 
					
						
							|  |  |  |                 'content': content, | 
					
						
							|  |  |  |                 'publishedDate': publishedDate, | 
					
						
							|  |  |  |                 'embedded': embedded, | 
					
						
							|  |  |  |                 'thumbnail': thumbnail, | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:36:53 +02:00
										 |  |  |     # return results | 
					
						
							|  |  |  |     return results | 
					
						
							| 
									
										
										
										
											2016-11-06 03:51:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # get supported languages from their site | 
					
						
							| 
									
										
										
										
											2016-12-15 07:34:43 +01:00
										 |  |  | def _fetch_supported_languages(resp): | 
					
						
							| 
									
										
										
										
											2016-11-06 03:51:38 +01:00
										 |  |  |     supported_languages = {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-15 07:34:43 +01:00
										 |  |  |     response_json = loads(resp.text) | 
					
						
							| 
									
										
										
										
											2016-11-06 03:51:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for language in response_json['list']: | 
					
						
							|  |  |  |         supported_languages[language['code']] = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         name = language['native_name'] | 
					
						
							|  |  |  |         if name: | 
					
						
							|  |  |  |             supported_languages[language['code']]['name'] = name | 
					
						
							|  |  |  |         english_name = language['name'] | 
					
						
							|  |  |  |         if english_name: | 
					
						
							|  |  |  |             supported_languages[language['code']]['english_name'] = english_name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return supported_languages |