mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Adds testing for unauthenticated API calls, simplify logging logic
This commit is contained in:
parent
4a02865697
commit
ea14fa5251
@ -12,21 +12,21 @@ def handle_failed_login(sender, credentials, request, **kwargs):
|
|||||||
client_ip, _ = ipware.get_client_ip(
|
client_ip, _ = ipware.get_client_ip(
|
||||||
meta=request.META,
|
meta=request.META,
|
||||||
)
|
)
|
||||||
username = credentials.get("username") or "anonymous"
|
username = credentials.get("username")
|
||||||
|
log_output = (
|
||||||
|
"No authentication provided"
|
||||||
|
if username is None
|
||||||
|
else f"Login failed for user `{username}`"
|
||||||
|
)
|
||||||
|
|
||||||
if client_ip is None:
|
if client_ip is None:
|
||||||
logger.info(
|
log_output += ". Unable to determine IP address."
|
||||||
f"Login failed for user `{username}`. Unable to determine IP address.",
|
|
||||||
)
|
|
||||||
else:
|
else:
|
||||||
if client_ip.is_global:
|
if client_ip.is_global:
|
||||||
# We got the client's IP address
|
# We got the client's IP address
|
||||||
logger.info(
|
log_output += f" from IP `{client_ip}.`"
|
||||||
f"Login failed for user `{username}` from IP `{client_ip}.`",
|
|
||||||
)
|
|
||||||
else:
|
else:
|
||||||
# The client's IP address is private
|
# The client's IP address is private
|
||||||
logger.info(
|
log_output += f" from private IP `{client_ip}.`"
|
||||||
f"Login failed for user `{username}`"
|
|
||||||
f" from private IP `{client_ip}.`",
|
logger.info(log_output)
|
||||||
)
|
|
||||||
|
@ -12,6 +12,26 @@ class TestFailedLoginLogging(TestCase):
|
|||||||
"username": "john lennon",
|
"username": "john lennon",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def test_unauthenticated(self):
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- Request with no authentication provided
|
||||||
|
WHEN:
|
||||||
|
- Request provided to signal handler
|
||||||
|
THEN:
|
||||||
|
- Unable to determine logged for unauthenticated user
|
||||||
|
"""
|
||||||
|
request = HttpRequest()
|
||||||
|
request.META = {}
|
||||||
|
with self.assertLogs("paperless.auth") as logs:
|
||||||
|
handle_failed_login(None, {}, request)
|
||||||
|
self.assertEqual(
|
||||||
|
logs.output,
|
||||||
|
[
|
||||||
|
"INFO:paperless.auth:No authentication provided. Unable to determine IP address.",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
def test_none(self):
|
def test_none(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user