| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2021-06-21 18:15:40 +02:00
										 |  |  | """This is the implementation of the google images engine.
 | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-21 18:15:40 +02:00
										 |  |  | .. admonition:: Content-Security-Policy (CSP) | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |    This engine needs to allow images from the `data URLs`_ (prefixed with the | 
					
						
							| 
									
										
										
										
											2021-06-21 18:15:40 +02:00
										 |  |  |    ``data:`` scheme):: | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-21 18:15:40 +02:00
										 |  |  |        Header set Content-Security-Policy "img-src 'self' data: ;" | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _data URLs: | 
					
						
							|  |  |  |    https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 14:03:23 +01:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2021-01-22 18:49:45 +01:00
										 |  |  | from urllib.parse import urlencode, unquote | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  | from lxml import html | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from searx.utils import ( | 
					
						
							|  |  |  |     eval_xpath, | 
					
						
							|  |  |  |     eval_xpath_list, | 
					
						
							|  |  |  |     eval_xpath_getindex, | 
					
						
							|  |  |  |     extract_text, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							|  |  |  |     "results": 'HTML', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2021-12-22 16:58:52 +01:00
										 |  |  | categories = ['images', 'web'] | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | paging = False | 
					
						
							|  |  |  | 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 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  | def scrap_out_thumbs(dom): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     """Scrap out thumbnail data from <script> tags.""" | 
					
						
							| 
									
										
										
										
											2021-08-31 10:40:29 +02:00
										 |  |  |     ret_val = {} | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |     for script in eval_xpath(dom, '//script[contains(., "_setImgSrc(")]'): | 
					
						
							|  |  |  |         _script = script.text | 
					
						
							|  |  |  |         # _setImgSrc('0','data:image\/jpeg;base64,\/9j\/4AAQSkZJR ....'); | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         _thumb_no, _img_data = _script[len("_setImgSrc(") : -2].split(",", 1) | 
					
						
							| 
									
										
										
										
											2020-07-08 00:46:03 +02:00
										 |  |  |         _thumb_no = _thumb_no.replace("'", "") | 
					
						
							|  |  |  |         _img_data = _img_data.replace("'", "") | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |         _img_data = _img_data.replace(r"\/", r"/") | 
					
						
							|  |  |  |         ret_val[_thumb_no] = _img_data.replace(r"\x3d", "=") | 
					
						
							|  |  |  |     return ret_val | 
					
						
							| 
									
										
										
										
											2016-07-19 10:14:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-08 00:46:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 14:03:23 +01:00
										 |  |  | # [0, "-H96xjSoW5DsgM", ["https://encrypted-tbn0.gstatic.com/images?q...", 155, 324] | 
					
						
							|  |  |  | # , ["https://assets.cdn.moviepilot.de/files/d3bf..", 576, 1200], | 
					
						
							|  |  |  | _RE_JS_IMAGE_URL = re.compile( | 
					
						
							|  |  |  |     r'"' | 
					
						
							|  |  |  |     r'([^"]*)'  # -H96xjSoW5DsgM | 
					
						
							|  |  |  |     r'",\s*\["' | 
					
						
							|  |  |  |     r'https://[^\.]*\.gstatic.com/images[^"]*'  # https://encrypted-tbn0.gstatic.com/images?q... | 
					
						
							|  |  |  |     r'[^\[]*\["' | 
					
						
							|  |  |  |     r'(https?://[^"]*)'  # https://assets.cdn.moviepilot.de/files/d3bf... | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def parse_urls_img_from_js(dom): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # There are two HTML script tags starting with a JS function | 
					
						
							|  |  |  |     # 'AF_initDataCallback(...)' | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # <script nonce="zscm+Ab/JzBk1Qd4GY6wGQ"> | 
					
						
							|  |  |  |     #   AF_initDataCallback({key: 'ds:0', hash: '1', data:[], sideChannel: {}}); | 
					
						
							|  |  |  |     # </script> | 
					
						
							|  |  |  |     # <script nonce="zscm+Ab/JzBk1Qd4GY6wGQ"> | 
					
						
							|  |  |  |     #   AF_initDataCallback({key: 'ds:1', hash: '2', data:[null,[[["online_chips",[["the big", | 
					
						
							|  |  |  |     #     ["https://encrypted-tbn0.gstatic.com/images?q...",null,null,true,[null,0],f | 
					
						
							|  |  |  |     #   ... | 
					
						
							|  |  |  |     # </script> | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # The second script contains the URLs of the images. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # The AF_initDataCallback(..) is called with very large dictionary, that | 
					
						
							|  |  |  |     # looks like JSON but it is not JSON since it contains JS variables and | 
					
						
							|  |  |  |     # constants like 'null' (we can't use a JSON parser for). | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # The alternative is to parse the entire <script> and find all image URLs by | 
					
						
							|  |  |  |     # a regular expression. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     img_src_script = eval_xpath_getindex(dom, '//script[contains(., "AF_initDataCallback({key: ")]', 1).text | 
					
						
							|  |  |  |     data_id_to_img_url = {} | 
					
						
							|  |  |  |     for data_id, url in _RE_JS_IMAGE_URL.findall(img_src_script): | 
					
						
							|  |  |  |         data_id_to_img_url[data_id] = url | 
					
						
							|  |  |  |     return data_id_to_img_url | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_img_url_by_data_id(data_id_to_img_url, img_node): | 
					
						
							|  |  |  |     """Get full image URL by @data-id from parent element.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     data_id = eval_xpath_getindex(img_node, '../../../@data-id', 0) | 
					
						
							|  |  |  |     img_url = data_id_to_img_url.get(data_id, '') | 
					
						
							|  |  |  |     img_url = unquote(img_url.replace(r'\u00', r'%')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-08 19:35:22 +02:00
										 |  |  |     return img_url | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |     """Google-Video search request""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     lang_info = get_lang_info(params, supported_languages, language_aliases, False) | 
					
						
							|  |  |  |     logger.debug("HTTP header Accept-Language --> %s", lang_info['headers']['Accept-Language']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     query_url = ( | 
					
						
							|  |  |  |         'https://' | 
					
						
							|  |  |  |         + lang_info['subdomain'] | 
					
						
							|  |  |  |         + '/search' | 
					
						
							|  |  |  |         + "?" | 
					
						
							| 
									
										
										
										
											2022-07-25 12:53:56 +02:00
										 |  |  |         + urlencode({'q': query, 'tbm': "isch", **lang_info['params'], 'ie': "utf8", 'oe': "utf8", 'num': 30}) | 
					
						
							| 
									
										
										
										
											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-07-25 12:53:56 +02:00
										 |  |  |     params['cookies']['CONSENT'] = "YES+" | 
					
						
							| 
									
										
										
										
											2021-06-06 08:18:07 +02:00
										 |  |  |     params['headers'].update(lang_info['headers']) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     params['headers']['Accept'] = 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  |     # convert the text to dom | 
					
						
							| 
									
										
										
										
											2019-04-12 23:12:56 +02:00
										 |  |  |     dom = html.fromstring(resp.text) | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |     img_bas64_map = scrap_out_thumbs(dom) | 
					
						
							| 
									
										
										
										
											2022-02-19 14:03:23 +01:00
										 |  |  |     data_id_to_img_url = parse_urls_img_from_js(dom) | 
					
						
							| 
									
										
										
										
											2019-04-12 23:12:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-28 05:33:31 +02:00
										 |  |  |     # parse results | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |     # | 
					
						
							|  |  |  |     # root element:: | 
					
						
							|  |  |  |     #     <div id="islmp" ..> | 
					
						
							|  |  |  |     # result div per image:: | 
					
						
							|  |  |  |     #     <div jsmodel="tTXmib"> / <div jsaction="..." data-id="..." | 
					
						
							|  |  |  |     #     The data-id matches to a item in a json-data structure in:: | 
					
						
							|  |  |  |     #         <script nonce="I+vqelcy/01CKiBJi5Z1Ow">AF_initDataCallback({key: 'ds:1', ... data:function(){return [ ... | 
					
						
							| 
									
										
										
										
											2020-08-08 19:35:22 +02:00
										 |  |  |     #     In this structure the link to the origin PNG, JPG or whatever is given | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |     # first link per image-div contains a <img> with the data-iid for bas64 encoded image data:: | 
					
						
							|  |  |  |     #      <img class="rg_i Q4LuWd" data-iid="0" | 
					
						
							|  |  |  |     # second link per image-div is the target link:: | 
					
						
							|  |  |  |     #      <a class="VFACy kGQAp" href="https://en.wikipedia.org/wiki/The_Sacrament_of_the_Last_Supper"> | 
					
						
							|  |  |  |     # the second link also contains two div tags with the *description* and *publisher*:: | 
					
						
							|  |  |  |     #      <div class="WGvvNb">The Sacrament of the Last Supper ...</div> | 
					
						
							|  |  |  |     #      <div class="fxgdke">en.wikipedia.org</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     root = eval_xpath(dom, '//div[@id="islmp"]') | 
					
						
							|  |  |  |     if not root: | 
					
						
							|  |  |  |         logger.error("did not find root element id='islmp'") | 
					
						
							|  |  |  |         return results | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     root = root[0] | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  |     for img_node in eval_xpath_list(root, './/img[contains(@class, "rg_i")]'): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         img_alt = eval_xpath_getindex(img_node, '@alt', 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         img_base64_id = eval_xpath(img_node, '@data-iid') | 
					
						
							|  |  |  |         if img_base64_id: | 
					
						
							|  |  |  |             img_base64_id = img_base64_id[0] | 
					
						
							|  |  |  |             thumbnail_src = img_bas64_map[img_base64_id] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             thumbnail_src = eval_xpath(img_node, '@src') | 
					
						
							|  |  |  |             if not thumbnail_src: | 
					
						
							|  |  |  |                 thumbnail_src = eval_xpath(img_node, '@data-src') | 
					
						
							|  |  |  |             if thumbnail_src: | 
					
						
							|  |  |  |                 thumbnail_src = thumbnail_src[0] | 
					
						
							| 
									
										
										
										
											2020-07-07 21:59:15 +02:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  |                 thumbnail_src = '' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         link_node = eval_xpath_getindex(img_node, '../../../a[2]', 0) | 
					
						
							| 
									
										
										
										
											2021-11-21 09:54:05 +01:00
										 |  |  |         url = eval_xpath_getindex(link_node, '@href', 0, None) | 
					
						
							|  |  |  |         if url is None: | 
					
						
							|  |  |  |             logger.error("missing @href in node: %s", html.tostring(link_node)) | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         pub_nodes = eval_xpath(link_node, './div/div') | 
					
						
							|  |  |  |         pub_descr = img_alt | 
					
						
							|  |  |  |         pub_source = '' | 
					
						
							|  |  |  |         if pub_nodes: | 
					
						
							|  |  |  |             pub_descr = extract_text(pub_nodes[0]) | 
					
						
							|  |  |  |             pub_source = extract_text(pub_nodes[1]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 14:03:23 +01:00
										 |  |  |         src_url = get_img_url_by_data_id(data_id_to_img_url, img_node) | 
					
						
							| 
									
										
										
										
											2021-01-26 11:49:27 +01:00
										 |  |  |         if not src_url: | 
					
						
							|  |  |  |             src_url = thumbnail_src | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         results.append( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'url': url, | 
					
						
							|  |  |  |                 'title': img_alt, | 
					
						
							|  |  |  |                 'content': pub_descr, | 
					
						
							|  |  |  |                 'source': pub_source, | 
					
						
							|  |  |  |                 'img_src': src_url, | 
					
						
							|  |  |  |                 'thumbnail_src': thumbnail_src, | 
					
						
							|  |  |  |                 'template': 'images.html', | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2019-04-12 23:12:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  |     return results |