mirror of
https://github.com/searxng/searxng
synced 2024-01-01 18:24:07 +00:00
b9a2e8b387
To test you need to redirect embeded videos (e.g.) from youtube to a invidios instance. Search for videos using engine `!youtube lebowski`. The result URLs and the embeded videos should link to the invidios instance. Here is an example of such a `hostname_replace` configuration:: hostname_replace: # youtube --> Invidious '(.*\.)?youtube-nocookie\.com': 'invidio.xamh.de' '(.*\.)?youtube\.com$': 'invidio.xamh.de' '(.*\.)?invidious\.snopyta\.org$': 'invidio.xamh.de' '(.*\.)?vid\.puffyan\.us': 'invidio.xamh.de' '(.*\.)?invidious\.kavin\.rocks$': 'invidio.xamh.de' '(.*\.)?inv\.riverside\.rocks$': 'invidio.xamh.de' Closes: https://github.com/searxng/searxng/issues/873 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
import re
|
|
from urllib.parse import urlunparse, urlparse
|
|
from searx import settings
|
|
from searx.plugins import logger
|
|
from flask_babel import gettext
|
|
|
|
name = gettext('Hostname replace')
|
|
description = gettext('Rewrite result hostnames or remove results based on the hostname')
|
|
default_on = False
|
|
preference_section = 'general'
|
|
|
|
plugin_id = 'hostname_replace'
|
|
|
|
replacements = {re.compile(p): r for (p, r) in settings[plugin_id].items()} if plugin_id in settings else {}
|
|
|
|
logger = logger.getChild(plugin_id)
|
|
parsed = 'parsed_url'
|
|
|
|
|
|
def on_result(request, search, result):
|
|
if parsed not in result:
|
|
return True
|
|
for (pattern, replacement) in replacements.items():
|
|
if pattern.search(result[parsed].netloc):
|
|
if not replacement:
|
|
return False
|
|
result[parsed] = result[parsed]._replace(netloc=pattern.sub(replacement, result[parsed].netloc))
|
|
result['url'] = urlunparse(result[parsed])
|
|
if result.get('data_src', False):
|
|
parsed_data_src = urlparse(result['data_src'])
|
|
if pattern.search(parsed_data_src.netloc):
|
|
parsed_data_src = parsed_data_src._replace(netloc=pattern.sub(replacement, parsed_data_src.netloc))
|
|
result['data_src'] = urlunparse(parsed_data_src)
|
|
|
|
return True
|