2020-07-07 19:59:15 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2021-04-26 18:18:20 +00:00
|
|
|
# lint: pylint
|
2022-12-04 21:57:22 +00: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 16:59:55 +00:00
|
|
|
|
2022-09-20 18:35:55 +00:00
|
|
|
This internal API offer results in
|
2022-09-21 16:59:55 +00:00
|
|
|
|
2022-12-04 21:57:22 +00:00
|
|
|
- JSON (``_fmt:json``)
|
|
|
|
- Protobuf_ (``_fmt:pb``)
|
|
|
|
- Protobuf_ compressed? (``_fmt:pc``)
|
|
|
|
- HTML (``_fmt:html``)
|
|
|
|
- Protobuf_ encoded in JSON (``_fmt:jspb``).
|
2020-07-07 19:59:15 +00:00
|
|
|
|
2022-12-04 21:57:22 +00:00
|
|
|
.. _Protobuf: https://en.wikipedia.org/wiki/Protocol_Buffers
|
2015-05-02 13:45:17 +00:00
|
|
|
"""
|
2013-10-19 20:19:14 +00:00
|
|
|
|
2022-12-04 21:57:22 +00:00
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
2022-09-20 18:35:55 +00:00
|
|
|
from urllib.parse import urlencode
|
|
|
|
from json import loads
|
2020-07-07 19:59:15 +00:00
|
|
|
|
2022-12-04 21:57:22 +00:00
|
|
|
from searx.engines.google import fetch_traits # pylint: disable=unused-import
|
2020-07-07 19:59:15 +00:00
|
|
|
from searx.engines.google import (
|
2022-12-04 21:57:22 +00:00
|
|
|
get_google_info,
|
2020-07-07 22:46:03 +00:00
|
|
|
time_range_dict,
|
2021-01-22 17:49:45 +00:00
|
|
|
detect_google_sorry,
|
2020-07-07 19:59:15 +00:00
|
|
|
)
|
|
|
|
|
2022-12-04 21:57:22 +00:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
import logging
|
|
|
|
from searx.enginelib.traits import EngineTraits
|
|
|
|
|
|
|
|
logger: logging.Logger
|
|
|
|
traits: EngineTraits
|
2021-12-27 08:26:22 +00:00
|
|
|
|
2021-01-26 10:49:27 +00:00
|
|
|
|
2021-01-13 10:31:25 +00:00
|
|
|
# about
|
|
|
|
about = {
|
2021-01-26 10:49:27 +00:00
|
|
|
"website": 'https://images.google.com',
|
2021-01-13 10:31:25 +00:00
|
|
|
"wikidata_id": 'Q521550',
|
2021-01-26 10:49:27 +00:00
|
|
|
"official_api_documentation": 'https://developers.google.com/custom-search',
|
2021-01-13 10:31:25 +00:00
|
|
|
"use_official_api": False,
|
|
|
|
"require_api_key": False,
|
2022-09-20 18:35:55 +00:00
|
|
|
"results": 'JSON',
|
2021-01-13 10:31:25 +00:00
|
|
|
}
|
|
|
|
|
2014-09-01 13:10:05 +00:00
|
|
|
# engine dependent config
|
2021-12-22 15:58:52 +00:00
|
|
|
categories = ['images', 'web']
|
2022-09-20 18:35:55 +00:00
|
|
|
paging = True
|
2016-07-18 15:25:40 +00:00
|
|
|
time_range_support = True
|
2020-07-07 19:59:15 +00:00
|
|
|
safesearch = True
|
2022-08-01 15:01:59 +00:00
|
|
|
send_accept_language_header = True
|
2013-10-19 20:19:14 +00:00
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
filter_mapping = {0: 'images', 1: 'active', 2: 'active'}
|
2020-07-07 19:59:15 +00:00
|
|
|
|
2020-07-07 22:46:03 +00:00
|
|
|
|
2013-10-19 20:19:14 +00:00
|
|
|
def request(query, params):
|
2022-09-20 18:35:55 +00:00
|
|
|
"""Google-Image search request"""
|
2020-07-07 19:59:15 +00:00
|
|
|
|
2022-12-04 21:57:22 +00:00
|
|
|
google_info = get_google_info(params, traits)
|
2021-12-27 08:26:22 +00:00
|
|
|
|
|
|
|
query_url = (
|
|
|
|
'https://'
|
2022-12-04 21:57:22 +00:00
|
|
|
+ google_info['subdomain']
|
2021-12-27 08:26:22 +00:00
|
|
|
+ '/search'
|
|
|
|
+ "?"
|
2022-09-20 18:35:55 +00:00
|
|
|
+ urlencode(
|
|
|
|
{
|
|
|
|
'q': query,
|
|
|
|
'tbm': "isch",
|
2022-12-04 21:57:22 +00:00
|
|
|
**google_info['params'],
|
2022-09-20 18:35:55 +00:00
|
|
|
'asearch': 'isch',
|
|
|
|
'async': '_fmt:json,p:1,ijn:' + str(params['pageno']),
|
|
|
|
}
|
|
|
|
)
|
2020-07-07 19:59:15 +00:00
|
|
|
)
|
2016-08-12 22:43:21 +00:00
|
|
|
|
2016-07-25 22:22:05 +00:00
|
|
|
if params['time_range'] in time_range_dict:
|
2020-07-07 19:59:15 +00: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 10:49:27 +00:00
|
|
|
params['url'] = query_url
|
2020-07-07 19:59:15 +00:00
|
|
|
|
2022-12-04 21:57:22 +00:00
|
|
|
params['cookies'] = google_info['cookies']
|
|
|
|
params['headers'].update(google_info['headers'])
|
2013-10-19 20:19:14 +00:00
|
|
|
return params
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2013-10-19 20:19:14 +00:00
|
|
|
def response(resp):
|
2020-07-07 19:59:15 +00:00
|
|
|
"""Get response from google's search request"""
|
2019-05-28 03:33:31 +00:00
|
|
|
results = []
|
|
|
|
|
2021-01-22 17:49:45 +00:00
|
|
|
detect_google_sorry(resp)
|
2020-07-07 19:59:15 +00:00
|
|
|
|
2022-09-21 16:59:55 +00:00
|
|
|
json_start = resp.text.find('{"ischj":')
|
|
|
|
json_data = loads(resp.text[json_start:])
|
2021-01-26 10:49:27 +00:00
|
|
|
|
2022-09-21 16:59:55 +00: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:
|
2022-12-04 21:57:22 +00:00
|
|
|
result_item['source'] += ' | ' + copyright_notice
|
|
|
|
|
|
|
|
freshness_date = item["result"].get("freshness_date")
|
|
|
|
if freshness_date:
|
|
|
|
result_item['source'] += ' | ' + freshness_date
|
2022-09-21 16:59:55 +00: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 21:12:56 +00:00
|
|
|
|
2013-10-19 20:19:14 +00:00
|
|
|
return results
|