2017-09-10 14:53:02 +00:00
|
|
|
# -*- mode: python; coding: utf-8 -*-
|
2017-10-14 18:18:12 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz.
|
|
|
|
# Il se veut agnostique au réseau considéré, de manière à être installable
|
|
|
|
# en quelques clics.
|
2017-01-15 23:01:18 +00:00
|
|
|
#
|
2020-04-17 14:48:27 +00:00
|
|
|
# Copyright © 2017-2020 Gabriel Détraz
|
|
|
|
# Copyright © 2017-2020 Lara Kermarec
|
|
|
|
# Copyright © 2017-2020 Augustin Lemesle
|
|
|
|
# Copyright © 2017-2020 Hugo Levy--Falk
|
|
|
|
# Copyright © 2017-2020 Jean-Romain Garnier
|
2017-01-15 23:01:18 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2017-10-14 18:18:12 +00:00
|
|
|
"""
|
|
|
|
Models de l'application users.
|
|
|
|
|
|
|
|
On défini ici des models django classiques:
|
|
|
|
- users, qui hérite de l'abstract base user de django. Permet de définit
|
|
|
|
un utilisateur du site (login, passwd, chambre, adresse, etc)
|
|
|
|
- les whiteslist
|
|
|
|
- les bannissements
|
|
|
|
- les établissements d'enseignement (school)
|
|
|
|
- les droits (right et listright)
|
|
|
|
- les utilisateurs de service (pour connexion automatique)
|
|
|
|
|
|
|
|
On défini aussi des models qui héritent de django-ldapdb :
|
|
|
|
- ldapuser
|
|
|
|
- ldapgroup
|
|
|
|
- ldapserviceuser
|
|
|
|
|
|
|
|
Ces utilisateurs ldap sont synchronisés à partir des objets
|
|
|
|
models sql classiques. Seuls certains champs essentiels sont
|
|
|
|
dupliqués.
|
|
|
|
"""
|
|
|
|
|
2017-01-15 23:01:18 +00:00
|
|
|
|
2017-09-10 23:29:24 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
import re
|
|
|
|
import uuid
|
|
|
|
import datetime
|
2018-08-10 14:45:17 +00:00
|
|
|
import sys
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-06-30 01:39:07 +00:00
|
|
|
from django.db import models
|
2016-07-10 02:49:09 +00:00
|
|
|
from django.db.models import Q
|
2016-07-02 02:40:24 +00:00
|
|
|
from django import forms
|
2018-08-10 22:13:27 +00:00
|
|
|
from django.forms import ValidationError
|
2018-07-12 16:19:23 +00:00
|
|
|
from django.db.models.signals import post_save, post_delete, m2m_changed
|
2016-07-26 00:54:32 +00:00
|
|
|
from django.dispatch import receiver
|
2017-05-26 22:43:51 +00:00
|
|
|
from django.utils.functional import cached_property
|
2019-09-01 21:25:41 +00:00
|
|
|
from django.template import loader
|
2017-08-28 19:51:12 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
2017-10-14 18:18:12 +00:00
|
|
|
from django.db import transaction
|
|
|
|
from django.utils import timezone
|
2020-04-17 12:08:54 +00:00
|
|
|
from datetime import timedelta
|
2017-11-20 03:41:29 +00:00
|
|
|
from django.contrib.auth.models import (
|
|
|
|
AbstractBaseUser,
|
2017-12-30 23:23:59 +00:00
|
|
|
BaseUserManager,
|
2017-12-31 12:24:18 +00:00
|
|
|
PermissionsMixin,
|
2019-11-04 16:55:03 +00:00
|
|
|
Group,
|
2017-11-20 03:41:29 +00:00
|
|
|
)
|
2017-10-14 18:18:12 +00:00
|
|
|
from django.core.validators import RegexValidator
|
2018-08-10 14:45:17 +00:00
|
|
|
import traceback
|
2018-08-15 17:15:26 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
2017-07-21 04:49:39 +00:00
|
|
|
from reversion import revisions as reversion
|
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
import ldapdb.models
|
|
|
|
import ldapdb.models.fields
|
|
|
|
|
2018-04-14 15:35:07 +00:00
|
|
|
from re2o.settings import LDAP, GID_RANGES, UID_RANGES
|
2017-12-28 16:47:02 +00:00
|
|
|
from re2o.field_permissions import FieldPermissionModelMixin
|
2018-03-31 15:18:39 +00:00
|
|
|
from re2o.mixins import AclMixin, RevMixin
|
2018-11-15 16:14:51 +00:00
|
|
|
from re2o.base import smtp_check
|
2020-04-19 18:15:23 +00:00
|
|
|
from re2o.mail_utils import send_mail
|
2016-06-30 01:39:07 +00:00
|
|
|
|
2017-06-26 17:23:01 +00:00
|
|
|
from cotisations.models import Cotisation, Facture, Paiement, Vente
|
2018-06-26 20:27:33 +00:00
|
|
|
from machines.models import Domain, Interface, Machine, regen
|
2017-10-14 18:18:12 +00:00
|
|
|
from preferences.models import GeneralOption, AssoOption, OptionalUser
|
|
|
|
from preferences.models import OptionalMachine, MailMessageOption
|
2016-07-03 12:36:51 +00:00
|
|
|
|
2017-10-04 15:53:30 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
# Utilitaires généraux
|
2017-10-04 15:53:30 +00:00
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
|
|
|
|
def linux_user_check(login):
|
2016-07-06 00:56:30 +00:00
|
|
|
""" Validation du pseudo pour respecter les contraintes unix"""
|
2018-12-27 19:46:33 +00:00
|
|
|
UNIX_LOGIN_PATTERN = re.compile("^[a-z][a-z0-9-]*[$]?$")
|
2016-07-08 01:12:28 +00:00
|
|
|
return UNIX_LOGIN_PATTERN.match(login)
|
|
|
|
|
|
|
|
|
|
|
|
def linux_user_validator(login):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" Retourne une erreur de validation si le login ne respecte
|
2017-10-04 15:53:30 +00:00
|
|
|
pas les contraintes unix (maj, min, chiffres ou tiret)"""
|
2016-07-08 01:12:28 +00:00
|
|
|
if not linux_user_check(login):
|
2018-07-30 15:00:41 +00:00
|
|
|
raise forms.ValidationError(
|
2019-11-20 00:52:11 +00:00
|
|
|
_("The username \"%(label)s\" contains forbidden characters."),
|
2019-11-04 16:55:03 +00:00
|
|
|
params={"label": login},
|
2016-07-06 00:56:30 +00:00
|
|
|
)
|
|
|
|
|
2018-08-14 11:09:13 +00:00
|
|
|
|
2016-10-12 10:24:01 +00:00
|
|
|
def get_fresh_user_uid():
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Renvoie le plus petit uid non pris. Fonction très paresseuse """
|
2019-11-04 16:55:03 +00:00
|
|
|
uids = list(range(int(min(UID_RANGES["users"])), int(max(UID_RANGES["users"]))))
|
2016-12-18 09:52:20 +00:00
|
|
|
try:
|
2019-11-04 16:55:03 +00:00
|
|
|
used_uids = list(User.objects.values_list("uid_number", flat=True))
|
2016-12-18 09:52:20 +00:00
|
|
|
except:
|
|
|
|
used_uids = []
|
2017-10-14 18:18:12 +00:00
|
|
|
free_uids = [id for id in uids if id not in used_uids]
|
2016-10-12 10:24:01 +00:00
|
|
|
return min(free_uids)
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-10-12 10:24:01 +00:00
|
|
|
def get_fresh_gid():
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Renvoie le plus petit gid libre """
|
2019-11-04 16:55:03 +00:00
|
|
|
gids = list(range(int(min(GID_RANGES["posix"])), int(max(GID_RANGES["posix"]))))
|
|
|
|
used_gids = list(ListRight.objects.values_list("gid", flat=True))
|
2017-10-14 18:18:12 +00:00
|
|
|
free_gids = [id for id in gids if id not in used_gids]
|
2016-10-12 10:24:01 +00:00
|
|
|
return min(free_gids)
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
class UserManager(BaseUserManager):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""User manager basique de django"""
|
2018-08-14 11:09:13 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
def _create_user(self, pseudo, surname, email, password=None, su=False):
|
2016-07-08 01:12:28 +00:00
|
|
|
if not pseudo:
|
2018-08-15 17:15:26 +00:00
|
|
|
raise ValueError(_("Users must have an username."))
|
2016-07-08 01:12:28 +00:00
|
|
|
|
|
|
|
if not linux_user_check(pseudo):
|
2018-08-15 17:15:26 +00:00
|
|
|
raise ValueError(_("Username should only contain [a-z0-9-]."))
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-01-21 16:40:00 +00:00
|
|
|
user = Adherent(
|
2016-07-08 01:12:28 +00:00
|
|
|
pseudo=pseudo,
|
|
|
|
surname=surname,
|
2018-01-21 16:40:00 +00:00
|
|
|
name=surname,
|
2018-08-05 21:01:42 +00:00
|
|
|
email=self.normalize_email(email),
|
2016-07-08 01:12:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
user.set_password(password)
|
2020-04-17 20:49:50 +00:00
|
|
|
user.confirm_mail()
|
2016-07-08 01:12:28 +00:00
|
|
|
if su:
|
2018-04-14 01:25:05 +00:00
|
|
|
user.is_superuser = True
|
2018-01-11 18:25:41 +00:00
|
|
|
user.save(using=self._db)
|
2016-07-08 01:12:28 +00:00
|
|
|
return user
|
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
def create_user(self, pseudo, surname, email, password=None):
|
2016-07-08 01:12:28 +00:00
|
|
|
"""
|
|
|
|
Creates and saves a User with the given pseudo, name, surname, email,
|
|
|
|
and password.
|
|
|
|
"""
|
2018-07-30 15:00:41 +00:00
|
|
|
return self._create_user(pseudo, surname, email, password, False)
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
def create_superuser(self, pseudo, surname, email, password):
|
2016-07-08 01:12:28 +00:00
|
|
|
"""
|
|
|
|
Creates and saves a superuser with the given pseudo, name, surname,
|
|
|
|
email, and password.
|
|
|
|
"""
|
2018-07-30 15:00:41 +00:00
|
|
|
return self._create_user(pseudo, surname, email, password, True)
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-04-14 01:25:05 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
class User(
|
|
|
|
RevMixin, FieldPermissionModelMixin, AbstractBaseUser, PermissionsMixin, AclMixin
|
|
|
|
):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Definition de l'utilisateur de base.
|
|
|
|
Champs principaux : name, surnname, pseudo, email, room, password
|
|
|
|
Herite du django BaseUser et du système d'auth django"""
|
2018-08-15 17:15:26 +00:00
|
|
|
|
2020-04-17 15:03:54 +00:00
|
|
|
STATE_ACTIVE = 0
|
|
|
|
STATE_DISABLED = 1
|
2016-10-18 15:11:45 +00:00
|
|
|
STATE_ARCHIVE = 2
|
2018-08-30 15:25:15 +00:00
|
|
|
STATE_NOT_YET_ACTIVE = 3
|
2019-03-17 02:00:28 +00:00
|
|
|
STATE_FULL_ARCHIVE = 4
|
2016-06-30 01:39:07 +00:00
|
|
|
STATES = (
|
2019-01-08 23:40:59 +00:00
|
|
|
(0, _("Active")),
|
|
|
|
(1, _("Disabled")),
|
|
|
|
(2, _("Archived")),
|
|
|
|
(3, _("Not yet active")),
|
2019-11-20 00:52:11 +00:00
|
|
|
(4, _("Fully archived")),
|
2020-04-17 15:35:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
EMAIL_STATE_VERIFIED = 0
|
|
|
|
EMAIL_STATE_UNVERIFIED = 1
|
|
|
|
EMAIL_STATE_PENDING = 2
|
|
|
|
EMAIL_STATES = (
|
2020-04-17 22:52:30 +00:00
|
|
|
(0, _("Confirmed")),
|
|
|
|
(1, _("Not confirmed")),
|
2020-04-17 15:35:24 +00:00
|
|
|
(2, _("Waiting for email confirmation")),
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2016-06-30 01:39:07 +00:00
|
|
|
|
|
|
|
surname = models.CharField(max_length=255)
|
2017-10-14 18:18:12 +00:00
|
|
|
pseudo = models.CharField(
|
|
|
|
max_length=32,
|
|
|
|
unique=True,
|
2018-08-15 17:15:26 +00:00
|
|
|
help_text=_("Must only contain letters, numerals or dashes."),
|
2019-11-04 16:55:03 +00:00
|
|
|
validators=[linux_user_validator],
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2018-08-14 10:21:58 +00:00
|
|
|
email = models.EmailField(
|
2020-04-21 15:01:03 +00:00
|
|
|
blank=True,
|
2020-04-21 16:31:26 +00:00
|
|
|
default="",
|
2019-11-04 16:55:03 +00:00
|
|
|
help_text=_("External email address allowing us to contact you."),
|
2018-08-14 10:21:58 +00:00
|
|
|
)
|
2018-07-30 15:00:41 +00:00
|
|
|
local_email_redirect = models.BooleanField(
|
2018-06-29 14:36:04 +00:00
|
|
|
default=False,
|
2019-11-04 16:55:03 +00:00
|
|
|
help_text=_(
|
|
|
|
"Enable redirection of the local email messages to the"
|
|
|
|
" main email address."
|
|
|
|
),
|
2018-06-29 14:36:04 +00:00
|
|
|
)
|
2018-07-30 15:00:41 +00:00
|
|
|
local_email_enabled = models.BooleanField(
|
2019-11-04 16:55:03 +00:00
|
|
|
default=False, help_text=_("Enable the local email account.")
|
2018-06-29 14:36:04 +00:00
|
|
|
)
|
2017-10-14 18:18:12 +00:00
|
|
|
school = models.ForeignKey(
|
2019-11-04 16:55:03 +00:00
|
|
|
"School", on_delete=models.PROTECT, null=True, blank=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
shell = models.ForeignKey(
|
2019-11-04 16:55:03 +00:00
|
|
|
"ListShell", on_delete=models.PROTECT, null=True, blank=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
comment = models.CharField(
|
2019-11-20 00:52:11 +00:00
|
|
|
help_text=_("Comment, school year."), max_length=255, blank=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2016-06-30 01:39:07 +00:00
|
|
|
pwd_ntlm = models.CharField(max_length=255)
|
2018-08-30 15:25:15 +00:00
|
|
|
state = models.IntegerField(choices=STATES, default=STATE_NOT_YET_ACTIVE)
|
2020-04-17 15:35:24 +00:00
|
|
|
email_state = models.IntegerField(choices=EMAIL_STATES, default=EMAIL_STATE_PENDING)
|
2016-07-02 23:29:26 +00:00
|
|
|
registered = models.DateTimeField(auto_now_add=True)
|
2017-06-25 02:12:21 +00:00
|
|
|
telephone = models.CharField(max_length=15, blank=True, null=True)
|
2019-11-04 16:55:03 +00:00
|
|
|
uid_number = models.PositiveIntegerField(default=get_fresh_user_uid, unique=True)
|
|
|
|
rezo_rez_uid = models.PositiveIntegerField(unique=True, blank=True, null=True)
|
2019-09-20 12:48:37 +00:00
|
|
|
shortcuts_enabled = models.BooleanField(
|
2019-11-20 00:52:11 +00:00
|
|
|
verbose_name=_("enable shortcuts on Re2o website"), default=True
|
2019-09-20 12:48:37 +00:00
|
|
|
)
|
2020-04-17 21:13:16 +00:00
|
|
|
email_change_date = models.DateTimeField(auto_now_add=True)
|
2016-06-30 01:39:07 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
USERNAME_FIELD = "pseudo"
|
|
|
|
REQUIRED_FIELDS = ["surname", "email"]
|
2016-07-08 01:12:28 +00:00
|
|
|
|
|
|
|
objects = UserManager()
|
2020-04-19 18:06:34 +00:00
|
|
|
request = None
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2017-12-31 19:53:38 +00:00
|
|
|
class Meta:
|
|
|
|
permissions = (
|
2019-11-04 16:55:03 +00:00
|
|
|
("change_user_password", _("Can change the password of a user")),
|
2018-08-15 17:15:26 +00:00
|
|
|
("change_user_state", _("Can edit the state of a user")),
|
|
|
|
("change_user_force", _("Can force the move")),
|
|
|
|
("change_user_shell", _("Can edit the shell of a user")),
|
2020-04-23 10:59:38 +00:00
|
|
|
("change_user_pseudo", _("Can edit the pseudo of a user")),
|
2019-11-04 16:55:03 +00:00
|
|
|
(
|
|
|
|
"change_user_groups",
|
2019-11-20 00:52:11 +00:00
|
|
|
_("Can edit the groups of rights of a user (critical permission)"),
|
2019-11-04 16:55:03 +00:00
|
|
|
),
|
2019-11-20 00:52:11 +00:00
|
|
|
("change_all_users", _("Can edit all users, including those with rights")),
|
2019-11-04 16:55:03 +00:00
|
|
|
("view_user", _("Can view a user object")),
|
2017-12-31 19:53:38 +00:00
|
|
|
)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("user (member or club)")
|
|
|
|
verbose_name_plural = _("users (members or clubs)")
|
2018-07-30 15:00:41 +00:00
|
|
|
|
2017-10-23 03:02:55 +00:00
|
|
|
@cached_property
|
|
|
|
def name(self):
|
|
|
|
"""Si il s'agit d'un adhérent, on renvoie le prénom"""
|
|
|
|
if self.is_class_adherent:
|
|
|
|
return self.adherent.name
|
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
return ""
|
2017-10-23 03:02:55 +00:00
|
|
|
|
2017-10-25 21:37:12 +00:00
|
|
|
@cached_property
|
|
|
|
def room(self):
|
|
|
|
"""Alias vers room """
|
|
|
|
if self.is_class_adherent:
|
|
|
|
return self.adherent.room
|
|
|
|
elif self.is_class_club:
|
|
|
|
return self.club.room
|
|
|
|
else:
|
2018-08-15 17:15:26 +00:00
|
|
|
raise NotImplementedError(_("Unknown type."))
|
2017-10-25 21:37:12 +00:00
|
|
|
|
2018-08-08 22:23:08 +00:00
|
|
|
@cached_property
|
|
|
|
def get_mail_addresses(self):
|
|
|
|
if self.local_email_enabled:
|
|
|
|
return self.emailaddress_set.all()
|
|
|
|
return None
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def get_mail(self):
|
|
|
|
"""Return the mail address choosen by the user"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
not OptionalUser.get_cached_value("local_email_accounts_enabled")
|
|
|
|
or not self.local_email_enabled
|
|
|
|
or self.local_email_redirect
|
|
|
|
):
|
2018-08-08 22:23:08 +00:00
|
|
|
return str(self.email)
|
|
|
|
else:
|
2018-08-10 22:13:27 +00:00
|
|
|
return str(self.emailaddress_set.get(local_part=self.pseudo.lower()))
|
2018-08-08 22:23:08 +00:00
|
|
|
|
2017-10-23 03:02:55 +00:00
|
|
|
@cached_property
|
2019-12-27 16:00:20 +00:00
|
|
|
def class_type(self):
|
|
|
|
"""Returns the type of that user; returns database keyname"""
|
|
|
|
if hasattr(self, "adherent"):
|
|
|
|
return "Adherent"
|
|
|
|
elif hasattr(self, "club"):
|
|
|
|
return "Club"
|
|
|
|
else:
|
|
|
|
raise NotImplementedError(_("Unknown type."))
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def class_display(self):
|
|
|
|
"""Returns the typename of that user to display for user interface"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if hasattr(self, "adherent"):
|
2018-08-15 17:15:26 +00:00
|
|
|
return _("Member")
|
2019-11-04 16:55:03 +00:00
|
|
|
elif hasattr(self, "club"):
|
2018-08-15 17:15:26 +00:00
|
|
|
return _("Club")
|
2017-10-23 03:02:55 +00:00
|
|
|
else:
|
2018-08-15 17:15:26 +00:00
|
|
|
raise NotImplementedError(_("Unknown type."))
|
2017-10-23 03:02:55 +00:00
|
|
|
|
2018-08-05 15:22:12 +00:00
|
|
|
@cached_property
|
|
|
|
def gid_number(self):
|
|
|
|
"""renvoie le gid par défaut des users"""
|
2019-11-04 16:55:03 +00:00
|
|
|
return int(LDAP["user_gid"])
|
2018-08-05 15:22:12 +00:00
|
|
|
|
2017-10-23 03:02:55 +00:00
|
|
|
@cached_property
|
|
|
|
def is_class_club(self):
|
2018-04-14 23:16:49 +00:00
|
|
|
""" Returns True if the object is a Club (subclassing User) """
|
|
|
|
# TODO : change to isinstance (cleaner)
|
2019-11-04 16:55:03 +00:00
|
|
|
return hasattr(self, "club")
|
2017-10-23 03:02:55 +00:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def is_class_adherent(self):
|
2018-04-14 23:16:49 +00:00
|
|
|
""" Returns True if the object is a Adherent (subclassing User) """
|
|
|
|
# TODO : change to isinstance (cleaner)
|
2019-11-04 16:55:03 +00:00
|
|
|
return hasattr(self, "adherent")
|
2017-10-23 03:02:55 +00:00
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
@property
|
|
|
|
def is_active(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Renvoie si l'user est à l'état actif"""
|
2019-11-04 16:55:03 +00:00
|
|
|
allow_archived = OptionalUser.get_cached_value("allow_archived_connexion")
|
|
|
|
return (
|
|
|
|
self.state == self.STATE_ACTIVE
|
|
|
|
or self.state == self.STATE_NOT_YET_ACTIVE
|
|
|
|
or (
|
|
|
|
allow_archived
|
|
|
|
and self.state in (self.STATE_ARCHIVE, self.STATE_FULL_ARCHIVE)
|
|
|
|
)
|
|
|
|
)
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-08-31 11:26:54 +00:00
|
|
|
def set_active(self):
|
2019-03-17 02:00:28 +00:00
|
|
|
"""Enable this user if he subscribed successfully one time before
|
|
|
|
Reenable it if it was archived
|
2020-04-17 15:03:51 +00:00
|
|
|
Do nothing if disabled or waiting for email confirmation"""
|
2018-08-31 11:26:54 +00:00
|
|
|
if self.state == self.STATE_NOT_YET_ACTIVE:
|
2019-11-04 16:55:03 +00:00
|
|
|
if self.facture_set.filter(valid=True).filter(
|
|
|
|
Q(vente__type_cotisation="All") | Q(vente__type_cotisation="Adhesion")
|
|
|
|
).exists() or OptionalUser.get_cached_value("all_users_active"):
|
2018-08-31 11:26:54 +00:00
|
|
|
self.state = self.STATE_ACTIVE
|
|
|
|
self.save()
|
2019-03-17 02:00:28 +00:00
|
|
|
if self.state == self.STATE_ARCHIVE or self.state == self.STATE_FULL_ARCHIVE:
|
|
|
|
self.state = self.STATE_ACTIVE
|
|
|
|
self.unarchive()
|
|
|
|
self.save()
|
2018-08-31 11:26:54 +00:00
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
@property
|
|
|
|
def is_staff(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Fonction de base django, renvoie si l'user est admin"""
|
2016-07-08 01:12:28 +00:00
|
|
|
return self.is_admin
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_admin(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Renvoie si l'user est admin"""
|
2018-04-14 01:25:05 +00:00
|
|
|
admin, _ = Group.objects.get_or_create(name="admin")
|
2018-03-08 17:25:53 +00:00
|
|
|
return self.is_superuser or admin in self.groups.all()
|
2016-07-08 01:12:28 +00:00
|
|
|
|
|
|
|
def get_full_name(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Renvoie le nom complet de l'user formaté nom/prénom"""
|
2017-10-23 03:02:55 +00:00
|
|
|
name = self.name
|
|
|
|
if name:
|
2019-01-08 23:40:59 +00:00
|
|
|
return "%s %s" % (name, self.surname)
|
2017-10-23 03:02:55 +00:00
|
|
|
else:
|
|
|
|
return self.surname
|
2016-07-08 01:12:28 +00:00
|
|
|
|
|
|
|
def get_short_name(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Renvoie seulement le nom"""
|
2017-10-23 03:02:55 +00:00
|
|
|
return self.surname
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-08-04 21:13:01 +00:00
|
|
|
@cached_property
|
|
|
|
def gid(self):
|
|
|
|
"""return the default gid of user"""
|
2019-11-04 16:55:03 +00:00
|
|
|
return LDAP["user_gid"]
|
2018-08-04 21:13:01 +00:00
|
|
|
|
2018-03-24 20:19:52 +00:00
|
|
|
@property
|
|
|
|
def get_shell(self):
|
|
|
|
""" A utiliser de préférence, prend le shell par défaut
|
|
|
|
si il n'est pas défini"""
|
2019-11-04 16:55:03 +00:00
|
|
|
return self.shell or OptionalUser.get_cached_value("shell_default")
|
2018-03-24 20:19:52 +00:00
|
|
|
|
2018-09-08 19:11:04 +00:00
|
|
|
@cached_property
|
|
|
|
def home_directory(self):
|
2019-11-04 16:55:03 +00:00
|
|
|
return "/home/" + self.pseudo
|
2018-09-08 19:11:04 +00:00
|
|
|
|
2018-07-19 18:46:12 +00:00
|
|
|
@cached_property
|
|
|
|
def get_shadow_expire(self):
|
|
|
|
"""Return the shadow_expire value for the user"""
|
2020-04-17 15:35:24 +00:00
|
|
|
if self.state == self.STATE_DISABLED or self.email_state == self.EMAIL_STATE_UNVERIFIED:
|
2018-07-19 18:46:12 +00:00
|
|
|
return str(0)
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2016-07-10 02:02:48 +00:00
|
|
|
def end_adhesion(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Renvoie la date de fin d'adhésion d'un user. Examine les objets
|
|
|
|
cotisation"""
|
2019-11-04 16:55:03 +00:00
|
|
|
date_max = (
|
|
|
|
Cotisation.objects.filter(
|
|
|
|
vente__in=Vente.objects.filter(
|
|
|
|
facture__in=Facture.objects.filter(user=self).exclude(valid=False)
|
|
|
|
)
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
.filter(Q(type_cotisation="All") | Q(type_cotisation="Adhesion"))
|
|
|
|
.aggregate(models.Max("date_end"))["date_end__max"]
|
|
|
|
)
|
2017-10-28 03:12:18 +00:00
|
|
|
return date_max
|
|
|
|
|
|
|
|
def end_connexion(self):
|
|
|
|
""" Renvoie la date de fin de connexion d'un user. Examine les objets
|
|
|
|
cotisation"""
|
2019-11-04 16:55:03 +00:00
|
|
|
date_max = (
|
|
|
|
Cotisation.objects.filter(
|
|
|
|
vente__in=Vente.objects.filter(
|
|
|
|
facture__in=Facture.objects.filter(user=self).exclude(valid=False)
|
|
|
|
)
|
2017-10-28 03:12:18 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
.filter(Q(type_cotisation="All") | Q(type_cotisation="Connexion"))
|
|
|
|
.aggregate(models.Max("date_end"))["date_end__max"]
|
|
|
|
)
|
2016-07-10 02:02:48 +00:00
|
|
|
return date_max
|
|
|
|
|
|
|
|
def is_adherent(self):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" Renvoie True si l'user est adhérent : si
|
|
|
|
self.end_adhesion()>now"""
|
2017-07-18 01:49:36 +00:00
|
|
|
end = self.end_adhesion()
|
2016-07-10 02:02:48 +00:00
|
|
|
if not end:
|
|
|
|
return False
|
2018-01-10 20:20:54 +00:00
|
|
|
elif end < timezone.now():
|
2016-07-10 02:02:48 +00:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2017-10-28 03:12:18 +00:00
|
|
|
def is_connected(self):
|
|
|
|
""" Renvoie True si l'user est adhérent : si
|
|
|
|
self.end_adhesion()>now et end_connexion>now"""
|
|
|
|
end = self.end_connexion()
|
|
|
|
if not end:
|
|
|
|
return False
|
2018-01-10 20:20:54 +00:00
|
|
|
elif end < timezone.now():
|
2017-10-28 03:12:18 +00:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return self.is_adherent()
|
|
|
|
|
2016-07-10 02:02:48 +00:00
|
|
|
def end_ban(self):
|
|
|
|
""" Renvoie la date de fin de ban d'un user, False sinon """
|
2019-11-04 16:55:03 +00:00
|
|
|
date_max = Ban.objects.filter(user=self).aggregate(models.Max("date_end"))[
|
|
|
|
"date_end__max"
|
|
|
|
]
|
2016-07-10 02:02:48 +00:00
|
|
|
return date_max
|
|
|
|
|
|
|
|
def end_whitelist(self):
|
2017-05-26 01:07:10 +00:00
|
|
|
""" Renvoie la date de fin de whitelist d'un user, False sinon """
|
2019-11-04 16:55:03 +00:00
|
|
|
date_max = Whitelist.objects.filter(user=self).aggregate(
|
|
|
|
models.Max("date_end")
|
|
|
|
)["date_end__max"]
|
2016-07-10 02:02:48 +00:00
|
|
|
return date_max
|
|
|
|
|
|
|
|
def is_ban(self):
|
|
|
|
""" Renvoie si un user est banni ou non """
|
2018-01-10 17:35:13 +00:00
|
|
|
end = self.end_ban()
|
2016-07-10 02:02:48 +00:00
|
|
|
if not end:
|
|
|
|
return False
|
2018-01-10 20:20:54 +00:00
|
|
|
elif end < timezone.now():
|
2016-07-10 02:02:48 +00:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def is_whitelisted(self):
|
|
|
|
""" Renvoie si un user est whitelisté ou non """
|
2018-01-10 17:35:13 +00:00
|
|
|
end = self.end_whitelist()
|
2016-07-10 02:02:48 +00:00
|
|
|
if not end:
|
|
|
|
return False
|
2018-01-10 20:20:54 +00:00
|
|
|
elif end < timezone.now():
|
2016-07-10 02:02:48 +00:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def has_access(self):
|
|
|
|
""" Renvoie si un utilisateur a accès à internet """
|
2019-11-04 16:55:03 +00:00
|
|
|
return (
|
2020-04-17 15:35:24 +00:00
|
|
|
self.state == User.STATE_ACTIVE
|
|
|
|
and self.email_state != User.EMAIL_STATE_UNVERIFIED
|
2019-11-04 16:55:03 +00:00
|
|
|
and not self.is_ban()
|
|
|
|
and (self.is_connected() or self.is_whitelisted())
|
|
|
|
) or self == AssoOption.get_cached_value("utilisateur_asso")
|
2016-07-10 02:02:48 +00:00
|
|
|
|
2017-05-26 01:07:10 +00:00
|
|
|
def end_access(self):
|
|
|
|
""" Renvoie la date de fin normale d'accès (adhésion ou whiteliste)"""
|
2017-10-28 03:12:18 +00:00
|
|
|
if not self.end_connexion():
|
2018-01-10 17:35:13 +00:00
|
|
|
if not self.end_whitelist():
|
2017-05-26 01:07:10 +00:00
|
|
|
return None
|
|
|
|
else:
|
2018-01-10 17:35:13 +00:00
|
|
|
return self.end_whitelist()
|
2017-05-26 01:07:10 +00:00
|
|
|
else:
|
2018-01-10 17:35:13 +00:00
|
|
|
if not self.end_whitelist():
|
2017-10-28 03:12:18 +00:00
|
|
|
return self.end_connexion()
|
2017-10-14 18:18:12 +00:00
|
|
|
else:
|
2018-01-10 17:35:13 +00:00
|
|
|
return max(self.end_connexion(), self.end_whitelist())
|
2017-05-26 01:07:10 +00:00
|
|
|
|
2017-06-26 17:23:01 +00:00
|
|
|
@cached_property
|
|
|
|
def solde(self):
|
2018-07-03 14:22:38 +00:00
|
|
|
""" Renvoie le solde d'un user.
|
2017-10-04 15:53:30 +00:00
|
|
|
Somme les crédits de solde et retire les débit payés par solde"""
|
2018-07-05 13:21:51 +00:00
|
|
|
solde_objects = Paiement.objects.filter(is_balance=True)
|
2019-11-04 16:55:03 +00:00
|
|
|
somme_debit = (
|
|
|
|
Vente.objects.filter(
|
|
|
|
facture__in=Facture.objects.filter(
|
|
|
|
user=self, paiement__in=solde_objects, valid=True
|
|
|
|
)
|
|
|
|
).aggregate(
|
|
|
|
total=models.Sum(
|
|
|
|
models.F("prix") * models.F("number"),
|
|
|
|
output_field=models.DecimalField(),
|
|
|
|
)
|
|
|
|
)[
|
|
|
|
"total"
|
|
|
|
]
|
|
|
|
or 0
|
|
|
|
)
|
|
|
|
somme_credit = (
|
|
|
|
Vente.objects.filter(
|
|
|
|
facture__in=Facture.objects.filter(user=self, valid=True), name="solde"
|
|
|
|
).aggregate(
|
|
|
|
total=models.Sum(
|
|
|
|
models.F("prix") * models.F("number"),
|
|
|
|
output_field=models.DecimalField(),
|
|
|
|
)
|
|
|
|
)[
|
|
|
|
"total"
|
|
|
|
]
|
|
|
|
or 0
|
|
|
|
)
|
2018-07-03 14:22:38 +00:00
|
|
|
return somme_credit - somme_debit
|
2017-06-26 17:23:01 +00:00
|
|
|
|
2019-03-17 03:46:55 +00:00
|
|
|
@classmethod
|
|
|
|
def users_interfaces(cls, users, active=True, all_interfaces=False):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" Renvoie toutes les interfaces dont les machines appartiennent à
|
|
|
|
self. Par defaut ne prend que les interfaces actives"""
|
2019-03-17 02:00:28 +00:00
|
|
|
if all_interfaces:
|
|
|
|
return Interface.objects.filter(
|
2019-03-17 03:46:55 +00:00
|
|
|
machine__in=Machine.objects.filter(user__in=users)
|
2019-11-04 16:55:03 +00:00
|
|
|
).select_related("domain__extension")
|
2019-03-17 02:00:28 +00:00
|
|
|
else:
|
|
|
|
return Interface.objects.filter(
|
2019-03-17 03:46:55 +00:00
|
|
|
machine__in=Machine.objects.filter(user__in=users, active=active)
|
2019-11-04 16:55:03 +00:00
|
|
|
).select_related("domain__extension")
|
2016-11-24 00:18:15 +00:00
|
|
|
|
2019-03-17 03:46:55 +00:00
|
|
|
def user_interfaces(self, active=True, all_interfaces=False):
|
|
|
|
""" Renvoie toutes les interfaces dont les machines appartiennent à
|
|
|
|
self. Par defaut ne prend que les interfaces actives"""
|
2019-11-04 16:55:03 +00:00
|
|
|
return self.users_interfaces(
|
|
|
|
[self], active=active, all_interfaces=all_interfaces
|
|
|
|
)
|
2019-03-17 03:46:55 +00:00
|
|
|
|
2017-07-21 04:49:39 +00:00
|
|
|
def assign_ips(self):
|
|
|
|
""" Assign une ipv4 aux machines d'un user """
|
|
|
|
interfaces = self.user_interfaces()
|
2019-03-17 03:46:55 +00:00
|
|
|
with transaction.atomic(), reversion.create_revision():
|
|
|
|
Interface.mass_assign_ipv4(interfaces)
|
2019-11-20 00:52:11 +00:00
|
|
|
reversion.set_comment("IPv4 assignment")
|
2017-07-21 04:49:39 +00:00
|
|
|
|
|
|
|
def unassign_ips(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Désassigne les ipv4 aux machines de l'user"""
|
2017-07-21 04:49:39 +00:00
|
|
|
interfaces = self.user_interfaces()
|
2019-03-17 03:46:55 +00:00
|
|
|
with transaction.atomic(), reversion.create_revision():
|
|
|
|
Interface.mass_unassign_ipv4(interfaces)
|
2019-11-20 00:52:11 +00:00
|
|
|
reversion.set_comment("IPv4 unassignment")
|
2019-03-17 03:46:55 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def mass_unassign_ips(cls, users_list):
|
|
|
|
interfaces = cls.users_interfaces(users_list)
|
|
|
|
with transaction.atomic(), reversion.create_revision():
|
|
|
|
Interface.mass_unassign_ipv4(interfaces)
|
2019-11-20 00:52:11 +00:00
|
|
|
reversion.set_comment("IPv4 assignment")
|
2019-03-17 03:46:55 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def mass_disable_email(cls, queryset_users):
|
|
|
|
"""Disable email account and redirection"""
|
|
|
|
queryset_users.update(local_email_enabled=False)
|
|
|
|
queryset_users.update(local_email_redirect=False)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def mass_delete_data(cls, queryset_users):
|
|
|
|
"""This users will be completely archived, so only keep mandatory data"""
|
|
|
|
cls.mass_disable_email(queryset_users)
|
2019-03-17 16:56:46 +00:00
|
|
|
Machine.mass_delete(Machine.objects.filter(user__in=queryset_users))
|
2019-03-17 03:46:55 +00:00
|
|
|
cls.ldap_delete_users(queryset_users)
|
2017-07-21 04:49:39 +00:00
|
|
|
|
2018-10-31 15:30:56 +00:00
|
|
|
def disable_email(self):
|
|
|
|
"""Disable email account and redirection"""
|
2019-11-04 16:55:03 +00:00
|
|
|
self.local_email_enabled = False
|
|
|
|
self.local_email_redirect = False
|
2018-10-31 15:30:56 +00:00
|
|
|
|
2019-03-17 02:00:28 +00:00
|
|
|
def delete_data(self):
|
|
|
|
"""This user will be completely archived, so only keep mandatory data"""
|
2019-03-17 03:46:55 +00:00
|
|
|
self.disable_email()
|
|
|
|
self.machine_set.all().delete()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def mass_archive(cls, users_list):
|
2019-03-17 16:20:11 +00:00
|
|
|
"""Mass Archive several users, take a queryset
|
|
|
|
Copy Queryset to avoid eval problem with queryset update"""
|
2019-11-04 16:55:03 +00:00
|
|
|
# Force eval of queryset
|
2019-03-17 16:20:11 +00:00
|
|
|
bool(users_list)
|
|
|
|
users_list = users_list.all()
|
2019-03-17 03:46:55 +00:00
|
|
|
cls.mass_unassign_ips(users_list)
|
|
|
|
users_list.update(state=User.STATE_ARCHIVE)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def mass_full_archive(cls, users_list):
|
2019-03-17 16:20:11 +00:00
|
|
|
"""Mass Archive several users, take a queryset
|
|
|
|
Copy Queryset to avoid eval problem with queryset update"""
|
2019-11-04 16:55:03 +00:00
|
|
|
# Force eval of queryset
|
2019-03-17 16:20:11 +00:00
|
|
|
bool(users_list)
|
|
|
|
users_list = users_list.all()
|
2019-03-17 03:46:55 +00:00
|
|
|
cls.mass_unassign_ips(users_list)
|
|
|
|
cls.mass_delete_data(users_list)
|
|
|
|
users_list.update(state=User.STATE_FULL_ARCHIVE)
|
2019-03-17 02:00:28 +00:00
|
|
|
|
2017-07-21 04:49:39 +00:00
|
|
|
def archive(self):
|
2018-07-20 10:57:54 +00:00
|
|
|
""" Filling the user; no more active"""
|
2017-07-21 04:49:39 +00:00
|
|
|
self.unassign_ips()
|
2019-03-17 02:00:28 +00:00
|
|
|
|
|
|
|
def full_archive(self):
|
|
|
|
"""Full Archive = Archive + Service access complete deletion"""
|
|
|
|
self.archive()
|
|
|
|
self.delete_data()
|
2019-03-17 18:36:44 +00:00
|
|
|
self.ldap_del()
|
2017-07-21 04:49:39 +00:00
|
|
|
|
|
|
|
def unarchive(self):
|
2018-07-20 10:57:54 +00:00
|
|
|
"""Unfilling the user"""
|
2017-07-21 04:49:39 +00:00
|
|
|
self.assign_ips()
|
2019-03-17 02:00:28 +00:00
|
|
|
self.ldap_sync()
|
2018-07-19 18:37:01 +00:00
|
|
|
|
|
|
|
def state_sync(self):
|
2020-04-17 11:01:10 +00:00
|
|
|
"""Archive, or unarchive, if the user was not active/or archived before"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
self.__original_state != self.STATE_ACTIVE
|
|
|
|
and self.state == self.STATE_ACTIVE
|
|
|
|
):
|
2018-07-19 18:37:01 +00:00
|
|
|
self.unarchive()
|
2019-11-04 16:55:03 +00:00
|
|
|
elif (
|
|
|
|
self.__original_state != self.STATE_ARCHIVE
|
|
|
|
and self.state == self.STATE_ARCHIVE
|
|
|
|
):
|
2018-07-19 18:37:01 +00:00
|
|
|
self.archive()
|
2019-11-04 16:55:03 +00:00
|
|
|
elif (
|
|
|
|
self.__original_state != self.STATE_FULL_ARCHIVE
|
|
|
|
and self.state == self.STATE_FULL_ARCHIVE
|
|
|
|
):
|
2019-03-17 02:00:28 +00:00
|
|
|
self.full_archive()
|
2020-04-17 11:01:10 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
def ldap_sync(
|
|
|
|
self, base=True, access_refresh=True, mac_refresh=True, group_refresh=False
|
|
|
|
):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" Synchronisation du ldap. Synchronise dans le ldap les attributs de
|
|
|
|
self
|
|
|
|
Options : base : synchronise tous les attributs de base - nom, prenom,
|
|
|
|
mail, password, shell, home
|
|
|
|
access_refresh : synchronise le dialup_access notant si l'user a accès
|
|
|
|
aux services
|
2017-10-26 23:46:43 +00:00
|
|
|
mac_refresh : synchronise les machines de l'user
|
2017-12-17 03:03:55 +00:00
|
|
|
group_refresh : synchronise les group de l'user
|
2017-10-26 23:46:43 +00:00
|
|
|
Si l'instance n'existe pas, on crée le ldapuser correspondant"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if sys.version_info[0] >= 3 and (
|
|
|
|
self.state == self.STATE_ACTIVE
|
|
|
|
or self.state == self.STATE_ARCHIVE
|
|
|
|
or self.state == self.STATE_DISABLED
|
|
|
|
):
|
2018-08-10 14:45:17 +00:00
|
|
|
self.refresh_from_db()
|
|
|
|
try:
|
|
|
|
user_ldap = LdapUser.objects.get(uidNumber=self.uid_number)
|
|
|
|
except LdapUser.DoesNotExist:
|
2018-08-31 11:35:33 +00:00
|
|
|
user_ldap = LdapUser(uidNumber=self.uid_number)
|
|
|
|
base = True
|
|
|
|
access_refresh = True
|
|
|
|
mac_refresh = True
|
2018-08-10 14:45:17 +00:00
|
|
|
if base:
|
|
|
|
user_ldap.name = self.pseudo
|
|
|
|
user_ldap.sn = self.pseudo
|
|
|
|
user_ldap.dialupAccess = str(self.has_access())
|
2018-09-08 19:11:04 +00:00
|
|
|
user_ldap.home_directory = self.home_directory
|
2018-08-10 14:45:17 +00:00
|
|
|
user_ldap.mail = self.get_mail
|
2019-11-04 16:55:03 +00:00
|
|
|
user_ldap.given_name = (
|
|
|
|
self.surname.lower() + "_" + self.name.lower()[:3]
|
|
|
|
)
|
|
|
|
user_ldap.gid = LDAP["user_gid"]
|
|
|
|
if "{SSHA}" in self.password or "{SMD5}" in self.password:
|
2018-08-10 14:45:17 +00:00
|
|
|
# We remove the extra $ added at import from ldap
|
2019-11-04 16:55:03 +00:00
|
|
|
user_ldap.user_password = self.password[:6] + self.password[7:]
|
|
|
|
elif "{crypt}" in self.password:
|
2018-08-10 14:45:17 +00:00
|
|
|
# depending on the length, we need to remove or not a $
|
2018-08-14 11:09:13 +00:00
|
|
|
if len(self.password) == 41:
|
2018-08-10 14:45:17 +00:00
|
|
|
user_ldap.user_password = self.password
|
2018-08-14 10:21:58 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
user_ldap.user_password = self.password[:7] + self.password[8:]
|
2018-08-10 14:45:17 +00:00
|
|
|
|
|
|
|
user_ldap.sambat_nt_password = self.pwd_ntlm.upper()
|
|
|
|
if self.get_shell:
|
|
|
|
user_ldap.login_shell = str(self.get_shell)
|
|
|
|
user_ldap.shadowexpire = self.get_shadow_expire
|
|
|
|
if access_refresh:
|
|
|
|
user_ldap.dialupAccess = str(self.has_access())
|
|
|
|
if mac_refresh:
|
2019-11-04 16:55:03 +00:00
|
|
|
user_ldap.macs = [
|
|
|
|
str(mac)
|
|
|
|
for mac in Interface.objects.filter(machine__user=self)
|
|
|
|
.values_list("mac_address", flat=True)
|
|
|
|
.distinct()
|
|
|
|
]
|
2018-08-10 14:45:17 +00:00
|
|
|
if group_refresh:
|
|
|
|
# Need to refresh all groups because we don't know which groups
|
|
|
|
# were updated during edition of groups and the user may no longer
|
|
|
|
# be part of the updated group (case of group removal)
|
|
|
|
for group in Group.objects.all():
|
2019-11-04 16:55:03 +00:00
|
|
|
if hasattr(group, "listright"):
|
2018-08-10 14:45:17 +00:00
|
|
|
group.listright.ldap_sync()
|
|
|
|
user_ldap.save()
|
2016-07-26 00:54:32 +00:00
|
|
|
|
|
|
|
def ldap_del(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Supprime la version ldap de l'user"""
|
2016-07-26 00:54:32 +00:00
|
|
|
try:
|
|
|
|
user_ldap = LdapUser.objects.get(name=self.pseudo)
|
|
|
|
user_ldap.delete()
|
|
|
|
except LdapUser.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
2019-03-17 03:46:55 +00:00
|
|
|
@classmethod
|
|
|
|
def ldap_delete_users(cls, queryset_users):
|
|
|
|
"""Delete multiple users in ldap"""
|
2019-11-04 16:55:03 +00:00
|
|
|
LdapUser.objects.filter(
|
|
|
|
name__in=list(queryset_users.values_list("pseudo", flat=True))
|
|
|
|
)
|
2019-03-17 03:46:55 +00:00
|
|
|
|
2020-04-19 18:06:34 +00:00
|
|
|
def notif_inscription(self, request=None):
|
2017-08-28 19:51:12 +00:00
|
|
|
""" Prend en argument un objet user, envoie un mail de bienvenue """
|
2019-11-04 16:55:03 +00:00
|
|
|
template = loader.get_template("users/email_welcome")
|
|
|
|
mailmessageoptions, _created = MailMessageOption.objects.get_or_create()
|
2019-09-01 21:25:41 +00:00
|
|
|
context = {
|
2019-11-04 16:55:03 +00:00
|
|
|
"nom": self.get_full_name(),
|
|
|
|
"asso_name": AssoOption.get_cached_value("name"),
|
|
|
|
"asso_email": AssoOption.get_cached_value("contact"),
|
|
|
|
"welcome_mail_fr": mailmessageoptions.welcome_mail_fr,
|
|
|
|
"welcome_mail_en": mailmessageoptions.welcome_mail_en,
|
|
|
|
"pseudo": self.pseudo,
|
2019-09-01 21:25:41 +00:00
|
|
|
}
|
2020-04-19 18:06:34 +00:00
|
|
|
|
2020-04-19 18:15:23 +00:00
|
|
|
send_mail(
|
2020-04-19 18:06:34 +00:00
|
|
|
request,
|
2019-11-04 16:55:03 +00:00
|
|
|
"Bienvenue au %(name)s / Welcome to %(name)s"
|
|
|
|
% {"name": AssoOption.get_cached_value("name")},
|
|
|
|
"",
|
|
|
|
GeneralOption.get_cached_value("email_from"),
|
2018-04-03 02:58:00 +00:00
|
|
|
[self.email],
|
2019-11-04 16:55:03 +00:00
|
|
|
html_message=template.render(context),
|
2018-04-03 02:58:00 +00:00
|
|
|
)
|
2017-08-28 19:51:12 +00:00
|
|
|
|
|
|
|
def reset_passwd_mail(self, request):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" Prend en argument un request, envoie un mail de
|
|
|
|
réinitialisation de mot de pass """
|
2017-08-28 19:51:12 +00:00
|
|
|
req = Request()
|
|
|
|
req.type = Request.PASSWD
|
|
|
|
req.user = self
|
|
|
|
req.save()
|
2019-11-04 16:55:03 +00:00
|
|
|
template = loader.get_template("users/email_passwd_request")
|
2017-10-14 18:18:12 +00:00
|
|
|
context = {
|
2019-11-04 16:55:03 +00:00
|
|
|
"name": req.user.get_full_name(),
|
|
|
|
"asso": AssoOption.get_cached_value("name"),
|
|
|
|
"asso_mail": AssoOption.get_cached_value("contact"),
|
|
|
|
"site_name": GeneralOption.get_cached_value("site_name"),
|
|
|
|
"url": request.build_absolute_uri(
|
|
|
|
reverse("users:process", kwargs={"token": req.token})
|
2018-04-14 01:25:05 +00:00
|
|
|
),
|
2019-11-20 00:52:11 +00:00
|
|
|
"expire_in": str(GeneralOption.get_cached_value("req_expire_hrs")),
|
2018-04-14 01:25:05 +00:00
|
|
|
}
|
2020-04-19 18:06:34 +00:00
|
|
|
|
2020-04-19 18:15:23 +00:00
|
|
|
send_mail(
|
2020-04-19 18:06:34 +00:00
|
|
|
request,
|
2019-11-20 00:52:11 +00:00
|
|
|
"Changement de mot de passe de %(name)s / Password change for "
|
2019-11-04 16:55:03 +00:00
|
|
|
"%(name)s" % {"name": AssoOption.get_cached_value("name")},
|
2018-04-03 02:58:00 +00:00
|
|
|
template.render(context),
|
2019-11-04 16:55:03 +00:00
|
|
|
GeneralOption.get_cached_value("email_from"),
|
2018-04-03 02:58:00 +00:00
|
|
|
[req.user.email],
|
2019-11-04 16:55:03 +00:00
|
|
|
fail_silently=False,
|
2018-04-03 02:58:00 +00:00
|
|
|
)
|
2017-08-28 19:51:12 +00:00
|
|
|
|
2020-04-17 18:23:28 +00:00
|
|
|
def send_confirm_email_if_necessary(self, request):
|
2020-04-17 21:07:40 +00:00
|
|
|
"""Update the user's email state:
|
|
|
|
* If the user changed email, it needs to be confirmed
|
|
|
|
* If they're not fully archived, send a confirmation email
|
|
|
|
|
2020-04-17 18:23:28 +00:00
|
|
|
Returns whether an email was sent"""
|
|
|
|
# Only update the state if the email changed
|
|
|
|
if self.__original_email == self.email:
|
|
|
|
return False
|
|
|
|
|
2020-04-17 21:07:40 +00:00
|
|
|
# If the user was previously in the PENDING or UNVERIFIED state,
|
|
|
|
# we can't update email_change_date otherwise it would push back
|
|
|
|
# their due date
|
|
|
|
# However, if the user is in the VERIFIED state, we reset the date
|
|
|
|
if self.email_state == self.EMAIL_STATE_VERIFIED:
|
|
|
|
self.email_change_date = timezone.now()
|
|
|
|
|
|
|
|
# Remember that the user needs to confirm their email address again
|
2020-04-17 18:50:26 +00:00
|
|
|
self.email_state = self.EMAIL_STATE_PENDING
|
2020-04-17 21:07:40 +00:00
|
|
|
self.save()
|
2020-04-17 18:50:26 +00:00
|
|
|
|
2020-04-17 21:07:40 +00:00
|
|
|
# Fully archived users shouldn't get an email, so stop here
|
2020-04-17 19:11:24 +00:00
|
|
|
if self.state == self.STATE_FULL_ARCHIVE:
|
2020-04-17 18:23:28 +00:00
|
|
|
return False
|
|
|
|
|
2020-04-17 21:07:40 +00:00
|
|
|
# Send the email
|
2020-04-17 18:23:28 +00:00
|
|
|
self.confirm_email_address_mail(request)
|
|
|
|
return True
|
|
|
|
|
2020-04-17 22:12:22 +00:00
|
|
|
def trigger_email_changed_state(self, request):
|
|
|
|
"""Trigger an email, and changed values after email_state been manually updated"""
|
|
|
|
if self.email_state == self.EMAIL_STATE_VERIFIED:
|
|
|
|
return False
|
|
|
|
|
|
|
|
self.email_change_date = timezone.now()
|
2020-04-17 22:16:27 +00:00
|
|
|
self.save()
|
2020-04-17 22:12:22 +00:00
|
|
|
|
|
|
|
self.confirm_email_address_mail(request)
|
|
|
|
return True
|
|
|
|
|
2020-04-17 12:08:54 +00:00
|
|
|
def confirm_email_before_date(self):
|
2020-04-17 20:54:27 +00:00
|
|
|
if self.email_state == self.EMAIL_STATE_VERIFIED:
|
2020-04-17 12:08:54 +00:00
|
|
|
return None
|
|
|
|
|
2020-04-17 15:03:54 +00:00
|
|
|
days = OptionalUser.get_cached_value("disable_emailnotyetconfirmed")
|
2020-04-17 12:54:28 +00:00
|
|
|
return self.email_change_date + timedelta(days=days)
|
2020-04-17 12:08:54 +00:00
|
|
|
|
2020-04-16 20:06:14 +00:00
|
|
|
def confirm_email_address_mail(self, request):
|
|
|
|
"""Prend en argument un request, envoie un mail pour
|
|
|
|
confirmer l'adresse"""
|
2020-04-17 20:12:12 +00:00
|
|
|
# Delete all older requests for this user, that aren't for this email
|
|
|
|
filter = Q(user=self) & Q(type=Request.EMAIL) & ~Q(email=self.email)
|
|
|
|
Request.objects.filter(filter).delete()
|
|
|
|
|
2020-04-17 18:23:28 +00:00
|
|
|
# Create the request and send the email
|
2020-04-16 20:06:14 +00:00
|
|
|
req = Request()
|
|
|
|
req.type = Request.EMAIL
|
|
|
|
req.user = self
|
2020-04-17 20:12:12 +00:00
|
|
|
req.email = self.email
|
2020-04-16 20:06:14 +00:00
|
|
|
req.save()
|
2020-04-17 00:16:56 +00:00
|
|
|
|
2020-04-16 20:06:14 +00:00
|
|
|
template = loader.get_template("users/email_confirmation_request")
|
|
|
|
context = {
|
|
|
|
"name": req.user.get_full_name(),
|
|
|
|
"asso": AssoOption.get_cached_value("name"),
|
|
|
|
"asso_mail": AssoOption.get_cached_value("contact"),
|
|
|
|
"site_name": GeneralOption.get_cached_value("site_name"),
|
|
|
|
"url": request.build_absolute_uri(
|
|
|
|
reverse("users:process", kwargs={"token": req.token})
|
|
|
|
),
|
|
|
|
"expire_in": str(GeneralOption.get_cached_value("req_expire_hrs")),
|
2020-04-17 12:54:28 +00:00
|
|
|
"confirm_before_fr": self.confirm_email_before_date().strftime("%d/%m/%Y"),
|
|
|
|
"confirm_before_en": self.confirm_email_before_date().strftime("%Y-%m-%d"),
|
2020-04-16 20:06:14 +00:00
|
|
|
}
|
2020-04-19 18:06:34 +00:00
|
|
|
|
2020-04-19 18:15:23 +00:00
|
|
|
send_mail(
|
2020-04-19 18:06:34 +00:00
|
|
|
request,
|
2020-04-17 22:39:06 +00:00
|
|
|
"Confirmation du mail de %(name)s / Email confirmation for "
|
2020-04-16 20:06:14 +00:00
|
|
|
"%(name)s" % {"name": AssoOption.get_cached_value("name")},
|
|
|
|
template.render(context),
|
|
|
|
GeneralOption.get_cached_value("email_from"),
|
|
|
|
[req.user.email],
|
|
|
|
fail_silently=False,
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
2020-04-19 18:06:34 +00:00
|
|
|
def autoregister_machine(self, mac_address, nas_type, request=None):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" Fonction appellée par freeradius. Enregistre la mac pour
|
|
|
|
une machine inconnue sur le compte de l'user"""
|
2019-10-14 21:43:36 +00:00
|
|
|
allowed, _message, _rights = Machine.can_create(self, self.id)
|
2018-12-30 23:13:01 +00:00
|
|
|
if not allowed:
|
2018-08-15 17:15:26 +00:00
|
|
|
return False, _("Maximum number of registered machines reached.")
|
2017-09-14 16:15:14 +00:00
|
|
|
if not nas_type:
|
2018-08-15 17:15:26 +00:00
|
|
|
return False, _("Re2o doesn't know wich machine type to assign.")
|
2017-09-14 16:15:14 +00:00
|
|
|
machine_type_cible = nas_type.machine_type
|
2017-09-10 20:50:20 +00:00
|
|
|
try:
|
|
|
|
machine_parent = Machine()
|
|
|
|
machine_parent.user = self
|
|
|
|
interface_cible = Interface()
|
|
|
|
interface_cible.mac_address = mac_address
|
2019-09-01 21:25:41 +00:00
|
|
|
interface_cible.machine_type = machine_type_cible
|
2017-09-10 20:50:20 +00:00
|
|
|
interface_cible.clean()
|
|
|
|
machine_parent.clean()
|
|
|
|
domain = Domain()
|
2017-09-29 08:40:41 +00:00
|
|
|
domain.name = self.get_next_domain_name()
|
2017-09-28 15:29:48 +00:00
|
|
|
domain.interface_parent = interface_cible
|
|
|
|
domain.clean()
|
2017-09-11 01:37:01 +00:00
|
|
|
machine_parent.save()
|
|
|
|
interface_cible.machine = machine_parent
|
|
|
|
interface_cible.save()
|
|
|
|
domain.interface_parent = interface_cible
|
|
|
|
domain.clean()
|
|
|
|
domain.save()
|
2017-10-25 23:59:05 +00:00
|
|
|
self.notif_auto_newmachine(interface_cible)
|
2017-10-14 18:18:12 +00:00
|
|
|
except Exception as error:
|
2019-11-04 16:55:03 +00:00
|
|
|
return False, traceback.format_exc()
|
2019-01-08 23:40:59 +00:00
|
|
|
return interface_cible, _("OK")
|
2017-09-10 20:50:20 +00:00
|
|
|
|
2017-10-25 23:59:05 +00:00
|
|
|
def notif_auto_newmachine(self, interface):
|
|
|
|
"""Notification mail lorsque une machine est automatiquement
|
|
|
|
ajoutée par le radius"""
|
2019-11-04 16:55:03 +00:00
|
|
|
template = loader.get_template("users/email_auto_newmachine")
|
2019-09-01 21:25:41 +00:00
|
|
|
context = {
|
2019-11-04 16:55:03 +00:00
|
|
|
"nom": self.get_full_name(),
|
|
|
|
"mac_address": interface.mac_address,
|
|
|
|
"asso_name": AssoOption.get_cached_value("name"),
|
|
|
|
"interface_name": interface.domain,
|
|
|
|
"asso_email": AssoOption.get_cached_value("contact"),
|
|
|
|
"pseudo": self.pseudo,
|
2019-09-01 21:25:41 +00:00
|
|
|
}
|
2020-04-19 18:06:34 +00:00
|
|
|
|
2020-04-19 18:15:23 +00:00
|
|
|
send_mail(
|
2020-04-19 18:06:34 +00:00
|
|
|
None,
|
2017-10-25 23:59:05 +00:00
|
|
|
"Ajout automatique d'une machine / New machine autoregistered",
|
2019-11-04 16:55:03 +00:00
|
|
|
"",
|
|
|
|
GeneralOption.get_cached_value("email_from"),
|
2017-10-25 23:59:05 +00:00
|
|
|
[self.email],
|
2019-11-04 16:55:03 +00:00
|
|
|
html_message=template.render(context),
|
2017-10-25 23:59:05 +00:00
|
|
|
)
|
|
|
|
return
|
|
|
|
|
2020-04-19 18:06:34 +00:00
|
|
|
def notif_disable(self, request=None):
|
2020-04-17 13:16:26 +00:00
|
|
|
"""Envoi un mail de notification informant que l'adresse mail n'a pas été confirmée"""
|
2020-04-17 15:03:54 +00:00
|
|
|
template = loader.get_template("users/email_disable_notif")
|
2020-04-17 13:16:26 +00:00
|
|
|
context = {
|
|
|
|
"name": self.get_full_name(),
|
|
|
|
"asso_name": AssoOption.get_cached_value("name"),
|
|
|
|
"asso_email": AssoOption.get_cached_value("contact"),
|
|
|
|
"site_name": GeneralOption.get_cached_value("site_name"),
|
|
|
|
}
|
2020-04-19 18:06:34 +00:00
|
|
|
|
2020-04-19 18:15:23 +00:00
|
|
|
send_mail(
|
2020-04-19 18:06:34 +00:00
|
|
|
request,
|
2020-04-17 13:16:26 +00:00
|
|
|
"Suspension automatique / Automatic suspension",
|
|
|
|
template.render(context),
|
|
|
|
GeneralOption.get_cached_value("email_from"),
|
|
|
|
[self.email],
|
|
|
|
fail_silently=False,
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
2018-03-01 23:14:58 +00:00
|
|
|
def set_password(self, password):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" A utiliser de préférence, set le password en hash courrant et
|
2017-10-04 15:53:30 +00:00
|
|
|
dans la version ntlm"""
|
2019-09-04 19:59:50 +00:00
|
|
|
from re2o.login import hashNT
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-03-01 23:14:58 +00:00
|
|
|
super().set_password(password)
|
2017-09-21 16:47:47 +00:00
|
|
|
self.pwd_ntlm = hashNT(password)
|
|
|
|
return
|
|
|
|
|
2020-04-16 20:06:14 +00:00
|
|
|
def confirm_mail(self):
|
|
|
|
"""Marque l'email de l'utilisateur comme confirmé"""
|
2020-04-17 16:32:38 +00:00
|
|
|
self.email_state = self.EMAIL_STATE_VERIFIED
|
2020-04-16 20:06:14 +00:00
|
|
|
|
2018-07-15 20:31:42 +00:00
|
|
|
@cached_property
|
2018-08-01 11:06:25 +00:00
|
|
|
def email_address(self):
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
OptionalUser.get_cached_value("local_email_accounts_enabled")
|
|
|
|
and self.local_email_enabled
|
|
|
|
):
|
2018-08-01 11:06:25 +00:00
|
|
|
return self.emailaddress_set.all()
|
|
|
|
return EMailAddress.objects.none()
|
2018-07-15 20:31:42 +00:00
|
|
|
|
2017-09-29 08:40:41 +00:00
|
|
|
def get_next_domain_name(self):
|
|
|
|
"""Look for an available name for a new interface for
|
|
|
|
this user by trying "pseudo0", "pseudo1", "pseudo2", ...
|
2017-10-14 18:18:12 +00:00
|
|
|
|
|
|
|
Recherche un nom disponible, pour une machine. Doit-être
|
|
|
|
unique, concatène le nom, le pseudo et le numero de machine
|
2017-09-29 08:40:41 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def simple_pseudo():
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Renvoie le pseudo sans underscore (compat dns)"""
|
2019-11-04 16:55:03 +00:00
|
|
|
return self.pseudo.replace("_", "-").lower()
|
2017-09-29 08:40:41 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
def composed_pseudo(name):
|
|
|
|
"""Renvoie le resultat de simplepseudo et rajoute le nom"""
|
|
|
|
return simple_pseudo() + str(name)
|
2017-09-29 08:40:41 +00:00
|
|
|
|
|
|
|
num = 0
|
2017-10-14 18:18:12 +00:00
|
|
|
while Domain.objects.filter(name=composed_pseudo(num)):
|
2017-09-29 08:40:41 +00:00
|
|
|
num += 1
|
|
|
|
return composed_pseudo(num)
|
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_edit(self, user_request, *_args, **_kwargs):
|
|
|
|
"""Check if a user can edit a user object.
|
2017-12-26 23:27:38 +00:00
|
|
|
|
|
|
|
:param self: The user which is to be edited.
|
|
|
|
:param user_request: The user who requests to edit self.
|
|
|
|
:return: a message and a boolean which is True if self is a club and
|
2018-04-14 01:25:05 +00:00
|
|
|
user_request one of its member, or if user_request is self, or if
|
|
|
|
user_request has the 'cableur' right.
|
2017-12-26 23:27:38 +00:00
|
|
|
"""
|
2019-09-09 10:16:37 +00:00
|
|
|
if self.state in (self.STATE_ARCHIVE, self.STATE_FULL_ARCHIVE):
|
|
|
|
warning_message = _("This user is archived.")
|
|
|
|
else:
|
|
|
|
warning_message = None
|
|
|
|
|
2017-12-08 20:59:21 +00:00
|
|
|
if self.is_class_club and user_request.is_class_adherent:
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
self == user_request
|
|
|
|
or user_request.has_perm("users.change_user")
|
|
|
|
or user_request.adherent in self.club.administrators.all()
|
|
|
|
):
|
2019-09-09 10:16:37 +00:00
|
|
|
return True, warning_message, None
|
2017-11-30 19:02:15 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You don't have the right to edit this club."),
|
|
|
|
("users.change_user",),
|
|
|
|
)
|
2017-11-21 04:24:39 +00:00
|
|
|
else:
|
2018-01-07 22:55:27 +00:00
|
|
|
if self == user_request:
|
2019-09-09 10:16:37 +00:00
|
|
|
return True, warning_message, None
|
2019-11-04 16:55:03 +00:00
|
|
|
elif user_request.has_perm("users.change_all_users"):
|
2019-09-09 10:16:37 +00:00
|
|
|
return True, warning_message, None
|
2019-11-04 16:55:03 +00:00
|
|
|
elif user_request.has_perm("users.change_user"):
|
2018-01-07 22:55:27 +00:00
|
|
|
if self.groups.filter(listright__critical=True):
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("User with critical rights, can't be edited."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_all_users",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
elif self == AssoOption.get_cached_value("utilisateur_asso"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
"Impossible to edit the organisation's"
|
2019-11-20 00:52:11 +00:00
|
|
|
" user without the \"change_all_users\" right."
|
2019-11-04 16:55:03 +00:00
|
|
|
),
|
|
|
|
("users.change_all_users",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2018-01-07 22:55:27 +00:00
|
|
|
else:
|
2019-09-09 10:16:37 +00:00
|
|
|
return True, warning_message, None
|
2019-11-04 16:55:03 +00:00
|
|
|
elif user_request.has_perm("users.change_all_users"):
|
2019-09-09 10:16:37 +00:00
|
|
|
return True, warning_message, None
|
2017-11-30 19:02:15 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You don't have the right to edit another user."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_user", "users.change_all_users"),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-11-21 04:24:39 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_change_password(self, user_request, *_args, **_kwargs):
|
|
|
|
"""Check if a user can change a user's password
|
|
|
|
|
|
|
|
:param self: The user which is to be edited
|
|
|
|
:param user_request: The user who request to edit self
|
|
|
|
:returns: a message and a boolean which is True if self is a club
|
|
|
|
and user_request one of it's admins, or if user_request is self,
|
|
|
|
or if user_request has the right to change other's password
|
|
|
|
"""
|
2017-12-28 13:04:14 +00:00
|
|
|
if self.is_class_club and user_request.is_class_adherent:
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
self == user_request
|
|
|
|
or user_request.has_perm("users.change_user_password")
|
|
|
|
or user_request.adherent in self.club.administrators.all()
|
|
|
|
):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2017-12-28 13:04:14 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You don't have the right to edit this club."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_user_password",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-12-28 13:04:14 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
if self == user_request or user_request.has_perm(
|
|
|
|
"users.change_user_groups"
|
|
|
|
):
|
2018-04-14 01:25:05 +00:00
|
|
|
# Peut éditer les groupes d'un user,
|
|
|
|
# c'est un privilège élevé, True
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2019-11-04 16:55:03 +00:00
|
|
|
elif user_request.has_perm("users.change_user") and not self.groups.all():
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2017-12-28 13:04:14 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You don't have the right to edit another user."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_user_groups", "users.change_user"),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-12-28 13:04:14 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def check_selfpasswd(self, user_request, *_args, **_kwargs):
|
2019-09-06 16:32:51 +00:00
|
|
|
""" Returns (True, None, None) if user_request is self, else returns
|
|
|
|
(False, None, None)
|
2018-04-14 23:16:49 +00:00
|
|
|
"""
|
2019-09-06 16:32:51 +00:00
|
|
|
return user_request == self, None, None
|
2018-01-31 04:51:47 +00:00
|
|
|
|
2018-10-15 17:57:27 +00:00
|
|
|
def can_change_room(self, user_request, *_args, **_kwargs):
|
2018-10-14 22:44:37 +00:00
|
|
|
""" Check if a user can change a room
|
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change a state
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if not (
|
|
|
|
(
|
|
|
|
self.pk == user_request.pk
|
2020-04-19 01:16:55 +00:00
|
|
|
and OptionalUser.get_cached_value("self_room_policy") != OptionalUser.DISABLED
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
|
|
|
or user_request.has_perm("users.change_user")
|
|
|
|
):
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("You don't have the right to change the room."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_user",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2018-10-14 22:44:37 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2018-10-14 22:44:37 +00:00
|
|
|
|
2017-12-29 18:43:44 +00:00
|
|
|
@staticmethod
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_change_state(user_request, *_args, **_kwargs):
|
|
|
|
""" Check if a user can change a state
|
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change a state
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
can = user_request.has_perm("users.change_user_state")
|
2018-04-14 01:25:05 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("You don't have the right to change the state.") if not can else None,
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_user_state",),
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2017-12-28 13:04:14 +00:00
|
|
|
|
2018-08-13 17:36:57 +00:00
|
|
|
def can_change_shell(self, user_request, *_args, **_kwargs):
|
2018-04-14 23:16:49 +00:00
|
|
|
""" Check if a user can change a shell
|
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change a shell
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if not (
|
|
|
|
(
|
|
|
|
self.pk == user_request.pk
|
|
|
|
and OptionalUser.get_cached_value("self_change_shell")
|
|
|
|
)
|
|
|
|
or user_request.has_perm("users.change_user_shell")
|
|
|
|
):
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("You don't have the right to change the shell."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_user_shell",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2018-08-13 17:36:57 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2017-12-28 16:47:02 +00:00
|
|
|
|
2020-04-23 10:07:15 +00:00
|
|
|
def can_change_pseudo(self, user_request, *_args, **_kwargs):
|
|
|
|
""" Check if a user can change a pseudo
|
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change a shell
|
|
|
|
"""
|
|
|
|
if not (
|
|
|
|
(
|
|
|
|
self.pk == user_request.pk
|
|
|
|
and OptionalUser.get_cached_value("self_change_pseudo")
|
|
|
|
)
|
2020-04-23 10:59:38 +00:00
|
|
|
or user_request.has_perm("users.change_user_pseudo")
|
2020-04-23 10:07:15 +00:00
|
|
|
):
|
|
|
|
return (
|
|
|
|
False,
|
2020-04-23 10:59:38 +00:00
|
|
|
_("You don't have the right to change the pseudo."),
|
|
|
|
("users.change_user_pseudo",),
|
2020-04-23 10:07:15 +00:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
return True, None, None
|
|
|
|
|
2018-06-29 16:48:27 +00:00
|
|
|
@staticmethod
|
2018-07-30 15:00:41 +00:00
|
|
|
def can_change_local_email_redirect(user_request, *_args, **_kwargs):
|
|
|
|
""" Check if a user can change local_email_redirect.
|
2018-06-29 16:48:27 +00:00
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change a redirection
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
can = OptionalUser.get_cached_value("local_email_accounts_enabled")
|
2018-06-29 16:48:27 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
|
|
|
_("Local email accounts must be enabled.") if not can else None,
|
2019-11-04 16:55:03 +00:00
|
|
|
None,
|
2018-06-29 16:48:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
@staticmethod
|
2018-07-30 15:00:41 +00:00
|
|
|
def can_change_local_email_enabled(user_request, *_args, **_kwargs):
|
2018-08-15 17:15:26 +00:00
|
|
|
""" Check if a user can change internal address.
|
2018-06-29 16:48:27 +00:00
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change internal address
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
can = OptionalUser.get_cached_value("local_email_accounts_enabled")
|
2018-06-29 16:48:27 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
|
|
|
_("Local email accounts must be enabled.") if not can else None,
|
2019-11-04 16:55:03 +00:00
|
|
|
None,
|
2018-07-30 15:00:41 +00:00
|
|
|
)
|
2018-06-29 16:48:27 +00:00
|
|
|
|
2017-12-29 18:43:44 +00:00
|
|
|
@staticmethod
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_change_force(user_request, *_args, **_kwargs):
|
|
|
|
""" Check if a user can change a force
|
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change a force
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
can = user_request.has_perm("users.change_user_force")
|
2018-04-14 01:25:05 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("You don't have the right to force the move.") if not can else None,
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.change_user_force",),
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2017-12-31 19:53:38 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_change_groups(user_request, *_args, **_kwargs):
|
|
|
|
""" Check if a user can change a group
|
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if the user has
|
|
|
|
the right to change a group
|
|
|
|
"""
|
2020-02-20 08:07:41 +00:00
|
|
|
can = user_request.has_perm("users.change_user_groups")
|
2018-04-14 01:25:05 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("You don't have the right to edit the user's groups of rights.")
|
2019-11-04 16:55:03 +00:00
|
|
|
if not can
|
|
|
|
else None,
|
|
|
|
("users.change_user_groups"),
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2017-12-28 16:47:02 +00:00
|
|
|
|
2018-05-03 12:22:52 +00:00
|
|
|
@staticmethod
|
|
|
|
def can_change_is_superuser(user_request, *_args, **_kwargs):
|
|
|
|
""" Check if an user can change a is_superuser flag
|
|
|
|
|
|
|
|
:param user_request: The user who request
|
|
|
|
:returns: a message and a boolean which is True if permission is granted.
|
|
|
|
"""
|
2019-09-09 12:40:40 +00:00
|
|
|
can = user_request.is_superuser
|
2018-05-03 12:22:52 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("\"superuser\" right required to edit the superuser flag.")
|
2019-11-04 16:55:03 +00:00
|
|
|
if not can
|
|
|
|
else None,
|
|
|
|
[],
|
2018-05-03 12:22:52 +00:00
|
|
|
)
|
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_view(self, user_request, *_args, **_kwargs):
|
2017-12-26 23:27:38 +00:00
|
|
|
"""Check if an user can view an user object.
|
|
|
|
|
|
|
|
:param self: The targeted user.
|
|
|
|
:param user_request: The user who ask for viewing the target.
|
|
|
|
:return: A boolean telling if the acces is granted and an explanation
|
2018-04-14 01:25:05 +00:00
|
|
|
text
|
2017-12-26 23:27:38 +00:00
|
|
|
"""
|
2017-12-08 20:59:21 +00:00
|
|
|
if self.is_class_club and user_request.is_class_adherent:
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
self == user_request
|
|
|
|
or user_request.has_perm("users.view_user")
|
|
|
|
or user_request.adherent in self.club.administrators.all()
|
|
|
|
or user_request.adherent in self.club.members.all()
|
|
|
|
):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2017-11-30 19:02:15 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You don't have the right to view this club."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.view_user",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-11-21 04:24:39 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
if self == user_request or user_request.has_perm("users.view_user"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2017-11-30 19:02:15 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You don't have the right to view another user."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.view_user",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-11-21 04:24:39 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
@staticmethod
|
|
|
|
def can_view_all(user_request, *_args, **_kwargs):
|
2018-03-29 02:35:23 +00:00
|
|
|
"""Check if an user can access to the list of every user objects
|
|
|
|
|
|
|
|
:param user_request: The user who wants to view the list.
|
2018-04-14 01:25:05 +00:00
|
|
|
:return: True if the user can view the list and an explanation
|
|
|
|
message.
|
2018-03-29 02:35:23 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
can = user_request.has_perm("users.view_user")
|
2018-04-14 01:25:05 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
2019-11-04 16:55:03 +00:00
|
|
|
_("You don't have the right to view the list of users.")
|
|
|
|
if not can
|
|
|
|
else None,
|
|
|
|
("users.view_user",),
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2018-03-29 02:35:23 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_delete(self, user_request, *_args, **_kwargs):
|
2018-03-29 02:35:23 +00:00
|
|
|
"""Check if an user can delete an user object.
|
|
|
|
|
|
|
|
:param self: The user who is to be deleted.
|
|
|
|
:param user_request: The user who requests deletion.
|
2018-04-14 01:25:05 +00:00
|
|
|
:return: True if user_request has the right 'bureau', and a
|
|
|
|
message.
|
2018-03-29 02:35:23 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
can = user_request.has_perm("users.delete_user")
|
2018-04-14 01:25:05 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
|
|
|
_("You don't have the right to delete this user.") if not can else None,
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.delete_user",),
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2018-03-29 02:35:23 +00:00
|
|
|
|
2018-01-08 22:57:19 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(User, self).__init__(*args, **kwargs)
|
|
|
|
self.field_permissions = {
|
2019-11-04 16:55:03 +00:00
|
|
|
"shell": self.can_change_shell,
|
2020-04-23 10:07:15 +00:00
|
|
|
"pseudo": self.can_change_pseudo,
|
2019-11-04 16:55:03 +00:00
|
|
|
"force": self.can_change_force,
|
|
|
|
"selfpasswd": self.check_selfpasswd,
|
|
|
|
"local_email_redirect": self.can_change_local_email_redirect,
|
|
|
|
"local_email_enabled": self.can_change_local_email_enabled,
|
|
|
|
"room": self.can_change_room,
|
2017-12-28 16:47:02 +00:00
|
|
|
}
|
2018-07-19 18:37:01 +00:00
|
|
|
self.__original_state = self.state
|
2020-04-17 18:50:47 +00:00
|
|
|
self.__original_email = self.email
|
2017-12-28 16:47:02 +00:00
|
|
|
|
2020-04-21 17:27:12 +00:00
|
|
|
def clean_pseudo(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
if EMailAddress.objects.filter(local_part=self.pseudo.lower()).exclude(
|
|
|
|
user_id=self.id
|
|
|
|
):
|
2019-01-08 23:40:59 +00:00
|
|
|
raise ValidationError(_("This username is already used."))
|
2020-04-21 17:27:12 +00:00
|
|
|
|
|
|
|
def clean_email(self, *args, **kwargs):
|
2020-04-21 19:38:31 +00:00
|
|
|
# Allow empty emails only if the user had an empty email before
|
|
|
|
is_created = not self.pk
|
|
|
|
if not self.email and (self.__original_email or is_created):
|
2020-04-21 17:27:12 +00:00
|
|
|
raise forms.ValidationError(
|
|
|
|
_("Email field cannot be empty.")
|
2018-08-14 11:09:13 +00:00
|
|
|
)
|
2020-04-21 17:27:12 +00:00
|
|
|
|
|
|
|
self.email = self.email.lower()
|
|
|
|
|
|
|
|
if OptionalUser.get_cached_value("local_email_domain") in self.email:
|
|
|
|
raise forms.ValidationError(
|
|
|
|
_("You can't use a {} address as an external contact address.").format(
|
|
|
|
OptionalUser.get_cached_value("local_email_domain")
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2018-08-14 11:09:13 +00:00
|
|
|
)
|
2018-06-30 00:53:19 +00:00
|
|
|
|
2020-04-21 17:27:12 +00:00
|
|
|
def clean(self, *args, **kwargs):
|
|
|
|
"""Check if this pseudo is already used by any mailalias.
|
|
|
|
Better than raising an error in post-save and catching it"""
|
2020-04-21 19:38:31 +00:00
|
|
|
super(User, self).clean(*args, **kwargs)
|
2020-04-21 17:27:12 +00:00
|
|
|
self.clean_pseudo(*args, **kwargs)
|
|
|
|
self.clean_email(*args, **kwargs)
|
|
|
|
|
2016-06-30 23:03:28 +00:00
|
|
|
def __str__(self):
|
2016-07-02 02:40:24 +00:00
|
|
|
return self.pseudo
|
2016-06-30 01:39:07 +00:00
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
|
2017-10-23 01:22:00 +00:00
|
|
|
class Adherent(User):
|
2018-04-14 23:16:49 +00:00
|
|
|
""" A class representing a member (it's a user with special
|
|
|
|
informations) """
|
2018-08-15 17:15:26 +00:00
|
|
|
|
2017-10-23 01:22:00 +00:00
|
|
|
name = models.CharField(max_length=255)
|
2017-10-25 21:37:12 +00:00
|
|
|
room = models.OneToOneField(
|
2019-11-04 16:55:03 +00:00
|
|
|
"topologie.Room", on_delete=models.PROTECT, blank=True, null=True
|
2018-08-11 01:58:03 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
gpg_fingerprint = models.CharField(max_length=49, blank=True, null=True)
|
2017-10-23 01:22:00 +00:00
|
|
|
|
2018-08-19 15:26:11 +00:00
|
|
|
class Meta(User.Meta):
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("member")
|
|
|
|
verbose_name_plural = _("members")
|
|
|
|
|
2018-12-28 19:58:43 +00:00
|
|
|
def format_gpgfp(self):
|
|
|
|
"""Format gpg finger print as AAAA BBBB... from a string AAAABBBB...."""
|
2019-11-04 16:55:03 +00:00
|
|
|
self.gpg_fingerprint = " ".join(
|
|
|
|
[
|
|
|
|
self.gpg_fingerprint[i : i + 4]
|
|
|
|
for i in range(0, len(self.gpg_fingerprint), 4)
|
|
|
|
]
|
|
|
|
)
|
2018-12-28 19:58:43 +00:00
|
|
|
|
|
|
|
def validate_gpgfp(self):
|
|
|
|
"""Validate from raw entry if is it a valid gpg fp"""
|
|
|
|
if self.gpg_fingerprint:
|
2019-11-04 16:55:03 +00:00
|
|
|
gpg_fingerprint = self.gpg_fingerprint.replace(" ", "").upper()
|
2018-12-28 22:23:05 +00:00
|
|
|
if not re.match("^[0-9A-F]{40}$", gpg_fingerprint):
|
2019-11-04 16:55:03 +00:00
|
|
|
raise ValidationError(
|
2019-11-20 00:52:11 +00:00
|
|
|
_("A GPG fingerprint must contain 40 hexadecimal characters.")
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2018-12-28 19:58:43 +00:00
|
|
|
self.gpg_fingerprint = gpg_fingerprint
|
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
@classmethod
|
|
|
|
def get_instance(cls, adherentid, *_args, **_kwargs):
|
2017-12-26 23:27:38 +00:00
|
|
|
"""Try to find an instance of `Adherent` with the given id.
|
2017-12-11 21:02:32 +00:00
|
|
|
|
2017-12-26 23:27:38 +00:00
|
|
|
:param adherentid: The id of the adherent we are looking for.
|
|
|
|
:return: An adherent.
|
|
|
|
"""
|
2018-04-14 23:16:49 +00:00
|
|
|
return cls.objects.get(pk=adherentid)
|
2017-10-23 01:22:00 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
@staticmethod
|
|
|
|
def can_create(user_request, *_args, **_kwargs):
|
2018-02-22 17:14:20 +00:00
|
|
|
"""Check if an user can create an user object.
|
|
|
|
|
|
|
|
:param user_request: The user who wants to create a user object.
|
|
|
|
:return: a message and a boolean which is True if the user can create
|
2018-04-14 01:25:05 +00:00
|
|
|
a user or if the `options.all_can_create` is set.
|
2018-02-22 17:14:20 +00:00
|
|
|
"""
|
2020-04-17 22:58:48 +00:00
|
|
|
if not user_request.is_authenticated:
|
|
|
|
if not OptionalUser.get_cached_value(
|
|
|
|
"self_adhesion"
|
|
|
|
):
|
|
|
|
return False, _("Self registration is disabled."), None
|
|
|
|
else:
|
|
|
|
return True, None, None
|
2018-02-22 17:14:20 +00:00
|
|
|
else:
|
2020-04-17 22:58:48 +00:00
|
|
|
if OptionalUser.get_cached_value("all_can_create_adherent"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2018-02-22 17:14:20 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
can = user_request.has_perm("users.add_user")
|
2018-04-14 01:25:05 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
2019-11-04 16:55:03 +00:00
|
|
|
_("You don't have the right to create a user.")
|
|
|
|
if not can
|
|
|
|
else None,
|
|
|
|
("users.add_user",),
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2018-02-22 17:14:20 +00:00
|
|
|
|
2018-12-28 19:58:43 +00:00
|
|
|
def clean(self, *args, **kwargs):
|
|
|
|
"""Format the GPG fingerprint"""
|
|
|
|
super(Adherent, self).clean(*args, **kwargs)
|
|
|
|
if self.gpg_fingerprint:
|
|
|
|
self.validate_gpgfp()
|
|
|
|
self.format_gpgfp()
|
|
|
|
|
2017-11-20 03:41:29 +00:00
|
|
|
|
2017-10-23 01:22:00 +00:00
|
|
|
class Club(User):
|
2018-04-14 23:16:49 +00:00
|
|
|
""" A class representing a club (it is considered as a user
|
|
|
|
with special informations) """
|
2018-08-15 17:15:26 +00:00
|
|
|
|
2017-10-25 21:37:12 +00:00
|
|
|
room = models.ForeignKey(
|
2019-11-04 16:55:03 +00:00
|
|
|
"topologie.Room", on_delete=models.PROTECT, blank=True, null=True
|
2017-10-25 21:37:12 +00:00
|
|
|
)
|
2017-11-20 03:41:29 +00:00
|
|
|
administrators = models.ManyToManyField(
|
2019-11-04 16:55:03 +00:00
|
|
|
blank=True, to="users.Adherent", related_name="club_administrator"
|
2017-11-20 03:41:29 +00:00
|
|
|
)
|
|
|
|
members = models.ManyToManyField(
|
2019-11-04 16:55:03 +00:00
|
|
|
blank=True, to="users.Adherent", related_name="club_members"
|
2018-03-07 16:02:31 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
mailing = models.BooleanField(default=False)
|
2017-11-20 03:41:29 +00:00
|
|
|
|
2018-08-19 15:26:11 +00:00
|
|
|
class Meta(User.Meta):
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("club")
|
|
|
|
verbose_name_plural = _("clubs")
|
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
@staticmethod
|
|
|
|
def can_create(user_request, *_args, **_kwargs):
|
2018-02-22 17:14:20 +00:00
|
|
|
"""Check if an user can create an user object.
|
|
|
|
|
|
|
|
:param user_request: The user who wants to create a user object.
|
|
|
|
:return: a message and a boolean which is True if the user can create
|
2018-04-14 01:25:05 +00:00
|
|
|
an user or if the `options.all_can_create` is set.
|
2018-02-22 17:14:20 +00:00
|
|
|
"""
|
|
|
|
if not user_request.is_authenticated:
|
2019-09-05 23:09:13 +00:00
|
|
|
return False, _("You must be authenticated."), None
|
2018-02-22 17:14:20 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
if OptionalUser.get_cached_value("all_can_create_club"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2018-02-22 17:14:20 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
can = user_request.has_perm("users.add_user")
|
2018-04-14 01:25:05 +00:00
|
|
|
return (
|
2019-09-09 12:40:40 +00:00
|
|
|
can,
|
2019-11-04 16:55:03 +00:00
|
|
|
_("You don't have the right to create a club.")
|
|
|
|
if not can
|
|
|
|
else None,
|
|
|
|
("users.add_user",),
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2018-02-22 17:14:20 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
@staticmethod
|
|
|
|
def can_view_all(user_request, *_args, **_kwargs):
|
2017-12-28 15:10:34 +00:00
|
|
|
"""Check if an user can access to the list of every user objects
|
|
|
|
|
|
|
|
:param user_request: The user who wants to view the list.
|
2018-04-14 01:25:05 +00:00
|
|
|
:return: True if the user can view the list and an explanation
|
|
|
|
message.
|
2017-12-28 15:10:34 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if user_request.has_perm("users.view_user"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
hasattr(user_request, "is_class_adherent")
|
|
|
|
and user_request.is_class_adherent
|
|
|
|
):
|
|
|
|
if (
|
|
|
|
user_request.adherent.club_administrator.all()
|
|
|
|
or user_request.adherent.club_members.all()
|
|
|
|
):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You don't have the right to view the list of users."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.view_user",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-12-28 15:10:34 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
@classmethod
|
|
|
|
def get_instance(cls, clubid, *_args, **_kwargs):
|
2017-12-26 23:27:38 +00:00
|
|
|
"""Try to find an instance of `Club` with the given id.
|
2017-12-11 21:02:32 +00:00
|
|
|
|
2017-12-26 23:27:38 +00:00
|
|
|
:param clubid: The id of the adherent we are looking for.
|
|
|
|
:return: A club.
|
|
|
|
"""
|
2018-04-14 23:16:49 +00:00
|
|
|
return cls.objects.get(pk=clubid)
|
2017-12-08 20:59:21 +00:00
|
|
|
|
2017-10-23 01:22:00 +00:00
|
|
|
|
2017-10-26 22:37:16 +00:00
|
|
|
@receiver(post_save, sender=Adherent)
|
|
|
|
@receiver(post_save, sender=Club)
|
2017-10-26 23:34:28 +00:00
|
|
|
@receiver(post_save, sender=User)
|
2018-04-15 01:00:05 +00:00
|
|
|
def user_post_save(**kwargs):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Synchronisation post_save : envoie le mail de bienvenue si creation
|
2018-06-30 00:53:19 +00:00
|
|
|
Synchronise le pseudo, en créant un alias mail correspondant
|
2017-10-04 15:53:30 +00:00
|
|
|
Synchronise le ldap"""
|
2019-11-04 16:55:03 +00:00
|
|
|
is_created = kwargs["created"]
|
|
|
|
user = kwargs["instance"]
|
|
|
|
EMailAddress.objects.get_or_create(local_part=user.pseudo.lower(), user=user)
|
2020-04-19 18:06:34 +00:00
|
|
|
|
2018-06-22 21:41:15 +00:00
|
|
|
if is_created:
|
2020-04-19 18:06:34 +00:00
|
|
|
user.notif_inscription(user.request)
|
|
|
|
|
2018-07-19 18:37:01 +00:00
|
|
|
user.state_sync()
|
2018-04-14 01:25:05 +00:00
|
|
|
user.ldap_sync(
|
2019-11-04 16:55:03 +00:00
|
|
|
base=True, access_refresh=True, mac_refresh=False, group_refresh=True
|
2018-04-14 01:25:05 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("mailing")
|
2016-07-26 00:54:32 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-07-12 16:19:23 +00:00
|
|
|
@receiver(m2m_changed, sender=User.groups.through)
|
|
|
|
def user_group_relation_changed(**kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
action = kwargs["action"]
|
|
|
|
if action in ("post_add", "post_remove", "post_clear"):
|
|
|
|
user = kwargs["instance"]
|
|
|
|
user.ldap_sync(
|
|
|
|
base=False, access_refresh=False, mac_refresh=False, group_refresh=True
|
|
|
|
)
|
2018-07-12 16:19:23 +00:00
|
|
|
|
2018-08-14 11:09:13 +00:00
|
|
|
|
2017-10-26 22:37:16 +00:00
|
|
|
@receiver(post_delete, sender=Adherent)
|
|
|
|
@receiver(post_delete, sender=Club)
|
2017-10-26 23:34:28 +00:00
|
|
|
@receiver(post_delete, sender=User)
|
2018-04-15 01:00:05 +00:00
|
|
|
def user_post_delete(**kwargs):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Post delete d'un user, on supprime son instance ldap"""
|
2019-11-04 16:55:03 +00:00
|
|
|
user = kwargs["instance"]
|
2016-11-20 15:53:59 +00:00
|
|
|
user.ldap_del()
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("mailing")
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-04-14 01:25:05 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ServiceUser(RevMixin, AclMixin, AbstractBaseUser):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Classe des users daemons, règle leurs accès au ldap"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
|
|
|
readonly = "readonly"
|
|
|
|
ACCESS = (("auth", "auth"), ("readonly", "readonly"), ("usermgmt", "usermgmt"))
|
2017-06-18 12:59:53 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
pseudo = models.CharField(
|
|
|
|
max_length=32,
|
|
|
|
unique=True,
|
2018-08-15 17:15:26 +00:00
|
|
|
help_text=_("Must only contain letters, numerals or dashes."),
|
2019-11-04 16:55:03 +00:00
|
|
|
validators=[linux_user_validator],
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
access_group = models.CharField(choices=ACCESS, default=readonly, max_length=32)
|
2019-11-20 00:52:11 +00:00
|
|
|
comment = models.CharField(help_text=_("Comment."), max_length=255, blank=True)
|
2016-07-31 01:36:54 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
USERNAME_FIELD = "pseudo"
|
2016-07-31 01:36:54 +00:00
|
|
|
objects = UserManager()
|
|
|
|
|
2017-12-31 19:53:38 +00:00
|
|
|
class Meta:
|
2019-11-04 16:55:03 +00:00
|
|
|
permissions = (("view_serviceuser", _("Can view a service user object")),)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("service user")
|
|
|
|
verbose_name_plural = _("service users")
|
2017-12-31 19:53:38 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def get_full_name(self):
|
|
|
|
""" Renvoie le nom complet du serviceUser formaté nom/prénom"""
|
2018-08-15 17:15:26 +00:00
|
|
|
return _("Service user <{name}>").format(name=self.pseudo)
|
2018-04-14 23:16:49 +00:00
|
|
|
|
|
|
|
def get_short_name(self):
|
|
|
|
""" Renvoie seulement le nom"""
|
|
|
|
return self.pseudo
|
|
|
|
|
2016-07-31 01:36:54 +00:00
|
|
|
def ldap_sync(self):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Synchronisation du ServiceUser dans sa version ldap"""
|
2016-07-31 01:36:54 +00:00
|
|
|
try:
|
|
|
|
user_ldap = LdapServiceUser.objects.get(name=self.pseudo)
|
|
|
|
except LdapServiceUser.DoesNotExist:
|
|
|
|
user_ldap = LdapServiceUser(name=self.pseudo)
|
2017-06-18 12:59:53 +00:00
|
|
|
user_ldap.user_password = self.password[:6] + self.password[7:]
|
2016-07-31 01:36:54 +00:00
|
|
|
user_ldap.save()
|
2017-06-18 12:59:53 +00:00
|
|
|
self.serviceuser_group_sync()
|
2016-07-31 01:36:54 +00:00
|
|
|
|
|
|
|
def ldap_del(self):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Suppression de l'instance ldap d'un service user"""
|
2016-07-31 01:36:54 +00:00
|
|
|
try:
|
|
|
|
user_ldap = LdapServiceUser.objects.get(name=self.pseudo)
|
|
|
|
user_ldap.delete()
|
|
|
|
except LdapUser.DoesNotExist:
|
|
|
|
pass
|
2017-06-18 12:59:53 +00:00
|
|
|
self.serviceuser_group_sync()
|
|
|
|
|
|
|
|
def serviceuser_group_sync(self):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Synchronise le groupe et les droits de groupe dans le ldap"""
|
2017-06-18 12:59:53 +00:00
|
|
|
try:
|
|
|
|
group = LdapServiceUserGroup.objects.get(name=self.access_group)
|
|
|
|
except:
|
|
|
|
group = LdapServiceUserGroup(name=self.access_group)
|
2019-11-04 16:55:03 +00:00
|
|
|
group.members = list(
|
|
|
|
LdapServiceUser.objects.filter(
|
|
|
|
name__in=[
|
|
|
|
user.pseudo
|
|
|
|
for user in ServiceUser.objects.filter(
|
|
|
|
access_group=self.access_group
|
|
|
|
)
|
|
|
|
]
|
|
|
|
).values_list("dn", flat=True)
|
|
|
|
)
|
2017-06-18 12:59:53 +00:00
|
|
|
group.save()
|
2016-07-31 01:36:54 +00:00
|
|
|
|
2017-12-08 20:59:21 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.pseudo
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-04-14 01:25:05 +00:00
|
|
|
|
2016-07-31 01:36:54 +00:00
|
|
|
@receiver(post_save, sender=ServiceUser)
|
2018-04-15 01:00:05 +00:00
|
|
|
def service_user_post_save(**kwargs):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Synchronise un service user ldap après modification django"""
|
2019-11-04 16:55:03 +00:00
|
|
|
service_user = kwargs["instance"]
|
2017-06-18 12:59:53 +00:00
|
|
|
service_user.ldap_sync()
|
2016-07-31 01:36:54 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-31 01:36:54 +00:00
|
|
|
@receiver(post_delete, sender=ServiceUser)
|
2018-04-15 01:00:05 +00:00
|
|
|
def service_user_post_delete(**kwargs):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Supprime un service user ldap après suppression django"""
|
2019-11-04 16:55:03 +00:00
|
|
|
service_user = kwargs["instance"]
|
2017-06-18 12:59:53 +00:00
|
|
|
service_user.ldap_del()
|
2016-07-31 01:36:54 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class School(RevMixin, AclMixin, models.Model):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Etablissement d'enseignement"""
|
2016-11-01 01:14:06 +00:00
|
|
|
|
2016-06-30 01:39:07 +00:00
|
|
|
name = models.CharField(max_length=255)
|
|
|
|
|
2017-12-31 19:53:38 +00:00
|
|
|
class Meta:
|
2019-11-04 16:55:03 +00:00
|
|
|
permissions = (("view_school", _("Can view a school object")),)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("school")
|
|
|
|
verbose_name_plural = _("schools")
|
2017-12-31 19:53:38 +00:00
|
|
|
|
2016-06-30 23:03:28 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ListRight(RevMixin, AclMixin, Group):
|
2017-10-14 18:18:12 +00:00
|
|
|
""" Ensemble des droits existants. Chaque droit crée un groupe
|
|
|
|
ldap synchronisé, avec gid.
|
2017-10-04 15:53:30 +00:00
|
|
|
Permet de gérer facilement les accès serveurs et autres
|
2017-10-14 18:18:12 +00:00
|
|
|
La clef de recherche est le gid, pour cette raison là
|
|
|
|
il n'est plus modifiable après creation"""
|
2016-11-01 01:14:06 +00:00
|
|
|
|
2017-12-31 12:24:18 +00:00
|
|
|
unix_name = models.CharField(
|
2017-10-14 18:18:12 +00:00
|
|
|
max_length=255,
|
|
|
|
unique=True,
|
2019-11-04 16:55:03 +00:00
|
|
|
validators=[
|
|
|
|
RegexValidator(
|
|
|
|
"^[a-z]+$",
|
2019-11-20 00:52:11 +00:00
|
|
|
message=(_("UNIX group names can only contain lower case letters.")),
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
|
|
|
],
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2017-10-15 18:37:21 +00:00
|
|
|
gid = models.PositiveIntegerField(unique=True, null=True)
|
2018-01-07 22:55:27 +00:00
|
|
|
critical = models.BooleanField(default=False)
|
2019-11-20 00:52:11 +00:00
|
|
|
details = models.CharField(help_text=_("Description."), max_length=255, blank=True)
|
2016-07-02 00:42:04 +00:00
|
|
|
|
2017-12-31 19:53:38 +00:00
|
|
|
class Meta:
|
2019-11-04 16:55:03 +00:00
|
|
|
permissions = (("view_listright", _("Can view a group of rights object")),)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("group of rights")
|
|
|
|
verbose_name_plural = _("groups of rights")
|
2017-12-31 19:53:38 +00:00
|
|
|
|
2016-07-02 00:42:04 +00:00
|
|
|
def __str__(self):
|
2017-12-31 12:24:18 +00:00
|
|
|
return self.name
|
2016-07-02 00:42:04 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
def ldap_sync(self):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Sychronise les groups ldap avec le model listright coté django"""
|
2016-07-26 00:54:32 +00:00
|
|
|
try:
|
|
|
|
group_ldap = LdapUserGroup.objects.get(gid=self.gid)
|
|
|
|
except LdapUserGroup.DoesNotExist:
|
|
|
|
group_ldap = LdapUserGroup(gid=self.gid)
|
2018-04-29 14:37:18 +00:00
|
|
|
group_ldap.name = self.unix_name
|
2019-11-04 16:55:03 +00:00
|
|
|
group_ldap.members = [user.pseudo for user in self.user_set.all()]
|
2016-07-26 00:54:32 +00:00
|
|
|
group_ldap.save()
|
|
|
|
|
|
|
|
def ldap_del(self):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Supprime un groupe ldap"""
|
2016-07-26 00:54:32 +00:00
|
|
|
try:
|
|
|
|
group_ldap = LdapUserGroup.objects.get(gid=self.gid)
|
|
|
|
group_ldap.delete()
|
|
|
|
except LdapUserGroup.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
@receiver(post_save, sender=ListRight)
|
2018-04-15 01:00:05 +00:00
|
|
|
def listright_post_save(**kwargs):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Synchronise le droit ldap quand il est modifié"""
|
2019-11-04 16:55:03 +00:00
|
|
|
right = kwargs["instance"]
|
2016-11-20 15:53:59 +00:00
|
|
|
right.ldap_sync()
|
2016-07-26 00:54:32 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
@receiver(post_delete, sender=ListRight)
|
2018-04-15 01:00:05 +00:00
|
|
|
def listright_post_delete(**kwargs):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Suppression d'un groupe ldap après suppression coté django"""
|
2019-11-04 16:55:03 +00:00
|
|
|
right = kwargs["instance"]
|
2016-11-20 15:53:59 +00:00
|
|
|
right.ldap_del()
|
2016-07-26 00:54:32 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ListShell(RevMixin, AclMixin, models.Model):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Un shell possible. Pas de check si ce shell existe, les
|
|
|
|
admin sont des grands"""
|
2016-11-01 01:14:06 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
shell = models.CharField(max_length=255, unique=True)
|
|
|
|
|
2018-03-24 18:06:49 +00:00
|
|
|
class Meta:
|
2019-11-04 16:55:03 +00:00
|
|
|
permissions = (("view_listshell", _("Can view a shell object")),)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("shell")
|
|
|
|
verbose_name_plural = _("shells")
|
|
|
|
|
2018-03-22 00:38:16 +00:00
|
|
|
def get_pretty_name(self):
|
|
|
|
"""Return the canonical name of the shell"""
|
|
|
|
return self.shell.split("/")[-1]
|
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.shell
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class Ban(RevMixin, AclMixin, models.Model):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Bannissement. Actuellement a un effet tout ou rien.
|
|
|
|
Gagnerait à être granulaire"""
|
2016-11-01 01:14:06 +00:00
|
|
|
|
2017-03-06 01:28:16 +00:00
|
|
|
STATE_HARD = 0
|
|
|
|
STATE_SOFT = 1
|
|
|
|
STATE_BRIDAGE = 2
|
|
|
|
STATES = (
|
2018-08-15 17:15:26 +00:00
|
|
|
(0, _("HARD (no access)")),
|
|
|
|
(1, _("SOFT (local access only)")),
|
|
|
|
(2, _("RESTRICTED (speed limitation)")),
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2017-03-06 01:28:16 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
user = models.ForeignKey("User", on_delete=models.PROTECT)
|
2016-07-02 19:57:31 +00:00
|
|
|
raison = models.CharField(max_length=255)
|
2016-07-02 23:29:26 +00:00
|
|
|
date_start = models.DateTimeField(auto_now_add=True)
|
2018-04-26 13:08:04 +00:00
|
|
|
date_end = models.DateTimeField()
|
2017-10-14 18:18:12 +00:00
|
|
|
state = models.IntegerField(choices=STATES, default=STATE_HARD)
|
2020-04-19 18:06:34 +00:00
|
|
|
request = None
|
2016-07-02 19:57:31 +00:00
|
|
|
|
2017-12-31 19:53:38 +00:00
|
|
|
class Meta:
|
2019-11-04 16:55:03 +00:00
|
|
|
permissions = (("view_ban", _("Can view a ban object")),)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("ban")
|
|
|
|
verbose_name_plural = _("bans")
|
2017-12-31 19:53:38 +00:00
|
|
|
|
2020-04-19 18:06:34 +00:00
|
|
|
def notif_ban(self, request=None):
|
2017-08-28 19:51:12 +00:00
|
|
|
""" Prend en argument un objet ban, envoie un mail de notification """
|
2019-11-04 16:55:03 +00:00
|
|
|
template = loader.get_template("users/email_ban_notif")
|
2019-09-01 21:25:41 +00:00
|
|
|
context = {
|
2019-11-04 16:55:03 +00:00
|
|
|
"name": self.user.get_full_name(),
|
|
|
|
"raison": self.raison,
|
|
|
|
"date_end": self.date_end,
|
|
|
|
"asso_name": AssoOption.get_cached_value("name"),
|
2019-09-01 21:25:41 +00:00
|
|
|
}
|
2020-04-19 18:06:34 +00:00
|
|
|
|
2020-04-19 18:15:23 +00:00
|
|
|
send_mail(
|
2020-04-19 18:06:34 +00:00
|
|
|
request,
|
2019-11-04 16:55:03 +00:00
|
|
|
"Déconnexion disciplinaire / Disciplinary disconnection",
|
2018-04-03 02:58:00 +00:00
|
|
|
template.render(context),
|
2019-11-04 16:55:03 +00:00
|
|
|
GeneralOption.get_cached_value("email_from"),
|
2018-04-03 02:58:00 +00:00
|
|
|
[self.user.email],
|
2019-11-04 16:55:03 +00:00
|
|
|
fail_silently=False,
|
2018-04-03 02:58:00 +00:00
|
|
|
)
|
2017-08-28 19:51:12 +00:00
|
|
|
return
|
|
|
|
|
2017-09-19 02:45:33 +00:00
|
|
|
def is_active(self):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Ce ban est-il actif?"""
|
2018-01-10 20:20:54 +00:00
|
|
|
return self.date_end > timezone.now()
|
2017-09-19 02:45:33 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_view(self, user_request, *_args, **_kwargs):
|
2017-12-26 23:27:38 +00:00
|
|
|
"""Check if an user can view a Ban object.
|
|
|
|
|
|
|
|
:param self: The targeted object.
|
|
|
|
:param user_request: The user who ask for viewing the target.
|
|
|
|
:return: A boolean telling if the acces is granted and an explanation
|
|
|
|
text
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if not user_request.has_perm("users.view_ban") and self.user != user_request:
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("You don't have the right to view other bans than yours."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.view_ban",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-12-08 20:59:21 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2017-12-08 20:59:21 +00:00
|
|
|
|
2016-07-02 19:57:31 +00:00
|
|
|
def __str__(self):
|
2019-11-04 16:55:03 +00:00
|
|
|
return str(self.user) + " " + str(self.raison)
|
2016-07-02 19:57:31 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-11-20 15:53:59 +00:00
|
|
|
@receiver(post_save, sender=Ban)
|
2018-04-15 01:00:05 +00:00
|
|
|
def ban_post_save(**kwargs):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Regeneration de tous les services après modification d'un ban"""
|
2019-11-04 16:55:03 +00:00
|
|
|
ban = kwargs["instance"]
|
|
|
|
is_created = kwargs["created"]
|
2016-11-20 15:53:59 +00:00
|
|
|
user = ban.user
|
|
|
|
user.ldap_sync(base=False, access_refresh=True, mac_refresh=False)
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("mailing")
|
2017-08-28 19:51:12 +00:00
|
|
|
if is_created:
|
2020-04-19 18:06:34 +00:00
|
|
|
ban.notif_ban(ban.request)
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("dhcp")
|
|
|
|
regen("mac_ip_list")
|
2017-09-01 01:15:54 +00:00
|
|
|
if user.has_access():
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("dhcp")
|
|
|
|
regen("mac_ip_list")
|
2016-11-20 15:53:59 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-11-20 15:53:59 +00:00
|
|
|
@receiver(post_delete, sender=Ban)
|
2018-04-15 01:00:05 +00:00
|
|
|
def ban_post_delete(**kwargs):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Regen de tous les services après suppression d'un ban"""
|
2019-11-04 16:55:03 +00:00
|
|
|
user = kwargs["instance"].user
|
2016-11-20 15:53:59 +00:00
|
|
|
user.ldap_sync(base=False, access_refresh=True, mac_refresh=False)
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("mailing")
|
|
|
|
regen("dhcp")
|
|
|
|
regen("mac_ip_list")
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class Whitelist(RevMixin, AclMixin, models.Model):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Accès à titre gracieux. L'utilisateur ne paye pas; se voit
|
|
|
|
accorder un accès internet pour une durée défini. Moins
|
|
|
|
fort qu'un ban quel qu'il soit"""
|
2016-11-01 01:14:06 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
user = models.ForeignKey("User", on_delete=models.PROTECT)
|
2016-07-04 18:04:11 +00:00
|
|
|
raison = models.CharField(max_length=255)
|
|
|
|
date_start = models.DateTimeField(auto_now_add=True)
|
2018-04-26 13:08:04 +00:00
|
|
|
date_end = models.DateTimeField()
|
2016-07-04 18:04:11 +00:00
|
|
|
|
2017-12-31 19:53:38 +00:00
|
|
|
class Meta:
|
2019-11-04 16:55:03 +00:00
|
|
|
permissions = (("view_whitelist", _("Can view a whitelist object")),)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("whitelist (free of charge access)")
|
|
|
|
verbose_name_plural = _("whitelists (free of charge access)")
|
2017-12-31 19:53:38 +00:00
|
|
|
|
2017-09-19 02:45:33 +00:00
|
|
|
def is_active(self):
|
2018-04-14 23:16:49 +00:00
|
|
|
""" Is this whitelisting active ? """
|
2018-01-10 20:20:54 +00:00
|
|
|
return self.date_end > timezone.now()
|
2017-09-19 02:45:33 +00:00
|
|
|
|
2018-04-14 23:16:49 +00:00
|
|
|
def can_view(self, user_request, *_args, **_kwargs):
|
2017-12-26 23:27:38 +00:00
|
|
|
"""Check if an user can view a Whitelist object.
|
|
|
|
|
|
|
|
:param self: The targeted object.
|
|
|
|
:param user_request: The user who ask for viewing the target.
|
|
|
|
:return: A boolean telling if the acces is granted and an explanation
|
|
|
|
text
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
not user_request.has_perm("users.view_whitelist")
|
|
|
|
and self.user != user_request
|
|
|
|
):
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-20 00:52:11 +00:00
|
|
|
_("You don't have the right to view other whitelists than yours."),
|
2019-11-04 16:55:03 +00:00
|
|
|
("users.view_whitelist",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2017-12-08 20:59:21 +00:00
|
|
|
else:
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2017-12-08 20:59:21 +00:00
|
|
|
|
2016-07-04 18:04:11 +00:00
|
|
|
def __str__(self):
|
2019-11-04 16:55:03 +00:00
|
|
|
return str(self.user) + " " + str(self.raison)
|
2016-07-04 18:04:11 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-11-20 15:53:59 +00:00
|
|
|
@receiver(post_save, sender=Whitelist)
|
2018-04-15 01:00:05 +00:00
|
|
|
def whitelist_post_save(**kwargs):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Après modification d'une whitelist, on synchronise les services
|
|
|
|
et on lui permet d'avoir internet"""
|
2019-11-04 16:55:03 +00:00
|
|
|
whitelist = kwargs["instance"]
|
2016-11-20 15:53:59 +00:00
|
|
|
user = whitelist.user
|
|
|
|
user.ldap_sync(base=False, access_refresh=True, mac_refresh=False)
|
2019-11-04 16:55:03 +00:00
|
|
|
is_created = kwargs["created"]
|
|
|
|
regen("mailing")
|
2017-09-01 01:15:54 +00:00
|
|
|
if is_created:
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("dhcp")
|
|
|
|
regen("mac_ip_list")
|
2017-09-01 01:15:54 +00:00
|
|
|
if user.has_access():
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("dhcp")
|
|
|
|
regen("mac_ip_list")
|
2016-11-20 15:53:59 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-11-20 15:53:59 +00:00
|
|
|
@receiver(post_delete, sender=Whitelist)
|
2018-04-15 01:00:05 +00:00
|
|
|
def whitelist_post_delete(**kwargs):
|
2017-10-14 18:18:12 +00:00
|
|
|
"""Après suppression d'une whitelist, on supprime l'accès internet
|
|
|
|
en forçant la régénration"""
|
2019-11-04 16:55:03 +00:00
|
|
|
user = kwargs["instance"].user
|
2016-11-20 15:53:59 +00:00
|
|
|
user.ldap_sync(base=False, access_refresh=True, mac_refresh=False)
|
2019-11-04 16:55:03 +00:00
|
|
|
regen("mailing")
|
|
|
|
regen("dhcp")
|
|
|
|
regen("mac_ip_list")
|
2016-11-20 15:53:59 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-20 01:53:46 +00:00
|
|
|
class Request(models.Model):
|
2017-10-04 15:53:30 +00:00
|
|
|
""" Objet request, générant une url unique de validation.
|
2017-10-14 18:18:12 +00:00
|
|
|
Utilisé par exemple pour la generation du mot de passe et
|
2017-10-04 15:53:30 +00:00
|
|
|
sa réinitialisation"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
|
|
|
PASSWD = "PW"
|
|
|
|
EMAIL = "EM"
|
|
|
|
TYPE_CHOICES = ((PASSWD, _("Password")), (EMAIL, _("Email address")))
|
2016-07-20 01:53:46 +00:00
|
|
|
type = models.CharField(max_length=2, choices=TYPE_CHOICES)
|
|
|
|
token = models.CharField(max_length=32)
|
2019-11-04 16:55:03 +00:00
|
|
|
user = models.ForeignKey("User", on_delete=models.CASCADE)
|
2020-04-17 20:12:12 +00:00
|
|
|
email = models.EmailField(blank=True, null=True)
|
2016-07-20 01:53:46 +00:00
|
|
|
created_at = models.DateTimeField(auto_now_add=True, editable=False)
|
|
|
|
expires_at = models.DateTimeField()
|
|
|
|
|
|
|
|
def save(self):
|
|
|
|
if not self.expires_at:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.expires_at = timezone.now() + datetime.timedelta(
|
|
|
|
hours=GeneralOption.get_cached_value("req_expire_hrs")
|
|
|
|
)
|
2016-07-20 01:53:46 +00:00
|
|
|
if not self.token:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.token = str(uuid.uuid4()).replace("-", "") # remove hyphens
|
2016-07-20 01:53:46 +00:00
|
|
|
super(Request, self).save()
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
class LdapUser(ldapdb.models.Model):
|
|
|
|
"""
|
|
|
|
Class for representing an LDAP user entry.
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
# LDAP meta-data
|
2019-11-04 16:55:03 +00:00
|
|
|
base_dn = LDAP["base_user_dn"]
|
|
|
|
object_classes = [
|
|
|
|
"inetOrgPerson",
|
|
|
|
"top",
|
|
|
|
"posixAccount",
|
|
|
|
"sambaSamAccount",
|
|
|
|
"radiusprofile",
|
|
|
|
"shadowAccount",
|
|
|
|
]
|
2016-07-26 00:54:32 +00:00
|
|
|
|
|
|
|
# attributes
|
2019-11-04 16:55:03 +00:00
|
|
|
gid = ldapdb.models.fields.IntegerField(db_column="gidNumber")
|
2017-10-14 18:18:12 +00:00
|
|
|
name = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="cn", max_length=200, primary_key=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
uid = ldapdb.models.fields.CharField(db_column="uid", max_length=200)
|
|
|
|
uidNumber = ldapdb.models.fields.IntegerField(db_column="uidNumber", unique=True)
|
|
|
|
sn = ldapdb.models.fields.CharField(db_column="sn", max_length=200)
|
2017-10-14 18:18:12 +00:00
|
|
|
login_shell = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="loginShell", max_length=200, blank=True, null=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
mail = ldapdb.models.fields.CharField(db_column="mail", max_length=200)
|
|
|
|
given_name = ldapdb.models.fields.CharField(db_column="givenName", max_length=200)
|
2017-10-14 18:18:12 +00:00
|
|
|
home_directory = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="homeDirectory", max_length=200
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
display_name = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="displayName", max_length=200, blank=True, null=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
dialupAccess = ldapdb.models.fields.CharField(db_column="dialupAccess")
|
|
|
|
sambaSID = ldapdb.models.fields.IntegerField(db_column="sambaSID", unique=True)
|
2017-10-14 18:18:12 +00:00
|
|
|
user_password = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="userPassword", max_length=200, blank=True, null=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
sambat_nt_password = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="sambaNTPassword", max_length=200, blank=True, null=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
macs = ldapdb.models.fields.ListField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="radiusCallingStationId", max_length=200, blank=True, null=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
shadowexpire = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="shadowExpire", blank=True, null=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2016-07-26 00:54:32 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
self.sn = self.name
|
|
|
|
self.uid = self.name
|
|
|
|
self.sambaSID = self.uidNumber
|
|
|
|
super(LdapUser, self).save(*args, **kwargs)
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
class LdapUserGroup(ldapdb.models.Model):
|
|
|
|
"""
|
2017-10-14 18:18:12 +00:00
|
|
|
Class for representing an LDAP group entry.
|
|
|
|
|
|
|
|
Un groupe ldap
|
2016-07-26 00:54:32 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
# LDAP meta-data
|
2019-11-04 16:55:03 +00:00
|
|
|
base_dn = LDAP["base_usergroup_dn"]
|
|
|
|
object_classes = ["posixGroup"]
|
2016-07-26 00:54:32 +00:00
|
|
|
|
|
|
|
# attributes
|
2019-11-04 16:55:03 +00:00
|
|
|
gid = ldapdb.models.fields.IntegerField(db_column="gidNumber")
|
|
|
|
members = ldapdb.models.fields.ListField(db_column="memberUid", blank=True)
|
2017-10-14 18:18:12 +00:00
|
|
|
name = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="cn", max_length=200, primary_key=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2016-07-26 00:54:32 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2016-07-31 01:36:54 +00:00
|
|
|
class LdapServiceUser(ldapdb.models.Model):
|
|
|
|
"""
|
|
|
|
Class for representing an LDAP userservice entry.
|
2017-10-14 18:18:12 +00:00
|
|
|
|
|
|
|
Un user de service coté ldap
|
2016-07-31 01:36:54 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-31 01:36:54 +00:00
|
|
|
# LDAP meta-data
|
2019-11-04 16:55:03 +00:00
|
|
|
base_dn = LDAP["base_userservice_dn"]
|
|
|
|
object_classes = ["applicationProcess", "simpleSecurityObject"]
|
2016-07-31 01:36:54 +00:00
|
|
|
|
|
|
|
# attributes
|
2017-10-14 18:18:12 +00:00
|
|
|
name = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="cn", max_length=200, primary_key=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
user_password = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="userPassword", max_length=200, blank=True, null=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2016-07-31 01:36:54 +00:00
|
|
|
|
2017-06-18 12:59:53 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2017-06-18 12:59:53 +00:00
|
|
|
class LdapServiceUserGroup(ldapdb.models.Model):
|
|
|
|
"""
|
|
|
|
Class for representing an LDAP userservice entry.
|
2017-10-14 18:18:12 +00:00
|
|
|
|
|
|
|
Un group user de service coté ldap. Dans userservicegroupdn
|
|
|
|
(voir dans settings_local.py)
|
2017-06-18 12:59:53 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-06-18 12:59:53 +00:00
|
|
|
# LDAP meta-data
|
2019-11-04 16:55:03 +00:00
|
|
|
base_dn = LDAP["base_userservicegroup_dn"]
|
|
|
|
object_classes = ["groupOfNames"]
|
2017-06-18 12:59:53 +00:00
|
|
|
|
|
|
|
# attributes
|
2017-10-14 18:18:12 +00:00
|
|
|
name = ldapdb.models.fields.CharField(
|
2019-11-04 16:55:03 +00:00
|
|
|
db_column="cn", max_length=200, primary_key=True
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
members = ldapdb.models.fields.ListField(db_column="member", blank=True)
|
2017-06-18 12:59:53 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
2018-06-26 16:46:57 +00:00
|
|
|
|
|
|
|
|
2018-08-01 11:06:25 +00:00
|
|
|
class EMailAddress(RevMixin, AclMixin, models.Model):
|
2018-07-30 15:00:41 +00:00
|
|
|
"""Defines a local email account for a user
|
2018-06-26 16:46:57 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-06-29 14:36:04 +00:00
|
|
|
user = models.ForeignKey(
|
2019-11-20 00:52:11 +00:00
|
|
|
User, on_delete=models.CASCADE, help_text=_("User of the local email account.")
|
2018-06-26 16:46:57 +00:00
|
|
|
)
|
2018-07-30 15:00:41 +00:00
|
|
|
local_part = models.CharField(
|
2019-11-20 00:52:11 +00:00
|
|
|
unique=True, max_length=128, help_text=_("Local part of the email address.")
|
2018-06-26 16:46:57 +00:00
|
|
|
)
|
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
class Meta:
|
|
|
|
permissions = (
|
2018-08-15 17:15:26 +00:00
|
|
|
("view_emailaddress", _("Can view a local email account object")),
|
2018-07-30 15:00:41 +00:00
|
|
|
)
|
2018-08-15 17:15:26 +00:00
|
|
|
verbose_name = _("local email account")
|
|
|
|
verbose_name_plural = _("local email accounts")
|
2018-07-30 15:00:41 +00:00
|
|
|
|
2018-06-26 16:46:57 +00:00
|
|
|
def __str__(self):
|
2019-11-04 16:55:03 +00:00
|
|
|
return str(self.local_part) + OptionalUser.get_cached_value(
|
|
|
|
"local_email_domain"
|
|
|
|
)
|
2018-07-30 15:00:41 +00:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def complete_email_address(self):
|
2019-11-04 16:55:03 +00:00
|
|
|
return str(self.local_part) + OptionalUser.get_cached_value(
|
|
|
|
"local_email_domain"
|
|
|
|
)
|
2018-06-26 16:46:57 +00:00
|
|
|
|
2018-06-30 12:46:35 +00:00
|
|
|
@staticmethod
|
|
|
|
def can_create(user_request, userid, *_args, **_kwargs):
|
2018-08-01 11:06:25 +00:00
|
|
|
"""Check if a user can create a `EMailAddress` object.
|
2018-06-30 12:46:35 +00:00
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
Args:
|
|
|
|
user_request: The user who wants to create the object.
|
|
|
|
userid: The id of the user to whom the account is to be created
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
a message and a boolean which is True if the user can create
|
|
|
|
a local email account.
|
2018-06-30 12:46:35 +00:00
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if user_request.has_perm("users.add_emailaddress"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2019-11-04 16:55:03 +00:00
|
|
|
if not OptionalUser.get_cached_value("local_email_accounts_enabled"):
|
|
|
|
return (False, _("The local email accounts are not enabled."), None)
|
2018-07-30 15:00:41 +00:00
|
|
|
if int(user_request.id) != int(userid):
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
"You don't have the right to add a local email"
|
|
|
|
" account to another user."
|
|
|
|
),
|
|
|
|
("users.add_emailaddress",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
elif user_request.email_address.count() >= OptionalUser.get_cached_value(
|
|
|
|
"max_email_address"
|
|
|
|
):
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
_("You reached the limit of {} local email accounts.").format(
|
2019-11-04 16:55:03 +00:00
|
|
|
OptionalUser.get_cached_value("max_email_address")
|
2019-09-05 23:09:13 +00:00
|
|
|
),
|
2019-11-04 16:55:03 +00:00
|
|
|
None,
|
2018-07-30 15:00:41 +00:00
|
|
|
)
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2018-06-30 12:46:35 +00:00
|
|
|
|
2018-06-26 16:46:57 +00:00
|
|
|
def can_view(self, user_request, *_args, **_kwargs):
|
2018-07-30 15:00:41 +00:00
|
|
|
"""Check if a user can view the local email account
|
2018-06-26 16:46:57 +00:00
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
Args:
|
|
|
|
user_request: The user who wants to view the object.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
a message and a boolean which is True if the user can see
|
|
|
|
the local email account.
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if user_request.has_perm("users.view_emailaddress"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2019-11-04 16:55:03 +00:00
|
|
|
if not OptionalUser.get_cached_value("local_email_accounts_enabled"):
|
|
|
|
return (False, _("The local email accounts are not enabled."), None)
|
2018-07-30 15:00:41 +00:00
|
|
|
if user_request == self.user:
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
|
|
|
return (
|
|
|
|
False,
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
2019-11-20 00:52:11 +00:00
|
|
|
"You don't have the right to view another user's local"
|
2019-11-04 16:55:03 +00:00
|
|
|
" email account."
|
|
|
|
),
|
|
|
|
("users.view_emailaddress",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2018-07-30 15:00:41 +00:00
|
|
|
|
2018-06-26 16:46:57 +00:00
|
|
|
def can_delete(self, user_request, *_args, **_kwargs):
|
2018-07-30 15:00:41 +00:00
|
|
|
"""Check if a user can delete the alias
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_request: The user who wants to delete the object.
|
2018-06-26 16:46:57 +00:00
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
Returns:
|
|
|
|
a message and a boolean which is True if the user can delete
|
|
|
|
the local email account.
|
|
|
|
"""
|
2018-08-10 22:13:27 +00:00
|
|
|
if self.local_part == self.user.pseudo.lower():
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
"You can't delete a local email account whose"
|
|
|
|
" local part is the same as the username."
|
|
|
|
),
|
|
|
|
None,
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
if user_request.has_perm("users.delete_emailaddress"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2019-11-04 16:55:03 +00:00
|
|
|
if not OptionalUser.get_cached_value("local_email_accounts_enabled"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return False, _("The local email accounts are not enabled."), None
|
2018-07-30 15:00:41 +00:00
|
|
|
if user_request == self.user:
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
|
|
|
return (
|
|
|
|
False,
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
"You don't have the right to delete another user's"
|
2019-11-20 00:52:11 +00:00
|
|
|
" local email account."
|
2019-11-04 16:55:03 +00:00
|
|
|
),
|
|
|
|
("users.delete_emailaddress",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2018-06-26 16:46:57 +00:00
|
|
|
|
|
|
|
def can_edit(self, user_request, *_args, **_kwargs):
|
2018-07-30 15:00:41 +00:00
|
|
|
"""Check if a user can edit the alias
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_request: The user who wants to edit the object.
|
2018-06-26 16:46:57 +00:00
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
Returns:
|
|
|
|
a message and a boolean which is True if the user can edit
|
|
|
|
the local email account.
|
|
|
|
"""
|
2018-08-10 22:13:27 +00:00
|
|
|
if self.local_part == self.user.pseudo.lower():
|
2019-09-05 23:09:13 +00:00
|
|
|
return (
|
|
|
|
False,
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
"You can't edit a local email account whose local"
|
|
|
|
" part is the same as the username."
|
|
|
|
),
|
|
|
|
None,
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2019-11-04 16:55:03 +00:00
|
|
|
if user_request.has_perm("users.change_emailaddress"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
2019-11-04 16:55:03 +00:00
|
|
|
if not OptionalUser.get_cached_value("local_email_accounts_enabled"):
|
2019-09-05 23:09:13 +00:00
|
|
|
return False, _("The local email accounts are not enabled."), None
|
2018-07-30 15:00:41 +00:00
|
|
|
if user_request == self.user:
|
2019-09-05 23:09:13 +00:00
|
|
|
return True, None, None
|
|
|
|
return (
|
|
|
|
False,
|
2019-11-04 16:55:03 +00:00
|
|
|
_(
|
|
|
|
"You don't have the right to edit another user's local"
|
|
|
|
" email account."
|
|
|
|
),
|
|
|
|
("users.change_emailaddress",),
|
2019-09-05 23:09:13 +00:00
|
|
|
)
|
2018-06-26 16:46:57 +00:00
|
|
|
|
2018-06-29 15:45:21 +00:00
|
|
|
def clean(self, *args, **kwargs):
|
2018-08-10 17:27:10 +00:00
|
|
|
self.local_part = self.local_part.lower()
|
2018-11-15 16:14:51 +00:00
|
|
|
if "@" in self.local_part or "+" in self.local_part:
|
|
|
|
raise ValidationError(_("The local part must not contain @ or +."))
|
|
|
|
result, reason = smtp_check(self.local_part)
|
|
|
|
if result:
|
|
|
|
raise ValidationError(reason)
|
2018-08-01 11:06:25 +00:00
|
|
|
super(EMailAddress, self).clean(*args, **kwargs)
|