2019-03-03 16:12:05 +00:00
|
|
|
"""passbook password_expiry_policy Models"""
|
|
|
|
from datetime import timedelta
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
from django.utils.timezone import now
|
|
|
|
from django.utils.translation import gettext as _
|
2019-10-01 08:24:10 +00:00
|
|
|
from structlog import get_logger
|
2019-03-03 16:12:05 +00:00
|
|
|
|
2019-10-01 08:17:39 +00:00
|
|
|
from passbook.core.models import Policy, PolicyResult, User
|
2019-03-03 16:12:05 +00:00
|
|
|
|
2019-10-01 08:24:10 +00:00
|
|
|
LOGGER = get_logger(__name__)
|
2019-03-03 16:12:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PasswordExpiryPolicy(Policy):
|
|
|
|
"""If password change date is more than x days in the past, call set_unusable_password
|
|
|
|
and show a notice"""
|
|
|
|
|
|
|
|
deny_only = models.BooleanField(default=False)
|
|
|
|
days = models.IntegerField()
|
|
|
|
|
|
|
|
form = 'passbook.password_expiry_policy.forms.PasswordExpiryPolicyForm'
|
|
|
|
|
2019-10-01 08:17:39 +00:00
|
|
|
def passes(self, user: User) -> PolicyResult:
|
2019-03-03 16:12:05 +00:00
|
|
|
"""If password change date is more than x days in the past, call set_unusable_password
|
|
|
|
and show a notice"""
|
|
|
|
actual_days = (now() - user.password_change_date).days
|
2019-03-03 19:26:25 +00:00
|
|
|
days_since_expiry = (now() - (user.password_change_date + timedelta(days=self.days))).days
|
2019-03-03 16:12:05 +00:00
|
|
|
if actual_days >= self.days:
|
|
|
|
if not self.deny_only:
|
|
|
|
user.set_unusable_password()
|
|
|
|
user.save()
|
2019-10-01 08:17:39 +00:00
|
|
|
message = _(('Password expired %(days)d days ago. '
|
|
|
|
'Please update your password.') % {
|
|
|
|
'days': days_since_expiry
|
|
|
|
})
|
|
|
|
return PolicyResult(False, message)
|
|
|
|
return PolicyResult(False, _('Password has expired.'))
|
|
|
|
return PolicyResult(True)
|
2019-03-03 16:12:05 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
verbose_name = _('Password Expiry Policy')
|
|
|
|
verbose_name_plural = _('Password Expiry Policies')
|