mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
* Disable on raw save prototype * Contextmanager to disable instead of just raw - so we can catch m2m relations too Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com>
78 lines
2 KiB
Python
78 lines
2 KiB
Python
import contextlib
|
|
import threading
|
|
import time
|
|
from functools import partial
|
|
|
|
from django.contrib.auth import get_user_model
|
|
from django.db.models.signals import pre_save
|
|
|
|
from auditlog.models import LogEntry
|
|
|
|
threadlocal = threading.local()
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def set_actor(actor, remote_addr=None):
|
|
"""Connect a signal receiver with current user attached."""
|
|
# Initialize thread local storage
|
|
threadlocal.auditlog = {
|
|
"signal_duid": ("set_actor", time.time()),
|
|
"remote_addr": remote_addr,
|
|
}
|
|
|
|
# Connect signal for automatic logging
|
|
set_actor = partial(
|
|
_set_actor, user=actor, signal_duid=threadlocal.auditlog["signal_duid"]
|
|
)
|
|
pre_save.connect(
|
|
set_actor,
|
|
sender=LogEntry,
|
|
dispatch_uid=threadlocal.auditlog["signal_duid"],
|
|
weak=False,
|
|
)
|
|
|
|
try:
|
|
yield
|
|
finally:
|
|
try:
|
|
auditlog = threadlocal.auditlog
|
|
except AttributeError:
|
|
pass
|
|
else:
|
|
pre_save.disconnect(sender=LogEntry, dispatch_uid=auditlog["signal_duid"])
|
|
del threadlocal.auditlog
|
|
|
|
|
|
def _set_actor(user, sender, instance, signal_duid, **kwargs):
|
|
"""Signal receiver with extra 'user' and 'signal_duid' kwargs.
|
|
|
|
This function becomes a valid signal receiver when it is curried with the actor and a dispatch id.
|
|
"""
|
|
try:
|
|
auditlog = threadlocal.auditlog
|
|
except AttributeError:
|
|
pass
|
|
else:
|
|
if signal_duid != auditlog["signal_duid"]:
|
|
return
|
|
auth_user_model = get_user_model()
|
|
if (
|
|
sender == LogEntry
|
|
and isinstance(user, auth_user_model)
|
|
and instance.actor is None
|
|
):
|
|
instance.actor = user
|
|
|
|
instance.remote_addr = auditlog["remote_addr"]
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def disable_auditlog():
|
|
threadlocal.auditlog_disabled = True
|
|
try:
|
|
yield
|
|
finally:
|
|
try:
|
|
del threadlocal.auditlog_disabled
|
|
except AttributeError:
|
|
pass
|