2023-05-23 18:16:37 +02: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 17:24:43 +02:00
|
|
|
# pylint: disable=unused-argument
|
2023-05-23 18:16:37 +02:00
|
|
|
|
|
|
|
from typing import Optional, Tuple
|
|
|
|
import flask
|
|
|
|
|
2023-05-26 17:24:43 +02:00
|
|
|
from searx.tools import config
|
|
|
|
|
2023-05-23 18:16:37 +02:00
|
|
|
|
2023-05-26 17:24:43 +02:00
|
|
|
def filter_request(request: flask.Request, cfg: config.Config) -> Optional[Tuple[int, str]]:
|
2023-05-23 18:16:37 +02:00
|
|
|
if request.headers.get('Connection', '').strip() == 'close':
|
|
|
|
return 429, "bot detected, HTTP header 'Connection=close'"
|
|
|
|
return None
|