| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2021-04-26 20:18:20 +02:00
										 |  |  | # lint: pylint | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  | """This is the implementation of the google images engine using the google
 | 
					
						
							|  |  |  | internal API used the Google Go Android app. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  | This internal API offer results in | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  | - JSON (_fmt:json) | 
					
						
							|  |  |  | - Protobuf (_fmt:pb) | 
					
						
							|  |  |  | - Protobuf compressed? (_fmt:pc) | 
					
						
							|  |  |  | - HTML (_fmt:html) | 
					
						
							|  |  |  | - Protobuf encoded in JSON (_fmt:jspb). | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							|  |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | from searx.engines.google import ( | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  |     get_lang_info, | 
					
						
							| 
									
										
										
										
											2020-07-08 00:46:03 +02:00
										 |  |  |     time_range_dict, | 
					
						
							| 
									
										
										
										
											2021-01-22 18:49:45 +01:00
										 |  |  |     detect_google_sorry, | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  | # pylint: disable=unused-import | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | from searx.engines.google import supported_languages_url, _fetch_supported_languages | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  | # pylint: enable=unused-import | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  |     "website": 'https://images.google.com', | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  |     "wikidata_id": 'Q521550', | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  |     "official_api_documentation": 'https://developers.google.com/custom-search', | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  |     "use_official_api": False, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  |     "results": 'JSON', | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2021-12-22 16:58:52 +01:00
										 |  |  | categories = ['images', 'web'] | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | use_locale_domain = True | 
					
						
							| 
									
										
										
										
											2016-07-18 17:25:40 +02:00
										 |  |  | time_range_support = True | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | safesearch = True | 
					
						
							| 
									
										
										
										
											2022-08-01 17:01:59 +02:00
										 |  |  | send_accept_language_header = True | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | filter_mapping = {0: 'images', 1: 'active', 2: 'active'} | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-08 00:46:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  |     """Google-Image search request""" | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     lang_info = get_lang_info(params, supported_languages, language_aliases, False) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     query_url = ( | 
					
						
							|  |  |  |         'https://' | 
					
						
							|  |  |  |         + lang_info['subdomain'] | 
					
						
							|  |  |  |         + '/search' | 
					
						
							|  |  |  |         + "?" | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  |         + urlencode( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'q': query, | 
					
						
							|  |  |  |                 'tbm': "isch", | 
					
						
							|  |  |  |                 **lang_info['params'], | 
					
						
							|  |  |  |                 'ie': "utf8", | 
					
						
							|  |  |  |                 'oe': "utf8", | 
					
						
							|  |  |  |                 'asearch': 'isch', | 
					
						
							|  |  |  |                 'async': '_fmt:json,p:1,ijn:' + str(params['pageno']), | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 00:22:05 +02:00
										 |  |  |     if params['time_range'] in time_range_dict: | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |         query_url += '&' + urlencode({'tbs': 'qdr:' + time_range_dict[params['time_range']]}) | 
					
						
							|  |  |  |     if params['safesearch']: | 
					
						
							|  |  |  |         query_url += '&' + urlencode({'safe': filter_mapping[params['safesearch']]}) | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  |     params['url'] = query_url | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-06 08:18:07 +02:00
										 |  |  |     params['headers'].update(lang_info['headers']) | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  |     params['headers']['User-Agent'] = 'NSTN/3.60.474802233.release Dalvik/2.1.0 (Linux; U; Android 12; US) gzip' | 
					
						
							|  |  |  |     params['headers']['Accept'] = '*/*' | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | def response(resp): | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |     """Get response from google's search request""" | 
					
						
							| 
									
										
										
										
											2019-05-28 05:33:31 +02:00
										 |  |  |     results = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-22 18:49:45 +01:00
										 |  |  |     detect_google_sorry(resp) | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  |     json_start = resp.text.find('{"ischj":') | 
					
						
							|  |  |  |     json_data = loads(resp.text[json_start:]) | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  |     for item in json_data["ischj"]["metadata"]: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         result_item = { | 
					
						
							|  |  |  |             'url': item["result"]["referrer_url"], | 
					
						
							|  |  |  |             'title': item["result"]["page_title"], | 
					
						
							|  |  |  |             'content': item["text_in_grid"]["snippet"], | 
					
						
							|  |  |  |             'source': item["result"]["site_title"], | 
					
						
							|  |  |  |             'img_format': f'{item["original_image"]["width"]} x {item["original_image"]["height"]}', | 
					
						
							|  |  |  |             'img_src': item["original_image"]["url"], | 
					
						
							|  |  |  |             'thumbnail_src': item["thumbnail"]["url"], | 
					
						
							|  |  |  |             'template': 'images.html', | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         author = item["result"].get('iptc', {}).get('creator') | 
					
						
							|  |  |  |         if author: | 
					
						
							|  |  |  |             result_item['author'] = ', '.join(author) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         copyright_notice = item["result"].get('iptc', {}).get('copyright_notice') | 
					
						
							|  |  |  |         if copyright_notice: | 
					
						
							|  |  |  |             result_item['source'] += ' / ' + copyright_notice | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         file_size = item.get('gsa', {}).get('file_size') | 
					
						
							|  |  |  |         if file_size: | 
					
						
							|  |  |  |             result_item['source'] += ' (%s)' % file_size | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         results.append(result_item) | 
					
						
							| 
									
										
										
										
											2019-04-12 23:12:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  |     return results |