2023-05-23 16:16:37 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# lint: pylint
|
|
|
|
"""
|
|
|
|
Method ``http_connection``
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
The ``http_connection`` method evaluates a request as the request of a bot if
|
|
|
|
the Connection_ header is set to ``close``.
|
|
|
|
|
|
|
|
.. _Connection:
|
|
|
|
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Connection
|
|
|
|
|
|
|
|
"""
|
2023-05-26 15:24:43 +00:00
|
|
|
# pylint: disable=unused-argument
|
2023-05-23 16:16:37 +00:00
|
|
|
|
2023-06-01 13:41:48 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
from ipaddress import (
|
|
|
|
IPv4Network,
|
|
|
|
IPv6Network,
|
|
|
|
)
|
|
|
|
|
2023-05-23 16:16:37 +00:00
|
|
|
import flask
|
2023-05-28 16:58:31 +00:00
|
|
|
import werkzeug
|
2023-05-23 16:16:37 +00:00
|
|
|
|
2023-05-26 15:24:43 +00:00
|
|
|
from searx.tools import config
|
2023-05-28 16:58:31 +00:00
|
|
|
from ._helpers import too_many_requests
|
2023-05-26 15:24:43 +00:00
|
|
|
|
2023-05-23 16:16:37 +00:00
|
|
|
|
2023-06-01 13:41:48 +00:00
|
|
|
def filter_request(
|
|
|
|
network: IPv4Network | IPv6Network,
|
|
|
|
request: flask.Request,
|
|
|
|
cfg: config.Config,
|
|
|
|
) -> werkzeug.Response | None:
|
|
|
|
|
2023-05-23 16:16:37 +00:00
|
|
|
if request.headers.get('Connection', '').strip() == 'close':
|
2023-06-01 13:41:48 +00:00
|
|
|
return too_many_requests(network, "HTTP header 'Connection=close")
|
2023-05-23 16:16:37 +00:00
|
|
|
return None
|