2011-07-31 10:46:29 +02:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"""
|
|
|
|
|
openslides.participant.forms
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Forms for the participant app.
|
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
:copyright: 2011–2013 by OpenSlides team, see AUTHORS.
|
2011-07-31 10:46:29 +02:00
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
|
"""
|
|
|
|
|
|
2012-07-07 15:26:00 +02:00
|
|
|
|
from django import forms
|
2013-04-13 19:18:51 +02:00
|
|
|
|
from django.contrib import messages
|
2012-08-11 10:51:52 +02:00
|
|
|
|
from django.contrib.auth.models import Permission
|
2013-04-13 19:18:51 +02:00
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
|
from django.utils.translation import ugettext as _, ugettext_lazy
|
2012-12-16 17:26:53 +01:00
|
|
|
|
from django.conf import settings
|
2011-11-14 20:45:04 +01:00
|
|
|
|
|
2013-04-13 19:18:51 +02:00
|
|
|
|
from openslides.utils.forms import CssClassMixin, LocalizedModelMultipleChoiceField
|
2012-08-12 12:52:38 +02:00
|
|
|
|
from openslides.participant.models import User, Group
|
2013-03-12 20:58:22 +01:00
|
|
|
|
from openslides.participant.api import get_registered_group
|
2012-04-12 19:11:07 +02:00
|
|
|
|
|
2012-07-10 13:19:12 +02:00
|
|
|
|
|
2013-05-15 23:26:24 +02:00
|
|
|
|
class UserCreateForm(CssClassMixin, forms.ModelForm):
|
|
|
|
|
groups = LocalizedModelMultipleChoiceField(
|
|
|
|
|
# Hide the built-in groups 'Anonymous' (pk=1) and 'Registered' (pk=2)
|
|
|
|
|
queryset=Group.objects.exclude(pk=1).exclude(pk=2),
|
|
|
|
|
label=ugettext_lazy('Groups'), required=False,
|
|
|
|
|
help_text=ugettext_lazy('Hold down "Control", or "Command" on a Mac, to select more than one.'))
|
2012-11-22 18:39:54 +01:00
|
|
|
|
|
2011-09-04 09:57:23 +02:00
|
|
|
|
class Meta:
|
2012-08-12 12:52:38 +02:00
|
|
|
|
model = User
|
2013-04-09 11:21:55 +02:00
|
|
|
|
fields = ('title', 'first_name', 'last_name', 'gender', 'email',
|
|
|
|
|
'groups', 'structure_level', 'committee', 'about_me', 'comment',
|
|
|
|
|
'is_active', 'default_password')
|
2011-09-04 09:57:23 +02:00
|
|
|
|
|
2011-09-03 17:17:29 +02:00
|
|
|
|
|
2012-08-10 13:22:09 +02:00
|
|
|
|
class UserUpdateForm(UserCreateForm):
|
2013-04-13 19:18:51 +02:00
|
|
|
|
"""
|
|
|
|
|
Form to update an user. It raises a validation error, if a non-superuser
|
|
|
|
|
user edits himself and removes the last group containing the permission
|
|
|
|
|
to manage participants.
|
|
|
|
|
"""
|
2011-07-31 10:46:29 +02:00
|
|
|
|
class Meta:
|
2012-08-12 12:52:38 +02:00
|
|
|
|
model = User
|
2013-04-09 11:21:55 +02:00
|
|
|
|
fields = ('username', 'title', 'first_name', 'last_name', 'gender', 'email',
|
|
|
|
|
'groups', 'structure_level', 'committee', 'about_me', 'comment',
|
|
|
|
|
'is_active', 'default_password')
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
2013-04-13 19:18:51 +02:00
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
|
self.request = kwargs.pop('request')
|
|
|
|
|
return super(UserUpdateForm, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
def clean(self, *args, **kwargs):
|
|
|
|
|
"""
|
|
|
|
|
Raises a validation error, if a non-superuser user edits himself
|
|
|
|
|
and removes the last group containing the permission to manage participants.
|
|
|
|
|
"""
|
2013-04-19 16:45:18 +02:00
|
|
|
|
# TODO: Check this in clean_groups
|
2013-04-13 19:18:51 +02:00
|
|
|
|
if self.request.user == self.instance and not self.instance.is_superuser:
|
2013-04-19 16:45:18 +02:00
|
|
|
|
protected_perm = Permission.objects.get(
|
|
|
|
|
content_type=ContentType.objects.get(app_label='participant',
|
|
|
|
|
model='user'),
|
|
|
|
|
codename='can_manage_participant')
|
2013-04-13 19:18:51 +02:00
|
|
|
|
if not self.cleaned_data['groups'].filter(permissions__in=[protected_perm]).exists():
|
|
|
|
|
error_msg = _('You can not remove the last group containing the permission to manage participants.')
|
|
|
|
|
messages.error(self.request, error_msg)
|
|
|
|
|
raise forms.ValidationError(error_msg)
|
|
|
|
|
return super(UserUpdateForm, self).clean(*args, **kwargs)
|
|
|
|
|
|
2011-09-03 17:17:29 +02:00
|
|
|
|
|
2012-07-07 15:26:00 +02:00
|
|
|
|
class GroupForm(forms.ModelForm, CssClassMixin):
|
|
|
|
|
permissions = LocalizedModelMultipleChoiceField(
|
2013-04-13 19:18:51 +02:00
|
|
|
|
queryset=Permission.objects.all(), label=ugettext_lazy('Permissions'),
|
2012-08-11 10:09:54 +02:00
|
|
|
|
required=False)
|
2012-08-11 11:36:55 +02:00
|
|
|
|
users = forms.ModelMultipleChoiceField(
|
2013-04-13 19:18:51 +02:00
|
|
|
|
queryset=User.objects.all(), label=ugettext_lazy('Participants'), required=False)
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
2012-04-14 18:53:18 +02:00
|
|
|
|
def __init__(self, *args, **kwargs):
|
2012-08-11 11:36:55 +02:00
|
|
|
|
# Initial users
|
2012-04-14 18:53:18 +02:00
|
|
|
|
if kwargs.get('instance', None) is not None:
|
2012-08-11 11:36:55 +02:00
|
|
|
|
initial = kwargs.setdefault('initial', {})
|
2012-08-12 12:52:38 +02:00
|
|
|
|
initial['users'] = [django_user.user.pk for django_user in kwargs['instance'].user_set.all()]
|
2012-08-11 11:36:55 +02:00
|
|
|
|
|
|
|
|
|
super(GroupForm, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
|
instance = forms.ModelForm.save(self, False)
|
|
|
|
|
|
|
|
|
|
old_save_m2m = self.save_m2m
|
2012-11-24 14:01:21 +01:00
|
|
|
|
|
2012-08-11 11:36:55 +02:00
|
|
|
|
def save_m2m():
|
2012-11-24 14:01:21 +01:00
|
|
|
|
old_save_m2m()
|
2012-08-11 11:36:55 +02:00
|
|
|
|
|
2012-11-24 14:01:21 +01:00
|
|
|
|
instance.user_set.clear()
|
|
|
|
|
for user in self.cleaned_data['users']:
|
|
|
|
|
instance.user_set.add(user)
|
2012-08-11 11:36:55 +02:00
|
|
|
|
self.save_m2m = save_m2m
|
|
|
|
|
|
|
|
|
|
if commit:
|
|
|
|
|
instance.save()
|
|
|
|
|
self.save_m2m()
|
|
|
|
|
|
|
|
|
|
return instance
|
2012-04-14 18:53:18 +02:00
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
|
class Meta:
|
2012-08-12 12:52:38 +02:00
|
|
|
|
model = Group
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
2012-04-14 14:31:09 +02:00
|
|
|
|
|
2012-07-07 15:26:00 +02:00
|
|
|
|
class UsersettingsForm(forms.ModelForm, CssClassMixin):
|
2012-12-16 17:26:53 +01:00
|
|
|
|
language = forms.ChoiceField(choices=settings.LANGUAGES)
|
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
|
class Meta:
|
2012-08-12 12:52:38 +02:00
|
|
|
|
model = User
|
2013-04-09 11:21:55 +02:00
|
|
|
|
fields = ('username', 'title', 'first_name', 'last_name', 'gender', 'email',
|
|
|
|
|
'committee', 'about_me')
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
2012-08-15 10:58:29 +02:00
|
|
|
|
|
2012-07-07 15:26:00 +02:00
|
|
|
|
class UserImportForm(forms.Form, CssClassMixin):
|
2012-08-08 10:34:23 +02:00
|
|
|
|
csvfile = forms.FileField(widget=forms.FileInput(attrs={'size': '50'}),
|
2013-04-13 19:18:51 +02:00
|
|
|
|
label=ugettext_lazy('CSV File'))
|