summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/helpers/userhelper.py
blob: 52d37c9e480ca9f7937c57f193cc2288d53466e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import sys
import datetime

from ipa import ipautil

def password_expires_in(datestr):
    """Returns the number of days that password expires in.  Returns a negative number
       if the password is already expired."""
    if (datestr == None) or (datestr == ""):
        return sys.maxint

    expdate = ipautil.parse_generalized_time(datestr)
    if not expdate:
        return sys.maxint

    delta = expdate - datetime.datetime.now(ipautil.GeneralizedTimeZone())
    return delta.days

def password_is_expired(days):
    return days < 0

def password_expires_soon(days):
    return (not password_is_expired(days)) and (days < 7)

def account_status_display(status):
    if status == "true":
        return "inactive"
    else:
        return "active"