123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # SPDX-License-Identifier: AGPL-3.0-or-later
- # pylint: disable=missing-module-docstring, unused-argument
- from __future__ import annotations
- import logging
- import typing
- from flask_babel import gettext
- from searx.data import TRACKER_PATTERNS
- from . import Plugin, PluginInfo
- if typing.TYPE_CHECKING:
- from searx.search import SearchWithPlugins
- from searx.extended_types import SXNG_Request
- from searx.result_types import Result, LegacyResult
- from searx.plugins import PluginCfg
- log = logging.getLogger("searx.plugins.tracker_url_remover")
- class SXNGPlugin(Plugin):
- """Remove trackers arguments from the returned URL."""
- id = "tracker_url_remover"
- def __init__(self, plg_cfg: "PluginCfg") -> None:
- super().__init__(plg_cfg)
- self.info = PluginInfo(
- id=self.id,
- name=gettext("Tracker URL remover"),
- description=gettext("Remove trackers arguments from the returned URL"),
- preference_section="privacy",
- )
- def on_result(self, request: "SXNG_Request", search: "SearchWithPlugins", result: Result) -> bool:
- result.filter_urls(self.filter_url_field)
- return True
- @classmethod
- def filter_url_field(cls, result: "Result|LegacyResult", field_name: str, url_src: str) -> bool | str:
- """Returns bool ``True`` to use URL unchanged (``False`` to ignore URL).
- If URL should be modified, the returned string is the new URL to use."""
- if not url_src:
- log.debug("missing a URL in field %s", field_name)
- return True
- return TRACKER_PATTERNS.clean_url(url=url_src)
|