5During the initialization phase, the plugin checks whether a ``hostnames:``
6configuration exists. If this is not the case, the plugin is not included
7in the PluginStorage (it is not available for selection).
9- ``hostnames.replace``: A **mapping** of regular expressions to hostnames to be
10 replaced by other hostnames.
16 '(.*\\.)?youtube\\.com$': 'invidious.example.com'
17 '(.*\\.)?youtu\\.be$': 'invidious.example.com'
20- ``hostnames.remove``: A **list** of regular expressions of the hostnames whose
21 results should be taken from the results list.
27 - '(.*\\.)?facebook.com$'
30- ``hostnames.high_priority``: A **list** of regular expressions for hostnames
31 whose result should be given higher priority. The results from these hosts are
32 arranged higher in the results list.
38 - '(.*\\.)?wikipedia.org$'
41- ``hostnames.lower_priority``: A **list** of regular expressions for hostnames
42 whose result should be given lower priority. The results from these hosts are
43 arranged lower in the results list.
49 - '(.*\\.)?google(\\..*)?$'
52If the URL matches the pattern of ``high_priority`` AND ``low_priority``, the
53higher priority wins over the lower priority.
55Alternatively, you can also specify a file name for the **mappings** or
56**lists** to load these from an external file:
61 replace: 'rewrite-hosts.yml'
63 - '(.*\\.)?facebook.com$'
66 - '(.*\\.)?google(\\..*)?$'
69 - '(.*\\.)?wikipedia.org$'
72The ``rewrite-hosts.yml`` from the example above must be in the folder in which
73the ``settings.yml`` file is already located (``/etc/searxng``). The file then
74only contains the lists or the mapping tables without further information on the
75namespaces. In the example above, this would be a mapping table that looks
80 '(.*\\.)?youtube\\.com$': 'invidious.example.com'
81 '(.*\\.)?youtu\\.be$': 'invidious.example.com'
85from __future__
import annotations
89from urllib.parse
import urlunparse, urlparse
91from flask_babel
import gettext
93from searx
import settings
100if typing.TYPE_CHECKING:
108REPLACE: dict[re.Pattern, str] = {}
115 """Rewrite hostnames, remove results or prioritize them."""
123 name=gettext(
"Hostnames plugin"),
124 description=gettext(
"Rewrite hostnames, remove results or prioritize them based on the hostname"),
125 preference_section=
"general",
128 def on_result(self, request:
"SXNG_Request", search:
"SearchWithPlugins", result: Result) -> bool:
130 for pattern
in REMOVE:
131 if result.parsed_url
and pattern.search(result.parsed_url.netloc):
138 result.filter_urls(filter_url_field)
140 if isinstance(result, (MainResult, LegacyResult)):
142 if result.parsed_url
and pattern.search(result.parsed_url.netloc):
143 result.priority =
"low"
146 if result.parsed_url
and pattern.search(result.parsed_url.netloc):
147 result.priority =
"high"
151 def init(self, app:
"flask.Flask") -> bool:
152 global REPLACE, REMOVE, HIGH, LOW
154 if not settings.get(self.
id):
166 setting_value = settings.get(self.
id, {}).get(settings_key)
168 if not setting_value:
172 if isinstance(setting_value, str):
173 setting_value = get_yaml_cfg(setting_value)
175 if isinstance(setting_value, list):
176 return {re.compile(r)
for r
in setting_value}
178 if isinstance(setting_value, dict):
179 return {re.compile(p): r
for (p, r)
in setting_value.items()}
184def filter_url_field(result:
"Result|LegacyResult", field_name: str, url_src: str) -> bool | str:
185 """Returns bool ``True`` to use URL unchanged (``False`` to ignore URL).
186 If URL should be modified, the returned string is the new URL to use."""
189 log.debug(
"missing a URL in field %s", field_name)
192 url_src_parsed = urlparse(url=url_src)
194 for pattern
in REMOVE:
195 if pattern.search(url_src_parsed.netloc):
198 for pattern, replacement
in REPLACE.items():
199 if pattern.search(url_src_parsed.netloc):
200 new_url = url_src_parsed._replace(netloc=pattern.sub(replacement, url_src_parsed.netloc))
201 new_url = urlunparse(new_url)
bool init(self, "flask.Flask" app)
bool on_result(self, "SXNG_Request" request, "SearchWithPlugins" search, Result result)
None __init__(self, "PluginCfg" plg_cfg)
dict[re.Pattern, str]|set|None _load_regular_expressions(self, settings_key)
bool|str filter_url_field("Result|LegacyResult" result, str field_name, str url_src)