| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | # lint: pylint | 
					
						
							|  |  |  | """The XPath engine is a *generic* engine with which it is possible to configure
 | 
					
						
							|  |  |  | engines in the settings. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | .. _XPath selector: https://quickref.me/xpath.html#xpath-selectors | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Configuration | 
					
						
							|  |  |  | ============= | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Request: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | - :py:obj:`search_url` | 
					
						
							|  |  |  | - :py:obj:`lang_all` | 
					
						
							|  |  |  | - :py:obj:`soft_max_redirects` | 
					
						
							|  |  |  | - :py:obj:`cookies` | 
					
						
							|  |  |  | - :py:obj:`headers` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Paging: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | - :py:obj:`paging` | 
					
						
							|  |  |  | - :py:obj:`page_size` | 
					
						
							|  |  |  | - :py:obj:`first_page_num` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Time Range: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | - :py:obj:`time_range_support` | 
					
						
							|  |  |  | - :py:obj:`time_range_url` | 
					
						
							|  |  |  | - :py:obj:`time_range_map` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Safe-Search: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | - :py:obj:`safe_search_support` | 
					
						
							|  |  |  | - :py:obj:`safe_search_map` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Response: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | - :py:obj:`no_result_for_http_status` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | `XPath selector`_: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | - :py:obj:`results_xpath` | 
					
						
							|  |  |  | - :py:obj:`url_xpath` | 
					
						
							|  |  |  | - :py:obj:`title_xpath` | 
					
						
							|  |  |  | - :py:obj:`content_xpath` | 
					
						
							|  |  |  | - :py:obj:`thumbnail_xpath` | 
					
						
							|  |  |  | - :py:obj:`suggestion_xpath` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Example | 
					
						
							|  |  |  | ======= | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Here is a simple example of a XPath engine configured in the :ref:`settings | 
					
						
							|  |  |  | engine` section, further read :ref:`engines-dev`. | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. code:: yaml | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   - name : bitbucket | 
					
						
							|  |  |  |     engine : xpath | 
					
						
							|  |  |  |     paging : True | 
					
						
							|  |  |  |     search_url : https://bitbucket.org/repo/all/{pageno}?name={query} | 
					
						
							|  |  |  |     url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href | 
					
						
							|  |  |  |     title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"] | 
					
						
							|  |  |  |     content_xpath : //article[@class="repo-summary"]/p | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | Implementations | 
					
						
							|  |  |  | =============== | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-02 18:13:56 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | from lxml import html | 
					
						
							| 
									
										
										
										
											2020-11-26 15:49:33 +01:00
										 |  |  | from searx.utils import extract_text, extract_url, eval_xpath, eval_xpath_list | 
					
						
							| 
									
										
										
										
											2022-09-02 09:33:20 +02:00
										 |  |  | from searx.network import raise_for_httperror | 
					
						
							| 
									
										
										
										
											2013-10-26 02:22:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | search_url = None | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | Search URL of the engine.  Example:: | 
					
						
							| 
									
										
										
										
											2021-05-23 22:26:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     https://example.org/?search={query}&page={pageno}{time_range}{safe_search} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Replacements are: | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | ``{query}``: | 
					
						
							|  |  |  |   Search terms from user. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``{pageno}``: | 
					
						
							|  |  |  |   Page number if engine supports pagging :py:obj:`paging` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 13:20:48 +02:00
										 |  |  | ``{lang}``: | 
					
						
							|  |  |  |   ISO 639-1 language code (en, de, fr ..) | 
					
						
							| 
									
										
										
										
											2021-05-23 16:49:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | ``{time_range}``: | 
					
						
							|  |  |  |   :py:obj:`URL parameter <time_range_url>` if engine :py:obj:`supports time | 
					
						
							|  |  |  |   range <time_range_support>`.  The value for the parameter is taken from | 
					
						
							|  |  |  |   :py:obj:`time_range_map`. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 22:26:18 +02:00
										 |  |  | ``{safe_search}``: | 
					
						
							|  |  |  |   Safe-search :py:obj:`URL parameter <safe_search_map>` if engine | 
					
						
							|  |  |  |   :py:obj:`supports safe-search <safe_search_support>`.  The ``{safe_search}`` | 
					
						
							|  |  |  |   replacement is taken from the :py:obj:`safes_search_map`.  Filter results:: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       0: none, 1: moderate, 2:strict | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |   If not supported, the URL parameter is an empty string. | 
					
						
							| 
									
										
										
										
											2021-05-23 22:26:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | lang_all = 'en' | 
					
						
							| 
									
										
										
										
											2021-05-23 13:20:48 +02:00
										 |  |  | '''Replacement ``{lang}`` in :py:obj:`search_url` if language ``all`` is
 | 
					
						
							|  |  |  | selected. | 
					
						
							|  |  |  | '''
 | 
					
						
							| 
									
										
										
										
											2022-09-02 09:33:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | no_result_for_http_status = [] | 
					
						
							|  |  |  | '''Return empty result for these HTTP status codes instead of throwing an error.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code:: yaml | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     no_result_for_http_status: [] | 
					
						
							|  |  |  | '''
 | 
					
						
							| 
									
										
										
										
											2021-05-23 13:20:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | soft_max_redirects = 0 | 
					
						
							|  |  |  | '''Maximum redirects, soft limit. Record an error but don't stop the engine''' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | results_xpath = '' | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''`XPath selector`_ for the list of result items''' | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | url_xpath = None | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''`XPath selector`_ of result's ``url``.''' | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-26 02:22:20 +02:00
										 |  |  | content_xpath = None | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''`XPath selector`_ of result's ``content``.''' | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | title_xpath = None | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''`XPath selector`_ of result's ``title``.''' | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-25 07:46:41 +02:00
										 |  |  | thumbnail_xpath = False | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''`XPath selector`_ of result's ``img_src``.''' | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-13 19:33:09 +01:00
										 |  |  | suggestion_xpath = '' | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''`XPath selector`_ of result's ``suggestion``.''' | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  | cached_xpath = '' | 
					
						
							|  |  |  | cached_url = '' | 
					
						
							| 
									
										
										
										
											2013-10-26 02:22:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-16 17:42:04 +02:00
										 |  |  | cookies = {} | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''Some engines might offer different result based on cookies.
 | 
					
						
							|  |  |  | Possible use-case: To set safesearch cookie.'''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-16 17:42:04 +02:00
										 |  |  | headers = {} | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | '''Some engines might offer different result based headers.  Possible use-case:
 | 
					
						
							|  |  |  | To set header to moderate.'''
 | 
					
						
							| 
									
										
										
										
											2022-04-16 17:42:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | paging = False | 
					
						
							|  |  |  | '''Engine supports paging [True or False].''' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 15:15:03 +02:00
										 |  |  | page_size = 1 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | '''Number of results on each page.  Only needed if the site requires not a page
 | 
					
						
							|  |  |  | number, but an offset.'''
 | 
					
						
							| 
									
										
										
										
											2016-03-28 15:15:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | first_page_num = 1 | 
					
						
							|  |  |  | '''Number of the first page (usually 0 or 1).''' | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 16:49:30 +02:00
										 |  |  | time_range_support = False | 
					
						
							|  |  |  | '''Engine supports search time range.''' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | time_range_url = '&hours={time_range_val}' | 
					
						
							|  |  |  | '''Time range URL parameter in the in :py:obj:`search_url`.  If no time range is
 | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  | requested by the user, the URL parameter is an empty string.  The | 
					
						
							| 
									
										
										
										
											2021-05-23 16:49:30 +02:00
										 |  |  | ``{time_range_val}`` replacement is taken from the :py:obj:`time_range_map`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code:: yaml | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     time_range_url : '&days={time_range_val}' | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | time_range_map = { | 
					
						
							|  |  |  |     'day': 24, | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     'week': 24 * 7, | 
					
						
							|  |  |  |     'month': 24 * 30, | 
					
						
							|  |  |  |     'year': 24 * 365, | 
					
						
							| 
									
										
										
										
											2021-05-23 16:49:30 +02:00
										 |  |  | } | 
					
						
							|  |  |  | '''Maps time range value from user to ``{time_range_val}`` in
 | 
					
						
							|  |  |  | :py:obj:`time_range_url`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code:: yaml | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     time_range_map: | 
					
						
							|  |  |  |       day: 1 | 
					
						
							|  |  |  |       week: 7 | 
					
						
							|  |  |  |       month: 30 | 
					
						
							|  |  |  |       year: 365 | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 22:26:18 +02:00
										 |  |  | safe_search_support = False | 
					
						
							|  |  |  | '''Engine supports safe-search.''' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | safe_search_map = {0: '&filter=none', 1: '&filter=moderate', 2: '&filter=strict'} | 
					
						
							| 
									
										
										
										
											2021-05-23 22:26:18 +02:00
										 |  |  | '''Maps safe-search value to ``{safe_search}`` in :py:obj:`search_url`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code:: yaml | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     safesearch: true | 
					
						
							|  |  |  |     safes_search_map: | 
					
						
							|  |  |  |       0: '&filter=none' | 
					
						
							|  |  |  |       1: '&filter=moderate' | 
					
						
							|  |  |  |       2: '&filter=strict' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | def request(query, params): | 
					
						
							|  |  |  |     '''Build request parameters (see :ref:`engine request`).''' | 
					
						
							| 
									
										
										
										
											2021-05-23 13:20:48 +02:00
										 |  |  |     lang = lang_all | 
					
						
							|  |  |  |     if params['language'] != 'all': | 
					
						
							|  |  |  |         lang = params['language'][:2] | 
					
						
							| 
									
										
										
										
											2021-05-23 16:49:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     time_range = '' | 
					
						
							|  |  |  |     if params.get('time_range'): | 
					
						
							|  |  |  |         time_range_val = time_range_map.get(params.get('time_range')) | 
					
						
							|  |  |  |         time_range = time_range_url.format(time_range_val=time_range_val) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 22:26:18 +02:00
										 |  |  |     safe_search = '' | 
					
						
							|  |  |  |     if params['safesearch']: | 
					
						
							|  |  |  |         safe_search = safe_search_map[params['safesearch']] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 13:20:48 +02:00
										 |  |  |     fargs = { | 
					
						
							|  |  |  |         'query': urlencode({'q': query})[2:], | 
					
						
							|  |  |  |         'lang': lang, | 
					
						
							| 
									
										
										
										
											2021-05-23 16:49:30 +02:00
										 |  |  |         'pageno': (params['pageno'] - 1) * page_size + first_page_num, | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         'time_range': time_range, | 
					
						
							|  |  |  |         'safe_search': safe_search, | 
					
						
							| 
									
										
										
										
											2021-05-23 13:20:48 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-05-23 16:49:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 11:29:23 +02:00
										 |  |  |     params['cookies'].update(cookies) | 
					
						
							|  |  |  |     params['headers'].update(headers) | 
					
						
							| 
									
										
										
										
											2022-04-17 10:42:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  |     params['url'] = search_url.format(**fargs) | 
					
						
							| 
									
										
										
										
											2021-05-17 15:04:55 +02:00
										 |  |  |     params['soft_max_redirects'] = soft_max_redirects | 
					
						
							| 
									
										
										
										
											2022-09-02 09:33:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     params['raise_for_httperror'] = False | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-26 02:22:20 +02:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 09:33:20 +02:00
										 |  |  | def response(resp):  # pylint: disable=too-many-branches | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     '''Scrap *results* from the response (see :ref:`engine results`).''' | 
					
						
							| 
									
										
										
										
											2022-09-02 09:33:20 +02:00
										 |  |  |     if no_result_for_http_status and resp.status_code in no_result_for_http_status: | 
					
						
							|  |  |  |         return [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     raise_for_httperror(resp) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-26 02:22:20 +02:00
										 |  |  |     results = [] | 
					
						
							|  |  |  |     dom = html.fromstring(resp.text) | 
					
						
							| 
									
										
										
										
											2021-09-07 10:29:38 +02:00
										 |  |  |     is_onion = 'onions' in categories | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-26 13:45:43 +02:00
										 |  |  |     if results_xpath: | 
					
						
							| 
									
										
										
										
											2020-11-26 15:49:33 +01:00
										 |  |  |         for result in eval_xpath_list(dom, results_xpath): | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 15:49:33 +01:00
										 |  |  |             url = extract_url(eval_xpath_list(result, url_xpath, min_len=1), search_url) | 
					
						
							|  |  |  |             title = extract_text(eval_xpath_list(result, title_xpath, min_len=1)) | 
					
						
							| 
									
										
										
										
											2021-09-04 12:41:23 +02:00
										 |  |  |             content = extract_text(eval_xpath_list(result, content_xpath)) | 
					
						
							| 
									
										
										
										
											2019-07-25 07:46:41 +02:00
										 |  |  |             tmp_result = {'url': url, 'title': title, 'content': content} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # add thumbnail if available | 
					
						
							|  |  |  |             if thumbnail_xpath: | 
					
						
							| 
									
										
										
										
											2020-11-26 15:49:33 +01:00
										 |  |  |                 thumbnail_xpath_result = eval_xpath_list(result, thumbnail_xpath) | 
					
						
							| 
									
										
										
										
											2019-07-25 09:31:47 +02:00
										 |  |  |                 if len(thumbnail_xpath_result) > 0: | 
					
						
							|  |  |  |                     tmp_result['img_src'] = extract_url(thumbnail_xpath_result, search_url) | 
					
						
							| 
									
										
										
										
											2019-07-25 07:46:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |             # add alternative cached url if available | 
					
						
							|  |  |  |             if cached_xpath: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 tmp_result['cached_url'] = cached_url + extract_text(eval_xpath_list(result, cached_xpath, min_len=1)) | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if is_onion: | 
					
						
							|  |  |  |                 tmp_result['is_onion'] = True | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-25 07:46:41 +02:00
										 |  |  |             results.append(tmp_result) | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-26 13:45:43 +02:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |         if cached_xpath: | 
					
						
							|  |  |  |             for url, title, content, cached in zip( | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 (extract_url(x, search_url) for x in eval_xpath_list(dom, url_xpath)), | 
					
						
							| 
									
										
										
										
											2020-11-26 15:49:33 +01:00
										 |  |  |                 map(extract_text, eval_xpath_list(dom, title_xpath)), | 
					
						
							|  |  |  |                 map(extract_text, eval_xpath_list(dom, content_xpath)), | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 map(extract_text, eval_xpath_list(dom, cached_xpath)), | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |             ): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 results.append( | 
					
						
							|  |  |  |                     { | 
					
						
							|  |  |  |                         'url': url, | 
					
						
							|  |  |  |                         'title': title, | 
					
						
							|  |  |  |                         'content': content, | 
					
						
							|  |  |  |                         'cached_url': cached_url + cached, | 
					
						
							|  |  |  |                         'is_onion': is_onion, | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |         else: | 
					
						
							|  |  |  |             for url, title, content in zip( | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 (extract_url(x, search_url) for x in eval_xpath_list(dom, url_xpath)), | 
					
						
							| 
									
										
										
										
											2020-11-26 15:49:33 +01:00
										 |  |  |                 map(extract_text, eval_xpath_list(dom, title_xpath)), | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 map(extract_text, eval_xpath_list(dom, content_xpath)), | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |             ): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 results.append({'url': url, 'title': title, 'content': content, 'is_onion': is_onion}) | 
					
						
							| 
									
										
										
										
											2021-05-23 10:56:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if suggestion_xpath: | 
					
						
							|  |  |  |         for suggestion in eval_xpath(dom, suggestion_xpath): | 
					
						
							|  |  |  |             results.append({'suggestion': extract_text(suggestion)}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     logger.debug("found %s results", len(results)) | 
					
						
							| 
									
										
										
										
											2013-10-26 02:22:20 +02:00
										 |  |  |     return results |