nk20/apps/member/forms.py

157 lines
4.8 KiB
Python
Raw Normal View History

2020-02-18 20:30:26 +00:00
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
2019-07-08 11:59:31 +00:00
# SPDX-License-Identifier: GPL-3.0-or-later
2020-02-18 20:30:26 +00:00
2020-03-07 21:28:59 +00:00
from django import forms
2020-04-05 03:17:28 +00:00
from django.contrib.auth.forms import AuthenticationForm
2019-08-11 14:22:52 +00:00
from django.contrib.auth.models import User
2020-04-05 16:37:04 +00:00
from django.utils.translation import gettext_lazy as _
from note.models import NoteSpecial, Alias
2020-03-31 21:54:14 +00:00
from note_kfet.inputs import Autocomplete, AmountInput, DatePickerInput
2020-07-25 17:40:30 +00:00
from permission.models import PermissionMask, Role
2020-03-20 01:14:43 +00:00
2020-07-25 17:40:30 +00:00
from .models import Profile, Club, Membership
2019-07-08 11:59:31 +00:00
2020-03-19 15:12:52 +00:00
class CustomAuthenticationForm(AuthenticationForm):
permission_mask = forms.ModelChoiceField(
label="Masque de permissions",
queryset=PermissionMask.objects.order_by("rank"),
empty_label=None,
)
class UserForm(forms.ModelForm):
def _get_validation_exclusions(self):
# Django usernames can only contain letters, numbers, @, ., +, - and _.
# We want to allow users to have uncommon and unpractical usernames:
# That is their problem, and we have normalized aliases for us.
return super()._get_validation_exclusions() + ["username"]
class Meta:
model = User
fields = ('first_name', 'last_name', 'username', 'email',)
2019-08-11 14:22:52 +00:00
class ProfileForm(forms.ModelForm):
2019-08-11 15:52:41 +00:00
"""
A form for the extras field provided by the :model:`member.Profile` model.
2019-08-11 15:52:41 +00:00
"""
2020-03-07 21:28:59 +00:00
def save(self, commit=True):
if not self.instance.section or (("department" in self.changed_data
or "promotion" in self.changed_data) and "section" not in self.changed_data):
self.instance.section = self.instance.section_generated
return super().save(commit)
2019-08-11 14:22:52 +00:00
class Meta:
model = Profile
fields = '__all__'
exclude = ('user', 'email_confirmed', 'registration_valid', )
2019-08-11 21:25:27 +00:00
2020-02-18 11:31:15 +00:00
2019-08-11 21:25:27 +00:00
class ClubForm(forms.ModelForm):
def clean(self):
cleaned_data = super().clean()
if not self.instance.pk: # Creating a club
if Alias.objects.filter(normalized_name=Alias.normalize(self.cleaned_data["name"])).exists():
self.add_error('name', _("An alias with a similar name already exists."))
return cleaned_data
2019-08-11 21:25:27 +00:00
class Meta:
model = Club
2020-02-18 11:31:15 +00:00
fields = '__all__'
2020-03-30 23:03:30 +00:00
widgets = {
"membership_fee_paid": AmountInput(),
"membership_fee_unpaid": AmountInput(),
"parent_club": Autocomplete(
Club,
attrs={
'api_url': '/api/members/club/',
}
),
2020-03-31 21:54:14 +00:00
"membership_start": DatePickerInput(),
"membership_end": DatePickerInput(),
2020-03-30 23:03:30 +00:00
}
class MembershipForm(forms.ModelForm):
soge = forms.BooleanField(
label=_("Inscription paid by Société Générale"),
required=False,
help_text=_("Check this case is the Société Générale paid the inscription."),
)
2020-04-05 16:37:04 +00:00
credit_type = forms.ModelChoiceField(
queryset=NoteSpecial.objects,
label=_("Credit type"),
empty_label=_("No credit"),
required=False,
help_text=_("You can credit the note of the user."),
)
credit_amount = forms.IntegerField(
label=_("Credit amount"),
required=False,
initial=0,
widget=AmountInput(),
)
last_name = forms.CharField(
label=_("Last name"),
required=False,
)
first_name = forms.CharField(
label=_("First name"),
required=False,
)
bank = forms.CharField(
label=_("Bank"),
required=False,
)
class Meta:
model = Membership
fields = ('user', 'date_start')
2020-02-08 20:40:32 +00:00
# Le champ d'utilisateur est remplacé par un champ d'auto-complétion.
# Quand des lettres sont tapées, une requête est envoyée sur l'API d'auto-complétion
# et récupère les noms d'utilisateur valides
2020-02-08 19:39:37 +00:00
widgets = {
2020-02-18 11:31:15 +00:00
'user':
Autocomplete(
User,
2020-03-07 21:28:59 +00:00
attrs={
'api_url': '/api/user/',
'name_field': 'username',
'placeholder': 'Nom ...',
2020-03-07 21:28:59 +00:00
},
),
2020-03-31 21:54:14 +00:00
'date_start': DatePickerInput(),
2020-02-08 19:39:37 +00:00
}
class MembershipRolesForm(forms.ModelForm):
user = forms.ModelChoiceField(
queryset=User.objects,
label=_("User"),
disabled=True,
widget=Autocomplete(
User,
attrs={
'api_url': '/api/user/',
'name_field': 'username',
'placeholder': 'Nom ...',
},
),
)
roles = forms.ModelMultipleChoiceField(
queryset=Role.objects.filter(weirole=None).all(),
label=_("Roles"),
)
class Meta:
model = Membership
fields = ('user', 'roles')