2020-01-21 06:35:58 +00:00
|
|
|
from django.utils.timezone import now
|
2023-08-30 23:46:47 +00:00
|
|
|
from django.conf import settings
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
from judge.models import Profile
|
|
|
|
|
|
|
|
|
|
|
|
class LogUserAccessMiddleware(object):
|
|
|
|
def __init__(self, get_response=None):
|
|
|
|
self.get_response = get_response
|
|
|
|
|
|
|
|
def __call__(self, request):
|
|
|
|
response = self.get_response(request)
|
|
|
|
|
2022-05-14 17:57:27 +00:00
|
|
|
if (
|
|
|
|
hasattr(request, "user")
|
|
|
|
and request.user.is_authenticated
|
|
|
|
and not getattr(request, "no_profile_update", False)
|
|
|
|
):
|
|
|
|
updates = {"last_access": now()}
|
2020-01-21 06:35:58 +00:00
|
|
|
# Decided on using REMOTE_ADDR as nginx will translate it to the external IP that hits it.
|
2023-08-30 23:46:47 +00:00
|
|
|
if request.META.get(settings.META_REMOTE_ADDRESS_KEY):
|
|
|
|
updates["ip"] = request.META.get(settings.META_REMOTE_ADDRESS_KEY)
|
2020-01-21 06:35:58 +00:00
|
|
|
Profile.objects.filter(user_id=request.user.pk).update(**updates)
|
|
|
|
|
|
|
|
return response
|