102def get_google_info(params, eng_traits):
103 """Composing various (language) properties for the google engines (:ref:`google
104 API`).
105
106 This function is called by the various google engines (:ref:`google web
107 engine`, :ref:`google images engine`, :ref:`google news engine` and
108 :ref:`google videos engine`).
109
110 :param dict param: Request parameters of the engine. At least
111 a ``searxng_locale`` key should be in the dictionary.
112
113 :param eng_traits: Engine's traits fetched from google preferences
114 (:py:obj:`searx.enginelib.traits.EngineTraits`)
115
116 :rtype: dict
117 :returns:
118 Py-Dictionary with the key/value pairs:
119
120 language:
121 The language code that is used by google (e.g. ``lang_en`` or
122 ``lang_zh-TW``)
123
124 country:
125 The country code that is used by google (e.g. ``US`` or ``TW``)
126
127 locale:
128 A instance of :py:obj:`babel.core.Locale` build from the
129 ``searxng_locale`` value.
130
131 subdomain:
132 Google subdomain :py:obj:`google_domains` that fits to the country
133 code.
134
135 params:
136 Py-Dictionary with additional request arguments (can be passed to
137 :py:func:`urllib.parse.urlencode`).
138
139 - ``hl`` parameter: specifies the interface language of user interface.
140 - ``lr`` parameter: restricts search results to documents written in
141 a particular language.
142 - ``cr`` parameter: restricts search results to documents
143 originating in a particular country.
144 - ``ie`` parameter: sets the character encoding scheme that should
145 be used to interpret the query string ('utf8').
146 - ``oe`` parameter: sets the character encoding scheme that should
147 be used to decode the XML result ('utf8').
148
149 headers:
150 Py-Dictionary with additional HTTP headers (can be passed to
151 request's headers)
152
153 - ``Accept: '*/*``
154
155 """
156
157 ret_val = {
158 'language': None,
159 'country': None,
160 'subdomain': None,
161 'params': {},
162 'headers': {},
163 'cookies': {},
164 'locale': None,
165 }
166
167 sxng_locale = params.get('searxng_locale', 'all')
168 try:
169 locale = babel.Locale.parse(sxng_locale, sep='-')
170 except babel.core.UnknownLocaleError:
171 locale = None
172
173 eng_lang = eng_traits.get_language(sxng_locale, 'lang_en')
174 lang_code = eng_lang.split('_')[-1]
175 country = eng_traits.get_region(sxng_locale, eng_traits.all_locale)
176
177
178
179
180
181
182
183
184
185 ret_val['language'] = eng_lang
186 ret_val['country'] = country
187 ret_val['locale'] = locale
188 ret_val['subdomain'] = eng_traits.custom['supported_domains'].get(country.upper(), 'www.google.com')
189
190
191
192
193
194
195
196
197
198
199
200 ret_val['params']['hl'] = f'{lang_code}-{country}'
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216 ret_val['params']['lr'] = eng_lang
217 if sxng_locale == 'all':
218 ret_val['params']['lr'] = ''
219
220
221
222
223
224
225
226
227 ret_val['params']['cr'] = ''
228 if len(sxng_locale.split('-')) > 1:
229 ret_val['params']['cr'] = 'country' + country
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250 ret_val['params']['ie'] = 'utf8'
251
252
253
254
255
256
257 ret_val['params']['oe'] = 'utf8'
258
259
260
261
262
263
264
265
266
267
268
269
270 ret_val['headers']['Accept'] = '*/*'
271
272
273
274
275
276 ret_val['cookies']['CONSENT'] = "YES+"
277
278 return ret_val
279
280