django-axes/axes/models.py

72 lines
1.5 KiB
Python

from django.db import models
class CommonAccess(models.Model):
user_agent = models.CharField(
max_length=255,
)
ip_address = models.IPAddressField(
verbose_name='IP Address',
null=True,
)
username = models.CharField(
max_length=255,
null=True,
)
# Once a user logs in from an ip, that combination is trusted and not
# locked out in case of a distributed attack
trusted = models.BooleanField(
default=False,
)
http_accept = models.CharField(
verbose_name='HTTP Accept',
max_length=1025,
)
path_info = models.CharField(
verbose_name='Path',
max_length=255,
)
attempt_time = models.DateTimeField(
auto_now_add=True,
)
class Meta:
abstract = True
ordering = ['-attempt_time']
class AccessAttempt(CommonAccess):
get_data = models.TextField(
verbose_name='GET Data',
)
post_data = models.TextField(
verbose_name='POST Data',
)
failures_since_start = models.PositiveIntegerField(
verbose_name='Failed Logins',
)
@property
def failures(self):
return self.failures_since_start
def __unicode__(self):
return u'Attempted Access: %s' % self.attempt_time
class AccessLog(CommonAccess):
logout_time = models.DateTimeField(
null=True,
blank=True,
)
def __unicode__(self):
return u'Access Log for %s @ %s' % (self.username, self.attempt_time)