| 
									
										
										
										
											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-12-04 22:57:22 +01:00
										 |  |  | """This is the implementation of the Google Images engine using the internal
 | 
					
						
							|  |  |  | Google API used by the Google Go Android app. | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  | This internal API offer results in | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  | .. _Protobuf: https://en.wikipedia.org/wiki/Protocol_Buffers | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  | from typing import TYPE_CHECKING | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  | from searx.engines.google import fetch_traits  # pylint: disable=unused-import | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | from searx.engines.google import ( | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  |     get_google_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
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  | if TYPE_CHECKING: | 
					
						
							|  |  |  |     import logging | 
					
						
							|  |  |  |     from searx.enginelib.traits import EngineTraits | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     logger: logging.Logger | 
					
						
							|  |  |  |     traits: EngineTraits | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2023-11-13 19:12:50 +01:00
										 |  |  | max_page = 50 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  |     google_info = get_google_info(params, traits) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     query_url = ( | 
					
						
							|  |  |  |         'https://' | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  |         + google_info['subdomain'] | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         + '/search' | 
					
						
							|  |  |  |         + "?" | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  |         + urlencode( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'q': query, | 
					
						
							|  |  |  |                 'tbm': "isch", | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  |                 **google_info['params'], | 
					
						
							| 
									
										
										
										
											2022-09-20 20:35:55 +02:00
										 |  |  |                 '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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  |     params['cookies'] = google_info['cookies'] | 
					
						
							|  |  |  |     params['headers'].update(google_info['headers']) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-21 15:35:22 +02:00
										 |  |  |     for item in json_data["ischj"].get("metadata", []): | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         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: | 
					
						
							| 
									
										
										
										
											2022-12-04 22:57:22 +01:00
										 |  |  |             result_item['source'] += ' | ' + copyright_notice | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         freshness_date = item["result"].get("freshness_date") | 
					
						
							|  |  |  |         if freshness_date: | 
					
						
							|  |  |  |             result_item['source'] += ' | ' + freshness_date | 
					
						
							| 
									
										
										
										
											2022-09-21 18:59:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         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 |