authentic/src/authentic2/manager/utils.py

49 lines
1.6 KiB
Python

# authentic2 - versatile identity manager
# Copyright (C) 2010-2019 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from authentic2.decorators import GlobalCache
from django_rbac.utils import get_ou_model
OU = get_ou_model()
def label_from_user(user):
labels = []
if user.first_name or user.last_name:
labels.append(user.first_name)
if user.first_name and user.last_name:
labels.append(u' ')
labels.append(user.last_name)
if user.email and user.email not in labels:
if labels:
labels.append(u' - ')
labels.append(user.email)
if user.username and user.username not in labels:
if labels:
labels.append(u' - ')
labels.append(user.username)
return ''.join(labels)
@GlobalCache(timeout=10)
def get_ou_count():
return OU.objects.count()
@GlobalCache(timeout=10)
def has_show_username():
return not OU.objects.filter(show_username=False).exists()