2017-09-10 14:53:02 +00:00
|
|
|
# -*- mode: python; coding: utf-8 -*-
|
2017-01-15 23:01:18 +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.
|
|
|
|
#
|
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
|
|
|
"""
|
2020-05-29 22:33:29 +00:00
|
|
|
Forms for the 'users' app of re2o. It highly depends on
|
|
|
|
:users:models and is mainly used by :users:views.
|
2017-01-15 23:01:18 +00:00
|
|
|
|
2020-05-29 22:33:29 +00:00
|
|
|
The following forms are mainly used to create, edit or delete
|
|
|
|
anything related to 'users' :
|
|
|
|
* Adherent (personnal data)
|
|
|
|
* Club
|
|
|
|
* Ban
|
|
|
|
* ServiceUser
|
|
|
|
* Whitelists
|
|
|
|
* ...
|
|
|
|
|
|
|
|
See the details for each of these operations in the documentation
|
|
|
|
of each of the method.
|
2017-10-14 18:18:12 +00:00
|
|
|
"""
|
2016-07-01 20:47:08 +00:00
|
|
|
|
2017-09-10 23:29:24 +00:00
|
|
|
from __future__ import unicode_literals
|
2016-07-01 20:47:08 +00:00
|
|
|
|
|
|
|
from django import forms
|
2017-07-06 17:01:04 +00:00
|
|
|
from django.forms import ModelForm, Form
|
2016-07-08 01:12:28 +00:00
|
|
|
from django.contrib.auth.forms import ReadOnlyPasswordHashField
|
2020-04-19 20:40:49 +00:00
|
|
|
from django.contrib.auth.password_validation import validate_password, password_validators_help_text_html
|
2016-11-21 19:14:25 +00:00
|
|
|
from django.core.validators import MinLengthValidator
|
2017-05-26 01:07:10 +00:00
|
|
|
from django.utils import timezone
|
2019-09-05 17:55:54 +00:00
|
|
|
from django.utils.functional import lazy
|
2017-12-31 16:11:19 +00:00
|
|
|
from django.contrib.auth.models import Group, Permission
|
2018-08-15 17:15:26 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2018-09-20 13:38:36 +00:00
|
|
|
from django.utils.safestring import mark_safe
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-08-28 18:18:09 +00:00
|
|
|
from machines.models import Interface, Machine, Nas
|
|
|
|
from topologie.models import Port
|
2017-10-14 18:18:12 +00:00
|
|
|
from preferences.models import OptionalUser
|
2018-11-15 17:58:45 +00:00
|
|
|
from re2o.utils import remove_user_room
|
|
|
|
from re2o.base import get_input_formats_help_text
|
2018-04-14 23:16:49 +00:00
|
|
|
from re2o.mixins import FormRevMixin
|
|
|
|
from re2o.field_permissions import FieldPermissionFormMixin
|
|
|
|
|
2018-09-20 08:57:31 +00:00
|
|
|
from preferences.models import GeneralOption
|
|
|
|
|
2018-05-05 15:58:13 +00:00
|
|
|
from .widgets import DateTimePicker
|
|
|
|
|
2018-03-24 18:06:49 +00:00
|
|
|
from .models import (
|
|
|
|
User,
|
|
|
|
ServiceUser,
|
|
|
|
School,
|
|
|
|
ListRight,
|
|
|
|
Whitelist,
|
2018-08-01 11:06:25 +00:00
|
|
|
EMailAddress,
|
2018-03-24 18:06:49 +00:00
|
|
|
ListShell,
|
|
|
|
Ban,
|
|
|
|
Adherent,
|
2019-11-04 16:55:03 +00:00
|
|
|
Club,
|
2018-03-24 18:06:49 +00:00
|
|
|
)
|
2017-12-28 16:47:02 +00:00
|
|
|
|
2016-07-01 20:47:08 +00:00
|
|
|
|
2020-05-01 14:29:26 +00:00
|
|
|
#### Django Admin Custom Views
|
2020-04-16 20:06:14 +00:00
|
|
|
|
|
|
|
|
2020-05-28 20:08:16 +00:00
|
|
|
class UserAdminForm(FormRevMixin, forms.ModelForm):
|
2020-05-28 20:24:07 +00:00
|
|
|
"""A form for creating new and editing users. Includes all the required
|
2017-10-14 18:18:12 +00:00
|
|
|
fields, plus a repeated password.
|
|
|
|
|
2020-05-01 14:29:26 +00:00
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
password1 = forms.CharField(
|
2018-08-15 17:15:26 +00:00
|
|
|
label=_("Password"),
|
2017-10-14 18:18:12 +00:00
|
|
|
widget=forms.PasswordInput,
|
2019-11-04 16:55:03 +00:00
|
|
|
max_length=255,
|
2020-05-28 20:08:16 +00:00
|
|
|
help_text=password_validators_help_text_html(),
|
|
|
|
required=False,
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
password2 = forms.CharField(
|
2018-08-15 17:15:26 +00:00
|
|
|
label=_("Password confirmation"),
|
2017-10-14 18:18:12 +00:00
|
|
|
widget=forms.PasswordInput,
|
2019-11-04 16:55:03 +00:00
|
|
|
max_length=255,
|
2020-05-28 20:08:16 +00:00
|
|
|
required=False,
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2020-05-28 20:08:16 +00:00
|
|
|
super(UserAdminForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2020-04-21 15:07:09 +00:00
|
|
|
self.fields["email"].required = True
|
2017-10-08 20:22:04 +00:00
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
class Meta:
|
2020-05-28 20:08:16 +00:00
|
|
|
fields = ("pseudo", "surname", "name", "email", "is_superuser")
|
2016-07-08 01:12:28 +00:00
|
|
|
|
|
|
|
def clean_password2(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean password 2, check if passwd1 and 2 values match.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form UserCreationForm instance
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
password2 (string): The password2 value if all tests returned True
|
|
|
|
"""
|
2016-07-08 01:12:28 +00:00
|
|
|
password1 = self.cleaned_data.get("password1")
|
|
|
|
password2 = self.cleaned_data.get("password2")
|
2020-05-28 20:08:16 +00:00
|
|
|
if password1 and password2:
|
|
|
|
if password1 and password2 and password1 != password2:
|
|
|
|
raise forms.ValidationError(_("The passwords don't match."))
|
|
|
|
validate_password(password1)
|
2016-07-08 01:12:28 +00:00
|
|
|
return password2
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Save function. Call standard "set_password" django function,
|
|
|
|
from provided value for new password, for making hash.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form UserCreationForm instance
|
|
|
|
commit : If False, don't make the real save in database
|
|
|
|
"""
|
2016-07-08 01:12:28 +00:00
|
|
|
# Save the provided password in hashed format
|
2020-05-28 20:08:16 +00:00
|
|
|
user = super(UserAdminForm, self).save(commit=False)
|
|
|
|
if self.cleaned_data["password1"]:
|
|
|
|
user.set_password(self.cleaned_data["password1"])
|
|
|
|
user.save()
|
2016-07-08 01:12:28 +00:00
|
|
|
return user
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2020-05-28 20:24:07 +00:00
|
|
|
class ServiceUserAdminForm(FormRevMixin, forms.ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""A form for creating new service users. Includes all the required
|
|
|
|
fields, plus a repeated password. For Admin view purpose only.
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2020-05-01 14:29:26 +00:00
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
password1 = forms.CharField(
|
2020-05-28 20:24:07 +00:00
|
|
|
label=_("Password"),
|
|
|
|
widget=forms.PasswordInput,
|
|
|
|
max_length=255,
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
password2 = forms.CharField(
|
2018-08-15 17:15:26 +00:00
|
|
|
label=_("Password confirmation"),
|
2017-10-14 18:18:12 +00:00
|
|
|
widget=forms.PasswordInput,
|
2019-11-04 16:55:03 +00:00
|
|
|
max_length=255,
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2016-07-31 03:03:07 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2020-05-28 20:24:07 +00:00
|
|
|
super(ServiceUserAdminForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2017-10-08 20:22:04 +00:00
|
|
|
|
2016-07-31 03:03:07 +00:00
|
|
|
class Meta:
|
|
|
|
model = ServiceUser
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ("pseudo",)
|
2016-07-31 03:03:07 +00:00
|
|
|
|
|
|
|
def clean_password2(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean password 2, check if passwd1 and 2 values match.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form UserCreationForm instance
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
password2 (string): The password2 value if all tests returned True
|
|
|
|
"""
|
2016-07-31 03:03:07 +00:00
|
|
|
password1 = self.cleaned_data.get("password1")
|
|
|
|
password2 = self.cleaned_data.get("password2")
|
|
|
|
if password1 and password2 and password1 != password2:
|
2018-08-15 17:15:26 +00:00
|
|
|
raise forms.ValidationError(_("The passwords don't match."))
|
2016-07-31 03:03:07 +00:00
|
|
|
return password2
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Save function. Call standard "set_password" django function,
|
|
|
|
from provided value for new password, for making hash.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form ServiceUserAdminForm instance
|
|
|
|
commit : If False, don't make the real save in database
|
|
|
|
"""
|
2020-05-28 20:24:07 +00:00
|
|
|
user = super(ServiceUserAdminForm, self).save(commit=False)
|
2016-07-31 03:03:07 +00:00
|
|
|
user.set_password(self.cleaned_data["password1"])
|
|
|
|
user.save()
|
|
|
|
return user
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2020-05-01 14:29:26 +00:00
|
|
|
### Classic Django View
|
|
|
|
|
|
|
|
|
|
|
|
class PassForm(FormRevMixin, FieldPermissionFormMixin, forms.ModelForm):
|
|
|
|
"""Django form for changing password, check if 2 passwords are the same,
|
|
|
|
and validate password for django base password validators provided in
|
|
|
|
settings_local.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
|
|
|
|
"""
|
|
|
|
selfpasswd = forms.CharField(
|
|
|
|
label=_("Current password"), max_length=255, widget=forms.PasswordInput
|
|
|
|
)
|
|
|
|
passwd1 = forms.CharField(
|
|
|
|
label=_("New password"),
|
|
|
|
max_length=255,
|
|
|
|
widget=forms.PasswordInput,
|
|
|
|
help_text=password_validators_help_text_html()
|
|
|
|
)
|
|
|
|
passwd2 = forms.CharField(
|
|
|
|
label=_("New password confirmation"),
|
|
|
|
max_length=255,
|
|
|
|
widget=forms.PasswordInput,
|
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = User
|
|
|
|
fields = []
|
|
|
|
|
|
|
|
def clean_passwd2(self):
|
|
|
|
"""Clean password 2, check if passwd1 and 2 values match, and
|
|
|
|
apply django validator with validate_password function.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form PassForm instance
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
password2 (string): The password2 value if all tests returned True
|
|
|
|
"""
|
|
|
|
password1 = self.cleaned_data.get("passwd1")
|
|
|
|
password2 = self.cleaned_data.get("passwd2")
|
|
|
|
if password1 and password2 and password1 != password2:
|
|
|
|
raise forms.ValidationError(_("The new passwords don't match."))
|
|
|
|
validate_password(password1, user=self.instance)
|
|
|
|
return password2
|
|
|
|
|
|
|
|
def clean_selfpasswd(self):
|
|
|
|
"""Clean selfpassword, check if provided original user password match
|
|
|
|
with the stored value.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form PassForm instance
|
|
|
|
"""
|
|
|
|
if not self.instance.check_password(self.cleaned_data.get("selfpasswd")):
|
|
|
|
raise forms.ValidationError(_("The current password is incorrect."))
|
|
|
|
return
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
"""Save function. Call standard "set_password" django function,
|
|
|
|
and call set_active for set user in active state if needed.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form PassForm instance
|
|
|
|
commit : If False, don't make the real save in database
|
|
|
|
"""
|
|
|
|
user = super(PassForm, self).save(commit=False)
|
|
|
|
user.set_password(self.cleaned_data.get("passwd1"))
|
|
|
|
user.state = User.STATE_NOT_YET_ACTIVE
|
|
|
|
user.set_active()
|
|
|
|
user.save()
|
|
|
|
|
|
|
|
|
2016-07-20 10:06:33 +00:00
|
|
|
class ResetPasswordForm(forms.Form):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""A form for asking to reset password.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-08-15 17:15:26 +00:00
|
|
|
pseudo = forms.CharField(label=_("Username"), max_length=255)
|
2016-07-20 10:06:33 +00:00
|
|
|
email = forms.EmailField(max_length=255)
|
2017-05-26 01:07:10 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2017-05-26 01:07:10 +00:00
|
|
|
class MassArchiveForm(forms.Form):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""A form for archiving a lot de users. Get a start date
|
|
|
|
for start archiving.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
|
|
|
date = forms.DateTimeField(help_text="%d/%m/%y")
|
2019-03-17 03:46:55 +00:00
|
|
|
full_archive = forms.BooleanField(
|
2019-11-04 16:55:03 +00:00
|
|
|
label=_(
|
2019-11-20 00:52:11 +00:00
|
|
|
"Fully archive users? WARNING: CRITICAL OPERATION IF TRUE"
|
2019-11-04 16:55:03 +00:00
|
|
|
),
|
2019-03-17 03:46:55 +00:00
|
|
|
initial=False,
|
2019-11-04 16:55:03 +00:00
|
|
|
required=False,
|
2019-03-17 03:46:55 +00:00
|
|
|
)
|
2017-05-26 01:07:10 +00:00
|
|
|
|
|
|
|
def clean(self):
|
2017-10-14 18:18:12 +00:00
|
|
|
cleaned_data = super(MassArchiveForm, self).clean()
|
2017-05-26 01:07:10 +00:00
|
|
|
date = cleaned_data.get("date")
|
|
|
|
if date:
|
2018-03-31 15:18:39 +00:00
|
|
|
if date > timezone.now():
|
2019-11-04 16:55:03 +00:00
|
|
|
raise forms.ValidationError(
|
|
|
|
_(
|
|
|
|
"Impossible to archive users"
|
|
|
|
" whose end access date is in"
|
|
|
|
" the future."
|
|
|
|
)
|
|
|
|
)
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class AdherentForm(FormRevMixin, FieldPermissionFormMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Adherent Edition Form, base form used for editing user by himself
|
|
|
|
or another user. Labels are provided for help purposes.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-25 21:37:12 +00:00
|
|
|
super(AdherentForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["name"].label = _("First name")
|
|
|
|
self.fields["surname"].label = _("Surname")
|
|
|
|
self.fields["email"].label = _("Email address")
|
|
|
|
self.fields["school"].label = _("School")
|
|
|
|
self.fields["comment"].label = _("Comment")
|
2020-05-17 10:51:05 +00:00
|
|
|
self.fields["profile_image"].label = _("Profile Image")
|
2019-11-04 16:55:03 +00:00
|
|
|
if "room" in self.fields:
|
|
|
|
self.fields["room"].label = _("Room")
|
|
|
|
self.fields["room"].empty_label = _("No room")
|
|
|
|
self.fields["school"].empty_label = _("Select a school")
|
2018-07-30 15:00:41 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class Meta:
|
2017-10-23 01:22:00 +00:00
|
|
|
model = Adherent
|
2017-07-06 17:01:04 +00:00
|
|
|
fields = [
|
2019-11-04 16:55:03 +00:00
|
|
|
"name",
|
|
|
|
"surname",
|
|
|
|
"pseudo",
|
|
|
|
"email",
|
|
|
|
"school",
|
|
|
|
"comment",
|
|
|
|
"telephone",
|
2020-05-17 10:51:05 +00:00
|
|
|
"profile_image",
|
2019-11-04 16:55:03 +00:00
|
|
|
"room",
|
2017-07-06 17:01:04 +00:00
|
|
|
]
|
|
|
|
|
2018-12-28 19:32:39 +00:00
|
|
|
force = forms.BooleanField(
|
2019-11-04 16:55:03 +00:00
|
|
|
label=_("Force the move?"), initial=False, required=False
|
2018-12-28 19:32:39 +00:00
|
|
|
)
|
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
def clean_telephone(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean telephone, check if telephone is made mandatory, and
|
|
|
|
raise error if not provided
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form AdherentForm instance
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
telephone (string): The telephone string if clean is True
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
telephone = self.cleaned_data["telephone"]
|
|
|
|
if not telephone and OptionalUser.get_cached_value("is_tel_mandatory"):
|
|
|
|
raise forms.ValidationError(_("A valid telephone number is required."))
|
2017-07-06 17:01:04 +00:00
|
|
|
return telephone
|
|
|
|
|
2017-10-25 21:37:12 +00:00
|
|
|
def clean_force(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean force, remove previous user from room if needed.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form AdherentForm instance
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
room = self.cleaned_data.get("room")
|
|
|
|
if self.cleaned_data.get("force", False) and room:
|
2019-09-10 15:09:26 +00:00
|
|
|
remove_user_room(room)
|
2017-10-25 21:37:12 +00:00
|
|
|
return
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2020-04-15 19:04:14 +00:00
|
|
|
def clean_room(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean room, based on room policy provided by preferences.
|
|
|
|
If needed, call remove_user_room to make the room empty before
|
|
|
|
saving self.instance into that room.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form AdherentForm instance
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
room (string): The room instance
|
|
|
|
"""
|
2020-04-15 19:04:14 +00:00
|
|
|
# Handle case where regular users can force move
|
|
|
|
room = self.cleaned_data.get("room")
|
2020-04-19 01:16:55 +00:00
|
|
|
room_policy = OptionalUser.get_cached_value("self_room_policy")
|
|
|
|
if room_policy == OptionalUser.DISABLED or not room:
|
2020-04-15 19:04:14 +00:00
|
|
|
return room
|
|
|
|
|
|
|
|
# Remove the previous user's room, if allowed and necessary
|
2020-04-19 01:16:55 +00:00
|
|
|
remove_user_room(room, force=bool(room_policy == OptionalUser.ALL_ROOM))
|
2020-04-15 19:04:14 +00:00
|
|
|
|
|
|
|
# Run standard clean process
|
|
|
|
return room
|
|
|
|
|
2018-12-28 19:58:43 +00:00
|
|
|
|
2018-09-19 13:40:53 +00:00
|
|
|
class AdherentCreationForm(AdherentForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""AdherentCreationForm. Inherit from AdherentForm, base form used for creating
|
|
|
|
user by himself or another user. Labels are provided for help purposes.
|
|
|
|
Add some instructions, and validation for initial creation.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2020-04-17 16:01:35 +00:00
|
|
|
# Champ pour choisir si un lien est envoyé par mail pour le mot de passe
|
|
|
|
init_password_by_mail_info = _(
|
|
|
|
"If this options is set, you will receive a link to set"
|
|
|
|
" your initial password by email. If you do not have"
|
|
|
|
" any means of accessing your emails, you can disable"
|
|
|
|
" this option to set your password immediatly."
|
|
|
|
" You will still receive an email to confirm your address."
|
|
|
|
" Failure to confirm your address will result in an"
|
|
|
|
" automatic suspension of your account until you do."
|
|
|
|
)
|
2020-04-16 17:59:53 +00:00
|
|
|
|
2020-04-17 16:01:35 +00:00
|
|
|
init_password_by_mail = forms.BooleanField(
|
|
|
|
help_text=init_password_by_mail_info,
|
|
|
|
required=False,
|
|
|
|
initial=True
|
|
|
|
)
|
|
|
|
init_password_by_mail.label = _("Send password reset link by email.")
|
|
|
|
|
|
|
|
# Champs pour initialiser le mot de passe
|
|
|
|
# Validators are handled manually since theses fields aren't always required
|
|
|
|
password1 = forms.CharField(
|
|
|
|
required=False,
|
|
|
|
label=_("Password"),
|
|
|
|
widget=forms.PasswordInput,
|
|
|
|
max_length=255,
|
2020-04-19 20:40:49 +00:00
|
|
|
help_text=password_validators_help_text_html()
|
2020-04-17 16:01:35 +00:00
|
|
|
)
|
|
|
|
password2 = forms.CharField(
|
|
|
|
required=False,
|
|
|
|
label=_("Password confirmation"),
|
|
|
|
widget=forms.PasswordInput,
|
|
|
|
max_length=255,
|
|
|
|
)
|
2018-09-19 13:40:53 +00:00
|
|
|
|
2018-09-19 21:24:15 +00:00
|
|
|
# Champ permettant d'éviter au maxium les doublons d'utilisateurs
|
2019-11-04 16:55:03 +00:00
|
|
|
former_user_check_info = _(
|
2019-11-20 00:52:11 +00:00
|
|
|
"If you already have an account, please use it. If your lost access to"
|
|
|
|
" it, please consider using the forgotten password button on the"
|
|
|
|
" login page or contacting support."
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
|
|
|
former_user_check = forms.BooleanField(
|
|
|
|
required=True, help_text=former_user_check_info
|
|
|
|
)
|
2019-11-20 00:52:11 +00:00
|
|
|
former_user_check.label = _("I certify that I have not had an account before.")
|
2017-10-25 21:37:12 +00:00
|
|
|
|
2018-09-20 08:57:31 +00:00
|
|
|
# Checkbox for GTU
|
|
|
|
gtu_check = forms.BooleanField(required=True)
|
|
|
|
|
2019-01-05 15:19:38 +00:00
|
|
|
class Meta:
|
|
|
|
model = Adherent
|
|
|
|
fields = [
|
2019-11-04 16:55:03 +00:00
|
|
|
"name",
|
|
|
|
"surname",
|
|
|
|
"pseudo",
|
|
|
|
"email",
|
|
|
|
"school",
|
|
|
|
"comment",
|
|
|
|
"telephone",
|
2020-05-17 10:51:05 +00:00
|
|
|
"profile_image",
|
2019-11-04 16:55:03 +00:00
|
|
|
"room",
|
|
|
|
"state",
|
2019-01-05 15:19:38 +00:00
|
|
|
]
|
|
|
|
|
2018-09-19 21:24:15 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(AdherentCreationForm, self).__init__(*args, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
gtu_file = GeneralOption.get_cached_value("GTU")
|
2020-04-21 15:07:09 +00:00
|
|
|
self.fields["email"].required = True
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["gtu_check"].label = mark_safe(
|
|
|
|
"%s <a href='%s' download='CGU'>%s</a>."
|
|
|
|
% (
|
2019-09-05 17:55:54 +00:00
|
|
|
_("I commit to accept the"),
|
2019-09-20 12:20:42 +00:00
|
|
|
gtu_file.url if gtu_file else "#",
|
2019-11-04 16:55:03 +00:00
|
|
|
_("General Terms of Use"),
|
2019-09-05 17:55:54 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-04-17 16:01:35 +00:00
|
|
|
# Remove password fields if option is disabled
|
|
|
|
if not OptionalUser.get_cached_value("allow_set_password_during_user_creation"):
|
|
|
|
self.fields.pop("init_password_by_mail")
|
|
|
|
self.fields.pop("password1")
|
|
|
|
self.fields.pop("password2")
|
|
|
|
|
2020-04-16 16:58:20 +00:00
|
|
|
def clean_password2(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean password 2, check if passwd1 and 2 values match, and
|
|
|
|
apply django validator with validate_password function.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form AdherentCreationForm instance
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
password2 (string): The password2 value if all tests returned True
|
|
|
|
"""
|
2020-04-16 16:58:20 +00:00
|
|
|
send_email = self.cleaned_data.get("init_password_by_mail")
|
|
|
|
if send_email:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Check that the two password entries match
|
|
|
|
password1 = self.cleaned_data.get("password1")
|
|
|
|
password2 = self.cleaned_data.get("password2")
|
|
|
|
if password1 and password2 and password1 != password2:
|
|
|
|
raise forms.ValidationError(_("The passwords don't match."))
|
2020-04-19 20:14:38 +00:00
|
|
|
validate_password(password1)
|
2020-04-16 16:58:20 +00:00
|
|
|
return password2
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Save function. If password has been set during creation,
|
|
|
|
call standard "set_password" django function from provided value
|
|
|
|
for new password, for making hash.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form AdherentCreationForm instance
|
|
|
|
commit : If False, don't make the real save in database
|
|
|
|
"""
|
2020-04-16 16:58:20 +00:00
|
|
|
# Save the provided password in hashed format
|
|
|
|
user = super(AdherentForm, self).save(commit=False)
|
|
|
|
|
2020-04-16 17:16:33 +00:00
|
|
|
is_set_password_allowed = OptionalUser.get_cached_value("allow_set_password_during_user_creation")
|
2020-04-17 18:41:02 +00:00
|
|
|
set_passwd = is_set_password_allowed and not self.cleaned_data.get("init_password_by_mail")
|
|
|
|
if set_passwd:
|
2020-04-16 16:58:20 +00:00
|
|
|
user.set_password(self.cleaned_data["password1"])
|
|
|
|
|
|
|
|
user.save()
|
|
|
|
return user
|
|
|
|
|
2019-09-05 17:55:54 +00:00
|
|
|
|
2018-09-20 06:39:48 +00:00
|
|
|
class AdherentEditForm(AdherentForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""AdherentEditForm. Inherit from AdherentForm, base form used for editing
|
|
|
|
user by himself or another user. Labels are provided for help purposes.
|
|
|
|
Add some instructions, and validation, fields depends on editing user rights.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-09-29 20:52:57 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
super(AdherentEditForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields["gpg_fingerprint"].widget.attrs["placeholder"] = _(
|
|
|
|
"Leave empty if you don't have any GPG key."
|
|
|
|
)
|
2020-04-21 14:47:09 +00:00
|
|
|
self.user = kwargs["instance"]
|
2020-04-21 16:19:03 +00:00
|
|
|
self.fields["email"].required = bool(self.user.email)
|
2019-11-04 16:55:03 +00:00
|
|
|
if "shell" in self.fields:
|
|
|
|
self.fields["shell"].empty_label = _("Default shell")
|
2018-09-20 06:39:48 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Adherent
|
|
|
|
fields = [
|
2019-11-04 16:55:03 +00:00
|
|
|
"name",
|
|
|
|
"surname",
|
|
|
|
"pseudo",
|
|
|
|
"email",
|
|
|
|
"school",
|
|
|
|
"comment",
|
|
|
|
"telephone",
|
2020-05-17 10:51:05 +00:00
|
|
|
"profile_image",
|
2019-11-04 16:55:03 +00:00
|
|
|
"room",
|
|
|
|
"shell",
|
|
|
|
"gpg_fingerprint",
|
|
|
|
"shortcuts_enabled",
|
2018-09-20 06:39:48 +00:00
|
|
|
]
|
2018-10-03 00:58:55 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ClubForm(FormRevMixin, FieldPermissionFormMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""ClubForm. For editing club by himself or another user. Labels are provided for
|
|
|
|
help purposes. Add some instructions, and validation, fields depends
|
|
|
|
on editing user rights.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-10-23 03:02:55 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-25 21:37:12 +00:00
|
|
|
super(ClubForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["surname"].label = _("Name")
|
|
|
|
self.fields["school"].label = _("School")
|
|
|
|
self.fields["comment"].label = _("Comment")
|
|
|
|
self.fields["email"].label = _("Email address")
|
|
|
|
if "room" in self.fields:
|
|
|
|
self.fields["room"].label = _("Room")
|
|
|
|
self.fields["room"].empty_label = _("No room")
|
|
|
|
self.fields["school"].empty_label = _("Select a school")
|
|
|
|
self.fields["mailing"].label = _("Use a mailing list")
|
2017-10-23 03:02:55 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Club
|
|
|
|
fields = [
|
2019-11-04 16:55:03 +00:00
|
|
|
"surname",
|
|
|
|
"pseudo",
|
|
|
|
"school",
|
|
|
|
"comment",
|
|
|
|
"room",
|
|
|
|
"email",
|
|
|
|
"telephone",
|
2020-05-17 10:51:05 +00:00
|
|
|
"profile_image",
|
2019-11-04 16:55:03 +00:00
|
|
|
"email",
|
|
|
|
"shell",
|
|
|
|
"mailing",
|
2017-10-23 03:02:55 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def clean_telephone(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean telephone, check if telephone is made mandatory, and
|
|
|
|
raise error if not provided
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form ClubForm instance
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
telephone (string): The telephone string if clean is True
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
telephone = self.cleaned_data["telephone"]
|
|
|
|
if not telephone and OptionalUser.get_cached_value("is_tel_mandatory"):
|
|
|
|
raise forms.ValidationError(_("A valid telephone number is required."))
|
2017-10-23 03:02:55 +00:00
|
|
|
return telephone
|
|
|
|
|
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ClubAdminandMembersForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""ClubAdminandMembersForm. Only For editing administrators of a club by himself
|
|
|
|
or another user.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-11-20 03:41:29 +00:00
|
|
|
class Meta:
|
|
|
|
model = Club
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["administrators", "members"]
|
2017-11-20 03:41:29 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
|
|
|
super(ClubAdminandMembersForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2017-11-20 03:41:29 +00:00
|
|
|
|
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class PasswordForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""PasswordForm. Do not use directly in views without extra validations.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class Meta:
|
|
|
|
model = User
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["password", "pwd_ntlm"]
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(PasswordForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ServiceUserForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""ServiceUserForm, used for creating a service user, require
|
|
|
|
a password and set it.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
password = forms.CharField(
|
2018-08-15 17:15:26 +00:00
|
|
|
label=_("New password"),
|
2017-10-14 18:18:12 +00:00
|
|
|
max_length=255,
|
|
|
|
validators=[MinLengthValidator(8)],
|
|
|
|
widget=forms.PasswordInput,
|
2019-11-04 16:55:03 +00:00
|
|
|
required=True,
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
2017-07-06 17:01:04 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = ServiceUser
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ("pseudo", "access_group", "comment")
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(ServiceUserForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
2018-05-02 19:10:28 +00:00
|
|
|
def save(self, commit=True):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Save function. If password has been changed and provided,
|
|
|
|
call standard "set_password" django function from provided value
|
|
|
|
for new password, for making hash.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form ServiceUserForm instance
|
|
|
|
commit : If False, don't make the real save in database
|
|
|
|
"""
|
2018-05-02 19:10:28 +00:00
|
|
|
user = super(ServiceUserForm, self).save(commit=False)
|
2019-11-04 16:55:03 +00:00
|
|
|
if self.cleaned_data["password"]:
|
2018-05-02 19:10:28 +00:00
|
|
|
user.set_password(self.cleaned_data.get("password"))
|
|
|
|
user.save()
|
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class EditServiceUserForm(ServiceUserForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""EditServiceUserForm, used for editing a service user, can
|
|
|
|
edit password, access_group and comment.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-12-22 12:10:31 +00:00
|
|
|
password = forms.CharField(
|
|
|
|
label=_("New password"),
|
|
|
|
max_length=255,
|
|
|
|
validators=[MinLengthValidator(8)],
|
|
|
|
widget=forms.PasswordInput,
|
2019-11-04 16:55:03 +00:00
|
|
|
required=False,
|
2018-12-22 12:10:31 +00:00
|
|
|
)
|
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class Meta(ServiceUserForm.Meta):
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["access_group", "comment"]
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class StateForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""StateForm, Change state of an user, and if
|
|
|
|
its main email is verified or not
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class Meta:
|
|
|
|
model = User
|
2020-04-17 22:29:50 +00:00
|
|
|
fields = ["state", "email_state"]
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(StateForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2020-04-17 22:29:50 +00:00
|
|
|
self.fields["state"].label = _("State")
|
|
|
|
self.fields["email_state"].label = _("Email state")
|
2017-10-08 20:22:04 +00:00
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-05-03 12:22:52 +00:00
|
|
|
class GroupForm(FieldPermissionFormMixin, FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""GroupForm, form used for editing user groups.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-12-31 16:11:19 +00:00
|
|
|
groups = forms.ModelMultipleChoiceField(
|
2019-11-04 16:55:03 +00:00
|
|
|
Group.objects.all(), widget=forms.CheckboxSelectMultiple, required=False
|
2017-12-31 16:11:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = User
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["is_superuser", "groups"]
|
2017-12-31 16:11:19 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-12-31 16:11:19 +00:00
|
|
|
super(GroupForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
if "is_superuser" in self.fields:
|
|
|
|
self.fields["is_superuser"].label = _("Superuser")
|
2017-12-31 16:11:19 +00:00
|
|
|
|
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class SchoolForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""SchoolForm, form used for creating or editing school.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class Meta:
|
|
|
|
model = School
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["name"]
|
2017-07-06 17:01:04 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(SchoolForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["name"].label = _("School")
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ShellForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""ShellForm, form used for creating or editing shell.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-03-24 18:06:49 +00:00
|
|
|
class Meta:
|
|
|
|
model = ListShell
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["shell"]
|
2018-03-24 18:06:49 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2018-03-24 18:06:49 +00:00
|
|
|
super(ShellForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["shell"].label = _("Shell name")
|
2018-03-24 18:06:49 +00:00
|
|
|
|
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class ListRightForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""ListRightForm, form used for editing a listright,
|
|
|
|
related with django group object. Gid, primary key, can't
|
|
|
|
be edited.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-12-31 16:11:19 +00:00
|
|
|
permissions = forms.ModelMultipleChoiceField(
|
2019-11-04 16:55:03 +00:00
|
|
|
Permission.objects.all().select_related("content_type"),
|
2017-12-31 16:11:19 +00:00
|
|
|
widget=forms.CheckboxSelectMultiple,
|
2019-11-04 16:55:03 +00:00
|
|
|
required=False,
|
2017-12-31 16:11:19 +00:00
|
|
|
)
|
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class Meta:
|
|
|
|
model = ListRight
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ("name", "unix_name", "critical", "permissions", "details")
|
2017-07-06 17:01:04 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(ListRightForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["unix_name"].label = _("Name of the group of rights")
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class NewListRightForm(ListRightForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""ListRightForm, form used for creating a listright,
|
|
|
|
related with django group object.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
class Meta(ListRightForm.Meta):
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ("name", "unix_name", "gid", "critical", "permissions", "details")
|
2017-07-06 17:01:04 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(NewListRightForm, self).__init__(*args, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["gid"].label = _(
|
2019-11-20 00:52:11 +00:00
|
|
|
"GID. Warning: this field must not be edited after creation."
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2017-10-14 18:18:12 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2017-08-18 22:01:06 +00:00
|
|
|
class DelListRightForm(Form):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""DelListRightForm, form for deleting one or several ListRight
|
|
|
|
instances.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
listrights = forms.ModelMultipleChoiceField(
|
2017-12-13 17:35:16 +00:00
|
|
|
queryset=ListRight.objects.none(),
|
2018-08-15 17:15:26 +00:00
|
|
|
label=_("Current groups of rights"),
|
2019-11-04 16:55:03 +00:00
|
|
|
widget=forms.CheckboxSelectMultiple,
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
|
2017-12-13 17:35:16 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
instances = kwargs.pop("instances", None)
|
2017-12-13 17:35:16 +00:00
|
|
|
super(DelListRightForm, self).__init__(*args, **kwargs)
|
|
|
|
if instances:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["listrights"].queryset = instances
|
2017-12-13 17:35:16 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["listrights"].queryset = ListRight.objects.all()
|
2017-12-13 17:35:16 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2017-08-18 22:01:06 +00:00
|
|
|
class DelSchoolForm(Form):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""DelSchoolForm, form for deleting one or several School
|
|
|
|
instances.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-10-14 18:18:12 +00:00
|
|
|
schools = forms.ModelMultipleChoiceField(
|
2017-12-13 17:35:16 +00:00
|
|
|
queryset=School.objects.none(),
|
2018-08-15 17:15:26 +00:00
|
|
|
label=_("Current schools"),
|
2019-11-04 16:55:03 +00:00
|
|
|
widget=forms.CheckboxSelectMultiple,
|
2017-10-14 18:18:12 +00:00
|
|
|
)
|
|
|
|
|
2017-12-12 03:33:50 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
instances = kwargs.pop("instances", None)
|
2017-12-12 03:33:50 +00:00
|
|
|
super(DelSchoolForm, self).__init__(*args, **kwargs)
|
2017-12-13 17:35:16 +00:00
|
|
|
if instances:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["schools"].queryset = instances
|
2017-12-13 17:35:16 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["schools"].queryset = School.objects.all()
|
2017-12-12 03:33:50 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class BanForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""BanForm, form used for creating or editing a ban instance.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(BanForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["date_end"].label = _("End date")
|
|
|
|
self.fields["date_end"].localize = False
|
2017-07-06 17:01:04 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Ban
|
2019-11-04 16:55:03 +00:00
|
|
|
exclude = ["user"]
|
|
|
|
widgets = {"date_end": DateTimePicker}
|
2017-07-06 17:01:04 +00:00
|
|
|
|
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class WhitelistForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""WhitelistForm, form used for creating or editing a whitelist instance.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-07-06 17:01:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(WhitelistForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["date_end"].label = _("End date")
|
|
|
|
self.fields["date_end"].localize = False
|
2017-07-06 17:01:04 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Whitelist
|
2019-11-04 16:55:03 +00:00
|
|
|
exclude = ["user"]
|
|
|
|
widgets = {"date_end": DateTimePicker}
|
2018-06-26 16:46:57 +00:00
|
|
|
|
|
|
|
|
2018-08-01 11:06:25 +00:00
|
|
|
class EMailAddressForm(FormRevMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""EMailAddressForm, form used for creating or editing a local
|
|
|
|
email for a user.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-06-26 16:46:57 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2018-08-01 11:06:25 +00:00
|
|
|
super(EMailAddressForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["local_part"].label = _("Local part of the email address")
|
2019-11-20 00:52:11 +00:00
|
|
|
self.fields["local_part"].help_text = _("Can't contain @.")
|
2018-08-14 10:21:58 +00:00
|
|
|
|
2018-08-09 21:43:35 +00:00
|
|
|
def clean_local_part(self):
|
2019-11-04 16:55:03 +00:00
|
|
|
return self.cleaned_data.get("local_part").lower()
|
2018-06-26 16:46:57 +00:00
|
|
|
|
|
|
|
class Meta:
|
2018-08-01 11:06:25 +00:00
|
|
|
model = EMailAddress
|
2019-11-04 16:55:03 +00:00
|
|
|
exclude = ["user"]
|
2018-06-27 21:13:43 +00:00
|
|
|
|
2018-07-30 15:00:41 +00:00
|
|
|
|
|
|
|
class EmailSettingsForm(FormRevMixin, FieldPermissionFormMixin, ModelForm):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""EMailSettingsForm, form used for editing email settings for a user.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-06-27 21:13:43 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2018-07-30 15:00:41 +00:00
|
|
|
super(EmailSettingsForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2020-04-21 14:47:09 +00:00
|
|
|
self.user = kwargs["instance"]
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields["email"].label = _("Main email address")
|
2020-04-21 16:19:03 +00:00
|
|
|
self.fields["email"].required = bool(self.user.email)
|
2019-11-04 16:55:03 +00:00
|
|
|
if "local_email_redirect" in self.fields:
|
|
|
|
self.fields["local_email_redirect"].label = _("Redirect local emails")
|
|
|
|
if "local_email_enabled" in self.fields:
|
|
|
|
self.fields["local_email_enabled"].label = _("Use local emails")
|
2018-06-27 21:13:43 +00:00
|
|
|
|
|
|
|
class Meta:
|
2018-06-29 14:36:04 +00:00
|
|
|
model = User
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["email", "local_email_enabled", "local_email_redirect"]
|
2018-08-15 17:15:26 +00:00
|
|
|
|
2018-08-28 18:18:09 +00:00
|
|
|
|
|
|
|
class InitialRegisterForm(forms.Form):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""InitialRegisterForm, form used for auto-register of room and mac-address
|
|
|
|
with captive-portal.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
DjangoForm : Inherit from basic django form
|
|
|
|
"""
|
2018-08-28 18:18:09 +00:00
|
|
|
register_room = forms.BooleanField(required=False)
|
|
|
|
register_machine = forms.BooleanField(required=False)
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
switch_ip = kwargs.pop("switch_ip")
|
|
|
|
switch_port = kwargs.pop("switch_port")
|
|
|
|
client_mac = kwargs.pop("client_mac")
|
|
|
|
self.user = kwargs.pop("user")
|
2018-08-28 18:18:09 +00:00
|
|
|
if switch_ip and switch_port:
|
|
|
|
# Looking for a port
|
2019-11-04 16:55:03 +00:00
|
|
|
port = Port.objects.filter(
|
|
|
|
switch__interface__ipv4__ipv4=switch_ip, port=switch_port
|
|
|
|
).first()
|
2018-08-28 18:18:09 +00:00
|
|
|
# If a port exists, checking there is a room AND radius
|
|
|
|
if port:
|
2019-11-04 16:55:03 +00:00
|
|
|
if (
|
|
|
|
port.get_port_profile.radius_type != "NO"
|
|
|
|
and port.get_port_profile.radius_mode == "STRICT"
|
|
|
|
and hasattr(port, "room")
|
|
|
|
):
|
2018-08-28 18:18:09 +00:00
|
|
|
# Requesting user is not in this room ?
|
|
|
|
if self.user.room != port.room:
|
|
|
|
self.new_room = port.room
|
|
|
|
if client_mac and switch_ip:
|
|
|
|
# If this interface doesn't already exists
|
|
|
|
if not Interface.objects.filter(mac_address=client_mac):
|
|
|
|
self.mac_address = client_mac
|
2019-11-04 16:55:03 +00:00
|
|
|
self.nas_type = Nas.objects.filter(
|
|
|
|
nas_type__interface__ipv4__ipv4=switch_ip
|
|
|
|
).first()
|
2018-08-28 18:18:09 +00:00
|
|
|
super(InitialRegisterForm, self).__init__(*args, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
if hasattr(self, "new_room"):
|
|
|
|
self.fields["register_room"].label = _("This room is my room")
|
2018-08-28 18:18:09 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields.pop("register_room")
|
|
|
|
if hasattr(self, "mac_address"):
|
|
|
|
self.fields["register_machine"].label = _(
|
|
|
|
"This new connected device is mine"
|
|
|
|
)
|
2018-08-28 18:18:09 +00:00
|
|
|
else:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields.pop("register_machine")
|
2018-08-28 18:18:09 +00:00
|
|
|
|
|
|
|
def clean_register_room(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean room, call remove_user_room to make the room empty before
|
|
|
|
saving self.instance into that room.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form InitialRegisterForm instance
|
|
|
|
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if self.cleaned_data["register_room"]:
|
2018-08-28 18:18:09 +00:00
|
|
|
if self.user.is_class_adherent:
|
|
|
|
remove_user_room(self.new_room)
|
|
|
|
user = self.user.adherent
|
|
|
|
user.room = self.new_room
|
|
|
|
user.save()
|
|
|
|
if self.user.is_class_club:
|
|
|
|
user = self.user.club
|
|
|
|
user.room = self.new_room
|
|
|
|
user.save()
|
|
|
|
|
|
|
|
def clean_register_machine(self):
|
2020-05-01 14:29:26 +00:00
|
|
|
"""Clean register room, autoregister machine from user request mac_address.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
self : Apply on a django Form InitialRegisterForm instance
|
|
|
|
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
if self.cleaned_data["register_machine"]:
|
2018-08-28 18:18:09 +00:00
|
|
|
if self.mac_address and self.nas_type:
|
|
|
|
self.user.autoregister_machine(self.mac_address, self.nas_type)
|