mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Restore the default django.utils.log.AdminEmailHandler when
ERROR_REPORTING is enabled. Those with more sophisticated needs can
turn it off and use Sentry or a Sentry-compatible system.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit b285813beb
)
32 lines
965 B
Python
32 lines
965 B
Python
from typing import Any, Dict, Optional
|
|
|
|
from django.http import HttpRequest
|
|
from django.views.debug import SafeExceptionReporterFilter
|
|
|
|
|
|
class ZulipExceptionReporterFilter(SafeExceptionReporterFilter):
|
|
def get_post_parameters(self, request: Optional[HttpRequest]) -> Dict[str, Any]:
|
|
post_data = SafeExceptionReporterFilter.get_post_parameters(self, request)
|
|
assert isinstance(post_data, dict)
|
|
filtered_post = post_data.copy()
|
|
filtered_vars = [
|
|
"content",
|
|
"secret",
|
|
"password",
|
|
"key",
|
|
"api-key",
|
|
"subject",
|
|
"stream",
|
|
"subscriptions",
|
|
"to",
|
|
"csrfmiddlewaretoken",
|
|
"api_key",
|
|
"realm_counts",
|
|
"installation_counts",
|
|
]
|
|
|
|
for var in filtered_vars:
|
|
if var in filtered_post:
|
|
filtered_post[var] = "**********"
|
|
return filtered_post
|