.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
google_scholar.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""This is the implementation of the Google Scholar engine.
3
4Compared to other Google services the Scholar engine has a simple GET REST-API
5and there does not exists `async` API. Even though the API slightly vintage we
6can make use of the :ref:`google API` to assemble the arguments of the GET
7request.
8"""
9
10from typing import TYPE_CHECKING
11from typing import Optional
12
13from urllib.parse import urlencode
14from datetime import datetime
15from lxml import html
16
17from searx.utils import (
18 eval_xpath,
19 eval_xpath_getindex,
20 eval_xpath_list,
21 extract_text,
22)
23
24from searx.exceptions import SearxEngineCaptchaException
25
26from searx.engines.google import fetch_traits # pylint: disable=unused-import
27from searx.engines.google import (
28 get_google_info,
29 time_range_dict,
30)
31from searx.enginelib.traits import EngineTraits
32
33if TYPE_CHECKING:
34 import logging
35
36 logger: logging.Logger
37
38traits: EngineTraits
39
40# about
41about = {
42 "website": 'https://scholar.google.com',
43 "wikidata_id": 'Q494817',
44 "official_api_documentation": 'https://developers.google.com/custom-search',
45 "use_official_api": False,
46 "require_api_key": False,
47 "results": 'HTML',
48}
49
50# engine dependent config
51categories = ['science', 'scientific publications']
52paging = True
53max_page = 50
54"""`Google max 50 pages`_
55
56.. _Google max 50 pages: https://github.com/searxng/searxng/issues/2982
57"""
58language_support = True
59time_range_support = True
60safesearch = False
61send_accept_language_header = True
62
63
64def time_range_args(params):
65 """Returns a dictionary with a time range arguments based on
66 ``params['time_range']``.
67
68 Google Scholar supports a detailed search by year. Searching by *last
69 month* or *last week* (as offered by SearXNG) is uncommon for scientific
70 publications and is not supported by Google Scholar.
71
72 To limit the result list when the users selects a range, all the SearXNG
73 ranges (*day*, *week*, *month*, *year*) are mapped to *year*. If no range
74 is set an empty dictionary of arguments is returned. Example; when
75 user selects a time range (current year minus one in 2022):
76
77 .. code:: python
78
79 { 'as_ylo' : 2021 }
80
81 """
82 ret_val = {}
83 if params['time_range'] in time_range_dict:
84 ret_val['as_ylo'] = datetime.now().year - 1
85 return ret_val
86
87
89 """In case of CAPTCHA Google Scholar open its own *not a Robot* dialog and is
90 not redirected to ``sorry.google.com``.
91 """
92 if eval_xpath(dom, "//form[@id='gs_captcha_f']"):
94
95
96def request(query, params):
97 """Google-Scholar search request"""
98
99 google_info = get_google_info(params, traits)
100 # subdomain is: scholar.google.xy
101 google_info['subdomain'] = google_info['subdomain'].replace("www.", "scholar.")
102
103 args = {
104 'q': query,
105 **google_info['params'],
106 'start': (params['pageno'] - 1) * 10,
107 'as_sdt': '2007', # include patents / to disable set '0,5'
108 'as_vis': '0', # include citations / to disable set '1'
109 }
110 args.update(time_range_args(params))
111
112 params['url'] = 'https://' + google_info['subdomain'] + '/scholar?' + urlencode(args)
113 params['cookies'] = google_info['cookies']
114 params['headers'].update(google_info['headers'])
115 return params
116
117
118def parse_gs_a(text: Optional[str]):
119 """Parse the text written in green.
120
121 Possible formats:
122 * "{authors} - {journal}, {year} - {publisher}"
123 * "{authors} - {year} - {publisher}"
124 * "{authors} - {publisher}"
125 """
126 if text is None or text == "":
127 return None, None, None, None
128
129 s_text = text.split(' - ')
130 authors = s_text[0].split(', ')
131 publisher = s_text[-1]
132 if len(s_text) != 3:
133 return authors, None, publisher, None
134
135 # the format is "{authors} - {journal}, {year} - {publisher}" or "{authors} - {year} - {publisher}"
136 # get journal and year
137 journal_year = s_text[1].split(', ')
138 # journal is optional and may contains some coma
139 if len(journal_year) > 1:
140 journal = ', '.join(journal_year[0:-1])
141 if journal == '…':
142 journal = None
143 else:
144 journal = None
145 # year
146 year = journal_year[-1]
147 try:
148 publishedDate = datetime.strptime(year.strip(), '%Y')
149 except ValueError:
150 publishedDate = None
151 return authors, journal, publisher, publishedDate
152
153
154def response(resp): # pylint: disable=too-many-locals
155 """Parse response from Google Scholar"""
156 results = []
157
158 # convert the text to dom
159 dom = html.fromstring(resp.text)
160 detect_google_captcha(dom)
161
162 # parse results
163 for result in eval_xpath_list(dom, '//div[@data-rp]'):
164
165 title = extract_text(eval_xpath(result, './/h3[1]//a'))
166
167 if not title:
168 # this is a [ZITATION] block
169 continue
170
171 pub_type = extract_text(eval_xpath(result, './/span[@class="gs_ctg2"]'))
172 if pub_type:
173 pub_type = pub_type[1:-1].lower()
174
175 url = eval_xpath_getindex(result, './/h3[1]//a/@href', 0)
176 content = extract_text(eval_xpath(result, './/div[@class="gs_rs"]'))
177 authors, journal, publisher, publishedDate = parse_gs_a(
178 extract_text(eval_xpath(result, './/div[@class="gs_a"]'))
179 )
180 if publisher in url:
181 publisher = None
182
183 # cited by
184 comments = extract_text(eval_xpath(result, './/div[@class="gs_fl"]/a[starts-with(@href,"/scholar?cites=")]'))
185
186 # link to the html or pdf document
187 html_url = None
188 pdf_url = None
189 doc_url = eval_xpath_getindex(result, './/div[@class="gs_or_ggsm"]/a/@href', 0, default=None)
190 doc_type = extract_text(eval_xpath(result, './/span[@class="gs_ctg2"]'))
191 if doc_type == "[PDF]":
192 pdf_url = doc_url
193 else:
194 html_url = doc_url
195
196 results.append(
197 {
198 'template': 'paper.html',
199 'type': pub_type,
200 'url': url,
201 'title': title,
202 'authors': authors,
203 'publisher': publisher,
204 'journal': journal,
205 'publishedDate': publishedDate,
206 'content': content,
207 'comments': comments,
208 'html_url': html_url,
209 'pdf_url': pdf_url,
210 }
211 )
212
213 # parse suggestion
214 for suggestion in eval_xpath(dom, '//div[contains(@class, "gs_qsuggest_wrap")]//li//a'):
215 # append suggestion
216 results.append({'suggestion': extract_text(suggestion)})
217
218 for correction in eval_xpath(dom, '//div[@class="gs_r gs_pda"]/a'):
219 results.append({'correction': extract_text(correction)})
220
221 return results
parse_gs_a(Optional[str] text)