.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
ahmia_filter.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2# pylint: disable=missing-module-docstring
3from __future__ import annotations
4import typing
5from hashlib import md5
6
7from flask_babel import gettext
8
9from searx.data import ahmia_blacklist_loader
10from searx import get_setting
11from searx.plugins import Plugin, PluginInfo
12
13if typing.TYPE_CHECKING:
14 import flask
15 from searx.search import SearchWithPlugins
16 from searx.extended_types import SXNG_Request
17 from searx.result_types import Result
18 from searx.plugins import PluginCfg
19
20ahmia_blacklist: list = []
21
22
24 """Filter out onion results that appear in Ahmia's blacklist (See https://ahmia.fi/blacklist)."""
25
26 id = "ahmia_filter"
27
28 def __init__(self, plg_cfg: "PluginCfg") -> None:
29 super().__init__(plg_cfg)
31 id=self.id,
32 name=gettext("Ahmia blacklist"),
33 description=gettext("Filter out onion results that appear in Ahmia's blacklist."),
34 preference_section="general",
35 )
36
38 self, request: "SXNG_Request", search: "SearchWithPlugins", result: Result
39 ) -> bool: # pylint: disable=unused-argument
40 if not getattr(result, "is_onion", False) or not getattr(result, "parsed_url", False):
41 return True
42 result_hash = md5(result["parsed_url"].hostname.encode()).hexdigest()
43 return result_hash not in ahmia_blacklist
44
45 def init(self, app: "flask.Flask") -> bool: # pylint: disable=unused-argument
46 global ahmia_blacklist # pylint: disable=global-statement
47 if not get_setting("outgoing.using_tor_proxy"):
48 # disable the plugin
49 return False
50 ahmia_blacklist = ahmia_blacklist_loader()
51 return True
None __init__(self, "PluginCfg" plg_cfg)
bool init(self, "flask.Flask" app)
bool on_result(self, "SXNG_Request" request, "SearchWithPlugins" search, Result result)
get_setting(name, default=_unset)
Definition __init__.py:69