| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  | from __future__ import annotations | 
					
						
							|  |  |  | from ipaddress import ( | 
					
						
							|  |  |  |     IPv4Network, | 
					
						
							|  |  |  |     IPv6Network, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | import flask | 
					
						
							| 
									
										
										
										
											2023-05-28 18:58:31 +02:00
										 |  |  | import werkzeug | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-02 16:36:07 +02:00
										 |  |  | from . import config | 
					
						
							| 
									
										
										
										
											2023-05-28 18:58:31 +02:00
										 |  |  | from ._helpers import too_many_requests | 
					
						
							| 
									
										
										
										
											2023-05-26 17:24:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  | def filter_request( | 
					
						
							|  |  |  |     network: IPv4Network | IPv6Network, | 
					
						
							|  |  |  |     request: flask.Request, | 
					
						
							|  |  |  |     cfg: config.Config, | 
					
						
							|  |  |  | ) -> werkzeug.Response | None: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |     if request.headers.get('Connection', '').strip() == 'close': | 
					
						
							| 
									
										
										
										
											2023-06-01 15:41:48 +02:00
										 |  |  |         return too_many_requests(network, "HTTP header 'Connection=close") | 
					
						
							| 
									
										
										
										
											2023-05-23 18:16:37 +02:00
										 |  |  |     return None |