OpenSlides/openslides/participant/models.py

161 lines
5.0 KiB
Python
Raw Normal View History

2011-07-31 10:46:29 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.participant.models
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Models for the participant app.
2012-04-25 22:29:19 +02:00
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
2011-07-31 10:46:29 +02:00
:license: GNU GPL, see LICENSE for more details.
"""
2012-08-03 00:11:53 +02:00
from django.contrib.auth.models import User, Group
2011-07-31 10:46:29 +02:00
from django.db import models
from django.db.models import Q
from django.dispatch import receiver
2012-07-10 01:33:03 +02:00
from django.utils.translation import ugettext_lazy as _, ugettext_noop
2012-08-03 00:11:53 +02:00
from openslides.utils.user import UserMixin
from openslides.utils.user.signals import receiv_users
from openslides.config.signals import default_config_value
2011-07-31 10:46:29 +02:00
2012-08-03 00:11:53 +02:00
class Profile(models.Model, UserMixin):
user_prefix = 'participant'
2011-07-31 10:46:29 +02:00
GENDER_CHOICES = (
('male', _('Male')),
('female', _('Female')),
)
TYPE_CHOICE = (
('delegate', _('Delegate')),
('observer', _('Observer')),
('staff', _('Staff')),
2011-09-07 22:46:47 +02:00
('guest', _('Guest')),
2011-07-31 10:46:29 +02:00
)
user = models.OneToOneField(User, unique=True, editable=False)
group = models.CharField(max_length=100, null=True, blank=True,
verbose_name = _("Group"), help_text=_('Shown behind the name.'))
gender = models.CharField(max_length=50, choices=GENDER_CHOICES, blank=True,
verbose_name = _("Gender"),
help_text=_('Only for filter the userlist.'))
type = models.CharField(max_length=100, choices=TYPE_CHOICE, blank=True,
verbose_name = _("Typ"), help_text=_('Only for filter the userlist.'))
committee = models.CharField(max_length=100, null=True, blank=True,
verbose_name = _("Committee"),
help_text=_('Only for filter the userlist.'))
comment = models.TextField(null=True, blank=True,
verbose_name = _('Comment'), help_text=_('Only for notes.'))
firstpassword = models.CharField(max_length=100, null=True, blank=True,
verbose_name = _("First Password"))
2011-09-03 17:17:29 +02:00
def reset_password(self):
"""
Reset the password for the user to his default-password.
"""
2011-09-03 17:17:29 +02:00
self.user.set_password(self.firstpassword)
2011-09-07 14:27:36 +02:00
self.user.save()
2011-07-31 10:46:29 +02:00
def has_perm(self, perm):
return self.user.has_perm(perm)
2012-04-13 11:35:53 +02:00
@models.permalink
def get_absolute_url(self, link='edit'):
"""
Return the URL to this user.
link can be:
* edit
* delete
"""
if link == 'edit':
return ('user_edit', [str(self.user.id)])
if link == 'delete':
return ('user_delete', [str(self.user.id)])
2011-07-31 10:46:29 +02:00
def __unicode__(self):
if self.group:
return "%s (%s)" % (self.user.get_full_name(), self.group)
return "%s" % self.user.get_full_name()
class Meta:
permissions = (
('can_see_participant', ugettext_noop("Can see participant")),
('can_manage_participant', ugettext_noop("Can manage participant")),
2011-07-31 10:46:29 +02:00
)
2012-08-03 00:11:53 +02:00
class DjangoGroup(models.Model, UserMixin):
user_prefix = 'djangogroup'
group = models.OneToOneField(Group)
def __unicode__(self):
return unicode(self.group)
class DjangoUser(User, UserMixin):
user_prefix = 'djangouser'
def has_no_profile(self):
# TODO: Make ths with a Manager, so it does manipulate the sql query
return not hasattr(self, 'profile')
class Meta:
proxy = True
class ParticipantUsers(object):
def __init__(self, user_prefix=None, id=None):
self.user_prefix = user_prefix
self.id = id
2012-08-03 00:11:53 +02:00
def __iter__(self):
if not self.user_prefix or self.user_prefix == Profile.user_prefix:
if self.id:
yield Profile.objects.get(pk=self.id)
else:
for profile in Profile.objects.all():
yield profile
if not self.user_prefix or self.user_prefix == DjangoGroup.user_prefix:
if self.id:
yield DjangoGroup.objects.get(pk=self.id)
else:
for group in DjangoGroup.objects.all():
yield group
2012-08-03 00:11:53 +02:00
if not self.user_prefix or self.user_prefix == DjangoUser.user_prefix:
if self.id:
yield DjangoUser.objects.get(pk=self.id)
else:
for user in DjangoUser.objects.all():
if user.has_no_profile():
yield user
elif self.user_prefix:
# If only users where requested, return the profile object.
yield user.profile
2012-08-03 00:11:53 +02:00
def __getitem__(self, key):
return Profile.objects.get(pk=key)
2012-08-03 00:11:53 +02:00
@receiver(receiv_users, dispatch_uid="participant_profile")
def receiv_users(sender, **kwargs):
return ParticipantUsers(user_prefix=kwargs['user_prefix'], id=kwargs['id'])
2012-08-03 00:11:53 +02:00
@receiver(default_config_value, dispatch_uid="participant_default_config")
def default_config(sender, key, **kwargs):
"""
Default values for the participant app.
"""
return {
'participant_pdf_system_url': 'http://example.com:8000',
2012-04-22 16:51:22 +02:00
'participant_pdf_welcometext': _('Welcome to OpenSlides!'),
'admin_password': None,
}.get(key)