summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2020-10-03 10:02:50 +0200
committerAlexandre Flament <alex@al-f.net>2020-10-03 10:02:50 +0200
commit8f914a28facec314a2b98b11d3cc1207eb8ee8ab (patch)
treed294959c0c2b86130b6a963dac37452c61c567b9 /searx
parentc1d10bde0227e2ef714aec67a18d1e8180f1ed27 (diff)
downloadsearxng-8f914a28facec314a2b98b11d3cc1207eb8ee8ab.tar.gz
searxng-8f914a28facec314a2b98b11d3cc1207eb8ee8ab.zip
[mod] searx.utils.normalize_url: remove Yahoo hack
* The hack for Yahoo URLs is not necessary anymore. (see searx.engines.yahoo.parse_url) * move the URL normalization in extract_url to normalize_url
Diffstat (limited to 'searx')
-rw-r--r--searx/utils.py71
1 files changed, 43 insertions, 28 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 23bcbc124..0be3c5b00 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -156,7 +156,45 @@ def extract_text(xpath_results):
return ' '.join(text.split())
-def normalize_url(url):
+def normalize_url(url, base_url):
+ """Normalize URL: add protocol, join URL with base_url, add trailing slash if there is no path
+
+ Args:
+ * url (str): Relative URL
+ * base_url (str): Base URL, it must be an absolute URL.
+
+ Example:
+ >>> normalize_url('https://example.com', 'http://example.com/')
+ 'https://example.com/'
+ >>> normalize_url('//example.com', 'http://example.com/')
+ 'http://example.com/'
+ >>> normalize_url('//example.com', 'https://example.com/')
+ 'https://example.com/'
+ >>> normalize_url('/path?a=1', 'https://example.com')
+ 'https://example.com/path?a=1'
+ >>> normalize_url('', 'https://example.com')
+ 'https://example.com/'
+ >>> normalize_url('/test', '/path')
+ raise Exception
+
+ Raises:
+ * lxml.etree.ParserError
+
+ Returns:
+ * str: normalized URL
+ """
+ if url.startswith('//'):
+ # add http or https to this kind of url //example.com/
+ parsed_search_url = urlparse(base_url)
+ url = '{0}:{1}'.format(parsed_search_url.scheme or 'http', url)
+ elif url.startswith('/'):
+ # fix relative url to the search engine
+ url = urljoin(base_url, url)
+
+ # fix relative urls that fall through the crack
+ if '://' not in url:
+ url = urljoin(base_url, url)
+
parsed_url = urlparse(url)
# add a / at this end of the url if there is no path
@@ -165,23 +203,15 @@ def normalize_url(url):
if not parsed_url.path:
url += '/'
- # FIXME : hack for yahoo
- if parsed_url.hostname == 'search.yahoo.com'\
- and parsed_url.path.startswith('/r'):
- p = parsed_url.path
- mark = p.find('/**')
- if mark != -1:
- return unquote(p[mark + 3:]).decode()
-
return url
-def extract_url(xpath_results, search_url):
+def extract_url(xpath_results, base_url):
"""Extract and normalize URL from lxml Element
Args:
* xpath_results (Union[List[html.HtmlElement], html.HtmlElement]): lxml Element(s)
- * search_url (str): Base URL
+ * base_url (str): Base URL
Example:
>>> def f(s, search_url):
@@ -210,24 +240,9 @@ def extract_url(xpath_results, search_url):
"""
if xpath_results == []:
raise Exception('Empty url resultset')
- url = extract_text(xpath_results)
-
- if url.startswith('//'):
- # add http or https to this kind of url //example.com/
- parsed_search_url = urlparse(search_url)
- url = '{0}:{1}'.format(parsed_search_url.scheme or 'http', url)
- elif url.startswith('/'):
- # fix relative url to the search engine
- url = urljoin(search_url, url)
-
- # fix relative urls that fall through the crack
- if '://' not in url:
- url = urljoin(search_url, url)
-
- # normalize url
- url = normalize_url(url)
- return url
+ url = extract_text(xpath_results)
+ return normalize_url(url, base_url)
def dict_subset(d, properties):