| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  |  Startpage (Web) | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  | from lxml import html | 
					
						
							| 
									
										
										
										
											2015-10-24 16:15:30 +02:00
										 |  |  | from dateutil import parser | 
					
						
							|  |  |  | from datetime import datetime, timedelta | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2020-09-14 09:06:58 +02:00
										 |  |  | from unicodedata import normalize, combining | 
					
						
							|  |  |  | from babel import Locale | 
					
						
							|  |  |  | from babel.localedata import locale_identifiers | 
					
						
							| 
									
										
										
										
											2020-10-02 18:13:56 +02:00
										 |  |  | from searx.utils import extract_text, eval_xpath, match_language | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://startpage.com', | 
					
						
							|  |  |  |     "wikidata_id": 'Q2333295', | 
					
						
							|  |  |  |     "official_api_documentation": None, | 
					
						
							|  |  |  |     "use_official_api": False, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'HTML', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | # engine dependent config | 
					
						
							|  |  |  | categories = ['general'] | 
					
						
							| 
									
										
										
										
											2014-11-17 10:19:23 +01:00
										 |  |  | # there is a mechanism to block "bot" search | 
					
						
							|  |  |  | # (probably the parameter qid), require | 
					
						
							|  |  |  | # storing of qid's between mulitble search-calls | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-14 14:18:41 +02:00
										 |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2020-09-14 09:06:58 +02:00
										 |  |  | supported_languages_url = 'https://www.startpage.com/do/settings' | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | # search-url | 
					
						
							|  |  |  | base_url = 'https://startpage.com/' | 
					
						
							|  |  |  | search_url = base_url + 'do/search' | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | # specific xpath variables | 
					
						
							|  |  |  | # ads xpath //div[@id="results"]/div[@id="sponsored"]//div[@class="result"] | 
					
						
							|  |  |  | # not ads: div[@class="result"] are the direct childs of div[@id="results"] | 
					
						
							| 
									
										
										
										
											2020-12-13 15:43:50 +01:00
										 |  |  | results_xpath = '//div[@class="w-gl__result__main"]' | 
					
						
							| 
									
										
										
										
											2020-12-16 22:54:14 +01:00
										 |  |  | link_xpath = './/a[@class="w-gl__result-title result-link"]' | 
					
						
							| 
									
										
										
										
											2019-10-14 14:18:41 +02:00
										 |  |  | content_xpath = './/p[@class="w-gl__description"]' | 
					
						
							| 
									
										
										
										
											2014-01-30 02:10:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 09:35:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | # do search-request | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  |     params['url'] = search_url | 
					
						
							|  |  |  |     params['method'] = 'POST' | 
					
						
							| 
									
										
										
										
											2019-10-14 14:18:41 +02:00
										 |  |  |     params['data'] = { | 
					
						
							|  |  |  |         'query': query, | 
					
						
							|  |  |  |         'page': params['pageno'], | 
					
						
							|  |  |  |         'cat': 'web', | 
					
						
							|  |  |  |         'cmd': 'process_search', | 
					
						
							|  |  |  |         'engine0': 'v1all', | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-06 15:27:46 +01:00
										 |  |  |     # set language if specified | 
					
						
							|  |  |  |     if params['language'] != 'all': | 
					
						
							| 
									
										
										
										
											2020-09-14 09:06:58 +02:00
										 |  |  |         lang_code = match_language(params['language'], supported_languages, fallback=None) | 
					
						
							|  |  |  |         if lang_code: | 
					
						
							|  |  |  |             language_name = supported_languages[lang_code]['alias'] | 
					
						
							|  |  |  |             params['data']['language'] = language_name | 
					
						
							|  |  |  |             params['data']['lui'] = language_name | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | # get response from search-request | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |     dom = html.fromstring(resp.text) | 
					
						
							| 
									
										
										
										
											2014-11-17 10:19:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  |     # parse results | 
					
						
							| 
									
										
										
										
											2019-11-15 09:31:37 +01:00
										 |  |  |     for result in eval_xpath(dom, results_xpath): | 
					
						
							|  |  |  |         links = eval_xpath(result, link_xpath) | 
					
						
							| 
									
										
										
										
											2014-11-17 10:19:23 +01:00
										 |  |  |         if not links: | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         link = links[0] | 
					
						
							| 
									
										
										
										
											2013-10-24 23:43:39 +02:00
										 |  |  |         url = link.attrib.get('href') | 
					
						
							| 
									
										
										
										
											2014-01-19 21:20:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  |         # block google-ad url's | 
					
						
							| 
									
										
										
										
											2016-07-11 15:29:47 +02:00
										 |  |  |         if re.match(r"^http(s|)://(www\.)?google\.[a-z]+/aclk.*$", url): | 
					
						
							| 
									
										
										
										
											2015-08-24 11:28:55 +02:00
										 |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # block startpage search url's | 
					
						
							| 
									
										
										
										
											2016-07-11 15:29:47 +02:00
										 |  |  |         if re.match(r"^http(s|)://(www\.)?startpage\.com/do/search\?.*$", url): | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 11:44:24 +01:00
										 |  |  |         title = extract_text(link) | 
					
						
							| 
									
										
										
										
											2015-02-06 17:31:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 09:31:37 +01:00
										 |  |  |         if eval_xpath(result, content_xpath): | 
					
						
							|  |  |  |             content = extract_text(eval_xpath(result, content_xpath)) | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  |         else: | 
					
						
							|  |  |  |             content = '' | 
					
						
							| 
									
										
										
										
											2014-01-24 09:35:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-24 16:15:30 +02:00
										 |  |  |         published_date = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # check if search result starts with something like: "2 Sep 2014 ... " | 
					
						
							| 
									
										
										
										
											2016-07-11 15:29:47 +02:00
										 |  |  |         if re.match(r"^([1-9]|[1-2][0-9]|3[0-1]) [A-Z][a-z]{2} [0-9]{4} \.\.\. ", content): | 
					
						
							| 
									
										
										
										
											2016-01-18 12:47:31 +01:00
										 |  |  |             date_pos = content.find('...') + 4 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             date_string = content[0 : date_pos - 5] | 
					
						
							| 
									
										
										
										
											2015-10-24 16:15:30 +02:00
										 |  |  |             # fix content string | 
					
						
							|  |  |  |             content = content[date_pos:] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												[Fix] Startpage ValueError on Spanish date format
datetime.parser.parse() does not know the Spanish date format which
leads to a ValueError. Fixes #1870
Traceback (most recent call last):
  File "/usr/local/searx/searx/search.py", line 160, in search_one_http_request_safe
    search_results = search_one_http_request(engine, query, request_params)
  File "/usr/local/searx/searx/search.py", line 97, in search_one_http_request
    return engine.response(response)
  File "/usr/local/searx/searx/engines/startpage.py", line 102, in response
    published_date = parser.parse(date_string, dayfirst=True)
  File "/usr/local/searx/searx-ve/lib/python3.6/site-packages/dateutil/parser/_parser.py", line 1358, in parse
    return DEFAULTPARSER.parse(timestr, **kwargs)
  File "/usr/local/searx/searx-ve/lib/python3.6/site-packages/dateutil/parser/_parser.py", line 649, in parse
    raise ValueError("Unknown string format:", timestr)
ValueError: ('Unknown string format:', '24 Ene 2013')
											
										 
											2020-03-02 18:55:48 +01:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 published_date = parser.parse(date_string, dayfirst=True) | 
					
						
							|  |  |  |             except ValueError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-24 16:15:30 +02:00
										 |  |  |         # check if search result starts with something like: "5 days ago ... " | 
					
						
							| 
									
										
										
										
											2016-07-11 15:29:47 +02:00
										 |  |  |         elif re.match(r"^[0-9]+ days? ago \.\.\. ", content): | 
					
						
							| 
									
										
										
										
											2016-01-18 12:47:31 +01:00
										 |  |  |             date_pos = content.find('...') + 4 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             date_string = content[0 : date_pos - 5] | 
					
						
							| 
									
										
										
										
											2015-10-24 16:15:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # calculate datetime | 
					
						
							|  |  |  |             published_date = datetime.now() - timedelta(days=int(re.match(r'\d+', date_string).group())) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # fix content string | 
					
						
							|  |  |  |             content = content[date_pos:] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if published_date: | 
					
						
							|  |  |  |             # append result | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             results.append({'url': url, 'title': title, 'content': content, 'publishedDate': published_date}) | 
					
						
							| 
									
										
										
										
											2015-10-24 16:15:30 +02:00
										 |  |  |         else: | 
					
						
							|  |  |  |             # append result | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             results.append({'url': url, 'title': title, 'content': content}) | 
					
						
							| 
									
										
										
										
											2014-01-24 09:35:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 19:57:01 +02:00
										 |  |  |     # return results | 
					
						
							| 
									
										
										
										
											2013-10-19 18:29:39 +02:00
										 |  |  |     return results | 
					
						
							| 
									
										
										
										
											2020-09-14 09:06:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # get supported languages from their site | 
					
						
							|  |  |  | def _fetch_supported_languages(resp): | 
					
						
							|  |  |  |     # startpage's language selector is a mess | 
					
						
							|  |  |  |     # each option has a displayed name and a value, either of which may represent the language name | 
					
						
							|  |  |  |     # in the native script, the language name in English, an English transliteration of the native name, | 
					
						
							|  |  |  |     # the English name of the writing script used by the language, or occasionally something else entirely. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # this cases are so special they need to be hardcoded, a couple of them are mispellings | 
					
						
							|  |  |  |     language_names = { | 
					
						
							|  |  |  |         'english_uk': 'en-GB', | 
					
						
							|  |  |  |         'fantizhengwen': ['zh-TW', 'zh-HK'], | 
					
						
							|  |  |  |         'hangul': 'ko', | 
					
						
							|  |  |  |         'malayam': 'ml', | 
					
						
							|  |  |  |         'norsk': 'nb', | 
					
						
							|  |  |  |         'sinhalese': 'si', | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         'sudanese': 'su', | 
					
						
							| 
									
										
										
										
											2020-09-14 09:06:58 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # get the English name of every language known by babel | 
					
						
							|  |  |  |     language_names.update({name.lower(): lang_code for lang_code, name in Locale('en')._data['languages'].items()}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # get the native name of every language known by babel | 
					
						
							|  |  |  |     for lang_code in filter(lambda lang_code: lang_code.find('_') == -1, locale_identifiers()): | 
					
						
							|  |  |  |         native_name = Locale(lang_code).get_language_name().lower() | 
					
						
							|  |  |  |         # add native name exactly as it is | 
					
						
							|  |  |  |         language_names[native_name] = lang_code | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # add "normalized" language name (i.e. français becomes francais and español becomes espanol) | 
					
						
							|  |  |  |         unaccented_name = ''.join(filter(lambda c: not combining(c), normalize('NFKD', native_name))) | 
					
						
							|  |  |  |         if len(unaccented_name) == len(unaccented_name.encode()): | 
					
						
							|  |  |  |             # add only if result is ascii (otherwise "normalization" didn't work) | 
					
						
							|  |  |  |             language_names[unaccented_name] = lang_code | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dom = html.fromstring(resp.text) | 
					
						
							|  |  |  |     sp_lang_names = [] | 
					
						
							|  |  |  |     for option in dom.xpath('//form[@id="settings-form"]//select[@name="language"]/option'): | 
					
						
							|  |  |  |         sp_lang_names.append((option.get('value'), extract_text(option).lower())) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     supported_languages = {} | 
					
						
							|  |  |  |     for sp_option_value, sp_option_text in sp_lang_names: | 
					
						
							|  |  |  |         lang_code = language_names.get(sp_option_value) or language_names.get(sp_option_text) | 
					
						
							|  |  |  |         if isinstance(lang_code, str): | 
					
						
							|  |  |  |             supported_languages[lang_code] = {'alias': sp_option_value} | 
					
						
							|  |  |  |         elif isinstance(lang_code, list): | 
					
						
							|  |  |  |             for lc in lang_code: | 
					
						
							|  |  |  |                 supported_languages[lc] = {'alias': sp_option_value} | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             print('Unknown language option in Startpage: {} ({})'.format(sp_option_value, sp_option_text)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return supported_languages |