Adam Tauber 7 лет назад
Родитель
Сommit
1613c6319e
1 измененных файлов: 4 добавлений и 0 удалений
  1. 4
    0
      searx/engines/google.py

+ 4
- 0
searx/engines/google.py Просмотреть файл

@@ -9,6 +9,7 @@
9 9
 # @parse       url, title, content, suggestion
10 10
 
11 11
 import re
12
+from flask_babel import gettext
12 13
 from lxml import html, etree
13 14
 from searx.engines.xpath import extract_text, extract_url
14 15
 from searx import logger
@@ -209,6 +210,9 @@ def response(resp):
209 210
     if resp_url.netloc == 'sorry.google.com' or resp_url.path == '/sorry/IndexRedirect':
210 211
         raise RuntimeWarning('sorry.google.com')
211 212
 
213
+    if resp_url.path.startswith('/sorry'):
214
+        raise RuntimeWarning(gettext('CAPTCHA required'))
215
+
212 216
     # which hostname ?
213 217
     google_hostname = resp.search_params.get('google_hostname')
214 218
     google_url = "https://" + google_hostname