Cloned DMOJ
This commit is contained in:
parent
f623974b58
commit
49dc9ff10c
513 changed files with 132349 additions and 39 deletions
21
judge/user_log.py
Normal file
21
judge/user_log.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
from django.utils.timezone import now
|
||||
|
||||
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)
|
||||
|
||||
if (hasattr(request, 'user') and request.user.is_authenticated and
|
||||
not getattr(request, 'no_profile_update', False)):
|
||||
updates = {'last_access': now()}
|
||||
# Decided on using REMOTE_ADDR as nginx will translate it to the external IP that hits it.
|
||||
if request.META.get('REMOTE_ADDR'):
|
||||
updates['ip'] = request.META.get('REMOTE_ADDR')
|
||||
Profile.objects.filter(user_id=request.user.pk).update(**updates)
|
||||
|
||||
return response
|
Loading…
Add table
Add a link
Reference in a new issue