2011-07-31 10:46:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.application.models
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Models for the application 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.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
from django.contrib.auth.models import User
|
2012-04-12 16:21:30 +02:00
|
|
|
from django.core.urlresolvers import reverse
|
2012-07-13 11:16:06 +02:00
|
|
|
from django.db import models
|
|
|
|
from django.db.models import Max
|
|
|
|
from django.dispatch import receiver
|
2012-06-30 15:21:27 +02:00
|
|
|
from django.utils.translation import pgettext
|
2012-07-20 11:22:09 +02:00
|
|
|
from django.utils.translation import ugettext_lazy as _, ugettext_noop, ugettext
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-07-08 09:21:39 +02:00
|
|
|
from openslides.utils.utils import _propper_unicode
|
2012-08-03 00:11:53 +02:00
|
|
|
from openslides.utils.user import UserField
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-07-08 09:21:39 +02:00
|
|
|
from openslides.config.models import config
|
2012-07-13 11:16:06 +02:00
|
|
|
from openslides.config.signals import default_config_value
|
2012-06-30 15:21:27 +02:00
|
|
|
|
2012-07-08 09:21:39 +02:00
|
|
|
from openslides.participant.models import Profile
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-07-08 09:21:39 +02:00
|
|
|
from openslides.poll.models import (BaseOption, BasePoll, CountVotesCast,
|
2012-07-13 11:16:06 +02:00
|
|
|
CountInvalid, BaseVote)
|
2012-07-08 09:21:39 +02:00
|
|
|
|
|
|
|
from openslides.projector.api import register_slidemodel
|
|
|
|
from openslides.projector.models import SlideMixin
|
|
|
|
|
|
|
|
from openslides.agenda.models import Item
|
2012-06-23 11:41:32 +02:00
|
|
|
|
2012-02-03 23:12:28 +01:00
|
|
|
|
2012-03-03 09:11:56 +01:00
|
|
|
class Application(models.Model, SlideMixin):
|
2012-02-03 23:12:28 +01:00
|
|
|
prefix = "application"
|
2011-07-31 10:46:29 +02:00
|
|
|
STATUS = (
|
|
|
|
('pub', _('Published')),
|
|
|
|
('per', _('Permitted')),
|
|
|
|
('acc', _('Accepted')),
|
|
|
|
('rej', _('Rejected')),
|
|
|
|
('wit', _('Withdrawed')),
|
|
|
|
('adj', _('Adjourned')),
|
|
|
|
('noc', _('Not Concerned')),
|
|
|
|
('com', _('Commited a bill')),
|
|
|
|
('nop', _('Rejected (not permitted)')),
|
2012-06-24 21:52:21 +02:00
|
|
|
('rev', _('Needs Review')), # Where is this status used?
|
2011-07-31 10:46:29 +02:00
|
|
|
#additional actions:
|
|
|
|
# edit
|
|
|
|
# delete
|
|
|
|
# setnumber
|
|
|
|
# support
|
|
|
|
# unsupport
|
|
|
|
# createitem
|
2011-11-01 14:35:58 +01:00
|
|
|
# activateitem
|
2011-07-31 10:46:29 +02:00
|
|
|
# genpoll
|
|
|
|
)
|
|
|
|
|
2012-08-03 00:11:53 +02:00
|
|
|
submitter = UserField(verbose_name=_("Submitter"))
|
2011-07-31 10:46:29 +02:00
|
|
|
supporter = models.ManyToManyField(User, related_name='supporter', \
|
|
|
|
null=True, blank=True, verbose_name=_("Supporters"))
|
|
|
|
number = models.PositiveSmallIntegerField(blank=True, null=True,
|
|
|
|
unique=True)
|
|
|
|
status = models.CharField(max_length=3, choices=STATUS, default='pub')
|
|
|
|
permitted = models.ForeignKey('AVersion', related_name='permitted', \
|
|
|
|
null=True, blank=True)
|
|
|
|
log = models.TextField(blank=True, null=True)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def last_version(self):
|
|
|
|
"""
|
|
|
|
Return last version of the application.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return AVersion.objects.filter(application=self).order_by('id') \
|
|
|
|
.reverse()[0]
|
|
|
|
except IndexError:
|
|
|
|
return None
|
|
|
|
|
2011-09-06 10:41:06 +02:00
|
|
|
@property
|
|
|
|
def public_version(self):
|
|
|
|
"""
|
|
|
|
Return permitted, if the application was permitted, else last_version
|
|
|
|
"""
|
|
|
|
if self.permitted is not None:
|
|
|
|
return self.permitted
|
|
|
|
else:
|
|
|
|
return self.last_version
|
|
|
|
|
2012-05-19 12:46:54 +02:00
|
|
|
def accept_version(self, version, user = None):
|
2011-09-03 18:11:42 +02:00
|
|
|
"""
|
|
|
|
accept a Version
|
|
|
|
"""
|
2011-09-04 10:02:54 +02:00
|
|
|
self.permitted = version
|
2011-09-04 10:49:17 +02:00
|
|
|
self.save(nonewversion=True)
|
2011-09-04 10:02:54 +02:00
|
|
|
version.rejected = False
|
|
|
|
version.save()
|
2012-06-30 15:21:27 +02:00
|
|
|
self.writelog(_("Version %d permitted") % (version.aid, ),
|
2012-05-19 12:46:54 +02:00
|
|
|
user)
|
2011-09-03 18:11:42 +02:00
|
|
|
|
2012-05-19 12:46:54 +02:00
|
|
|
def reject_version(self, version, user = None):
|
2011-09-03 18:11:42 +02:00
|
|
|
if version.id > self.permitted.id:
|
|
|
|
version.rejected = True
|
|
|
|
version.save()
|
2012-07-19 08:21:51 +02:00
|
|
|
self.writelog(pgettext("Rejected means not permitted", "Version %d rejected")
|
2012-05-19 12:46:54 +02:00
|
|
|
% (version.aid, ), user)
|
2011-09-03 18:11:42 +02:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
@property
|
|
|
|
def versions(self):
|
|
|
|
"""
|
|
|
|
Return a list of all versions of the application.
|
|
|
|
"""
|
|
|
|
return AVersion.objects.filter(application=self)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def creation_time(self):
|
|
|
|
"""
|
|
|
|
Return the time of the creation of the application.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return self.versions[0].time
|
|
|
|
except IndexError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
@property
|
|
|
|
def notes(self):
|
|
|
|
"""
|
|
|
|
Return some information of the application.
|
|
|
|
"""
|
|
|
|
note = []
|
|
|
|
if self.status == "pub" and not self.enough_supporters:
|
|
|
|
note.append(_("Searching for supporters."))
|
|
|
|
if self.status == "pub" and self.permitted is None:
|
|
|
|
note.append(_("Not yet permitted."))
|
|
|
|
elif self.unpermitted_changes and self.permitted:
|
|
|
|
note.append(_("Not yet permitted changes."))
|
|
|
|
return note
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unpermitted_changes(self):
|
|
|
|
"""
|
|
|
|
Return True if the application has unpermitted changes.
|
|
|
|
|
|
|
|
The application has unpermitted changes, if the permitted-version
|
2011-09-03 18:11:42 +02:00
|
|
|
is not the lastone and the lastone is not rejected.
|
2011-07-31 10:46:29 +02:00
|
|
|
TODO: rename the property in unchecked__changes
|
|
|
|
"""
|
|
|
|
if (self.last_version != self.permitted
|
2011-09-03 18:11:42 +02:00
|
|
|
and not self.last_version.rejected):
|
2011-07-31 10:46:29 +02:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def enough_supporters(self):
|
|
|
|
"""
|
|
|
|
Return True, if the application has enough supporters
|
|
|
|
"""
|
2012-02-15 12:04:11 +01:00
|
|
|
min_supporters = int(config['application_min_supporters'])
|
2011-09-21 21:27:23 +02:00
|
|
|
if self.status == "pub":
|
|
|
|
return self.supporter.count() >= min_supporters
|
|
|
|
else:
|
|
|
|
return True
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2011-09-06 22:22:29 +02:00
|
|
|
@property
|
|
|
|
def missing_supporters(self):
|
|
|
|
"""
|
|
|
|
Return number of missing supporters
|
|
|
|
"""
|
2012-02-15 12:04:11 +01:00
|
|
|
min_supporters = int(config['application_min_supporters'])
|
2011-09-06 22:22:29 +02:00
|
|
|
delta = min_supporters - self.supporter.count()
|
|
|
|
if delta > 0:
|
|
|
|
return delta
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
2011-11-09 22:53:10 +01:00
|
|
|
def save(self, user=None, nonewversion=False, trivial_change=False):
|
2011-07-31 10:46:29 +02:00
|
|
|
"""
|
|
|
|
Save the Application, and create a new AVersion if necessary
|
|
|
|
"""
|
|
|
|
super(Application, self).save()
|
2011-09-04 10:49:17 +02:00
|
|
|
if nonewversion:
|
|
|
|
return
|
2011-07-31 10:46:29 +02:00
|
|
|
last_version = self.last_version
|
2012-05-19 12:46:54 +02:00
|
|
|
fields = ["text", "title", "reason"]
|
2011-07-31 10:46:29 +02:00
|
|
|
if last_version is not None:
|
2012-05-19 12:46:54 +02:00
|
|
|
changed_fields = [f for f in fields
|
|
|
|
if getattr(last_version, f) != getattr(self, f)]
|
|
|
|
if not changed_fields:
|
2011-07-31 10:46:29 +02:00
|
|
|
return # No changes
|
|
|
|
try:
|
2011-11-09 22:53:10 +01:00
|
|
|
if trivial_change and last_version is not None:
|
|
|
|
last_version.text = self.text
|
|
|
|
last_version.title = self.title
|
|
|
|
last_version.reason = self.reason
|
|
|
|
last_version.save()
|
2012-05-19 12:46:54 +02:00
|
|
|
|
|
|
|
meta = AVersion._meta
|
|
|
|
field_names = [unicode(meta.get_field(f).verbose_name)
|
|
|
|
for f in changed_fields]
|
|
|
|
|
|
|
|
self.writelog(_("Trivial changes to version %(version)d; "
|
|
|
|
"changed fields: %(changed_fields)s")
|
|
|
|
% dict(version = last_version.aid,
|
|
|
|
changed_fields = ", ".join(field_names)))
|
2011-11-09 22:53:10 +01:00
|
|
|
return # Done
|
|
|
|
|
2012-06-19 10:50:55 +02:00
|
|
|
version = AVersion(title=getattr(self, 'title', ''),
|
|
|
|
text=getattr(self, 'text', ''),
|
|
|
|
reason=getattr(self, 'reason', ''),
|
|
|
|
application=self)
|
|
|
|
version.save()
|
|
|
|
self.writelog(_("Version %s created") % version.aid, user)
|
2011-07-31 10:46:29 +02:00
|
|
|
is_manager = user.has_perm('application.can_manage_application')
|
|
|
|
except AttributeError:
|
|
|
|
is_manager = False
|
|
|
|
|
|
|
|
if (self.status == "pub"
|
|
|
|
and self.supporter.exists()
|
|
|
|
and not is_manager):
|
|
|
|
self.supporter.clear()
|
|
|
|
self.writelog(_("Supporters removed"), user)
|
|
|
|
|
|
|
|
def reset(self, user):
|
|
|
|
"""
|
|
|
|
Reset the application.
|
|
|
|
"""
|
|
|
|
self.status = "pub"
|
|
|
|
self.permitted = None
|
|
|
|
self.save()
|
|
|
|
self.writelog(_("Status reseted to: %s") % (self.get_status_display()), user)
|
|
|
|
|
|
|
|
def support(self, user):
|
|
|
|
"""
|
|
|
|
Add a Supporter to the list of supporters of the application.
|
|
|
|
"""
|
|
|
|
if user == self.submitter:
|
|
|
|
raise NameError('Supporter can not be the submitter of a ' \
|
|
|
|
'application.')
|
|
|
|
if self.permitted is not None:
|
|
|
|
raise NameError('This application is already permitted.')
|
|
|
|
if user not in self.supporter.all():
|
|
|
|
self.supporter.add(user)
|
|
|
|
self.writelog(_("Supporter: +%s") % (user))
|
|
|
|
|
|
|
|
def unsupport(self, user):
|
|
|
|
"""
|
|
|
|
remove a supporter from the list of supporters of the application
|
|
|
|
"""
|
|
|
|
if self.permitted is not None:
|
|
|
|
raise NameError('This application is already permitted.')
|
|
|
|
if user in self.supporter.all():
|
|
|
|
self.supporter.remove(user)
|
|
|
|
self.writelog(_("Supporter: -%s") % (user))
|
|
|
|
|
|
|
|
def set_number(self, number=None, user=None):
|
|
|
|
"""
|
|
|
|
Set a number for ths application.
|
|
|
|
"""
|
|
|
|
if self.number is not None:
|
|
|
|
raise NameError('This application has already a number.')
|
|
|
|
if number is None:
|
|
|
|
try:
|
|
|
|
number = Application.objects.aggregate(Max('number')) \
|
|
|
|
['number__max'] + 1
|
|
|
|
except TypeError:
|
|
|
|
number = 1
|
|
|
|
self.number = number
|
|
|
|
self.save()
|
|
|
|
self.writelog(_("Number set: %s") % (self.number), user)
|
|
|
|
return self.number
|
|
|
|
|
|
|
|
def permit(self, user=None):
|
|
|
|
"""
|
|
|
|
Change the status of this application to permit.
|
|
|
|
"""
|
|
|
|
self.set_status(user, "per")
|
|
|
|
aversion = self.last_version
|
|
|
|
if self.number is None:
|
|
|
|
self.set_number()
|
|
|
|
self.permitted = aversion
|
|
|
|
self.save()
|
|
|
|
self.writelog(_("Version %s permitted") % (aversion.aid), user)
|
|
|
|
return self.permitted
|
|
|
|
|
|
|
|
def notpermit(self, user=None):
|
|
|
|
"""
|
|
|
|
Change the status of this application to 'not permitted (rejected)'.
|
|
|
|
"""
|
|
|
|
self.set_status(user, "nop")
|
|
|
|
#TODO: reject last version
|
|
|
|
aversion = self.last_version
|
|
|
|
#self.permitted = aversion
|
|
|
|
if self.number is None:
|
|
|
|
self.set_number()
|
|
|
|
self.save()
|
|
|
|
self.writelog(_("Version %s not permitted") % (self.last_version.aid), user)
|
|
|
|
|
|
|
|
def set_status(self, user, status, force=False):
|
|
|
|
"""
|
|
|
|
Set the status of the application.
|
|
|
|
"""
|
|
|
|
error = True
|
|
|
|
for a, b in Application.STATUS:
|
|
|
|
if status == a:
|
|
|
|
error = False
|
|
|
|
break
|
|
|
|
if error:
|
2012-07-23 23:17:03 +02:00
|
|
|
raise NameError(_('%s is not a valid status.') % status)
|
2011-07-31 10:46:29 +02:00
|
|
|
if self.status == status:
|
2012-07-23 23:17:03 +02:00
|
|
|
raise NameError(_('The application status is already \'%s.\'') \
|
2011-07-31 10:46:29 +02:00
|
|
|
% self.status)
|
|
|
|
|
|
|
|
actions = []
|
|
|
|
actions = self.get_allowed_actions(user)
|
|
|
|
if status not in actions and not force:
|
2012-07-24 07:32:20 +02:00
|
|
|
raise NameError(_('The application status is: \'%(currentstatus)s\'. '\
|
|
|
|
'You can not set the status to \'%(newstatus)s\'.') % {
|
2012-07-27 11:56:20 +02:00
|
|
|
'currentstatus': self.status,
|
2012-07-24 07:32:20 +02:00
|
|
|
'newstatus': status
|
|
|
|
})
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
oldstatus = self.get_status_display()
|
|
|
|
self.status = status
|
|
|
|
self.save()
|
|
|
|
self.writelog(_("Status modified")+": %s -> %s" \
|
|
|
|
% (oldstatus, self.get_status_display()), user)
|
|
|
|
|
|
|
|
def get_allowed_actions(self, user=None):
|
|
|
|
"""
|
|
|
|
Return a list of all the allowed status.
|
|
|
|
"""
|
|
|
|
actions = []
|
2012-04-27 22:46:27 +02:00
|
|
|
is_admin = False
|
|
|
|
if user:
|
|
|
|
try:
|
|
|
|
user.profile
|
|
|
|
except Profile.DoesNotExist:
|
2012-04-30 08:50:35 +02:00
|
|
|
is_admin = True
|
2012-07-27 11:56:20 +02:00
|
|
|
except AttributeError:
|
|
|
|
# For the anonymous-user
|
|
|
|
pass
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
# check if user allowed to withdraw an application
|
2012-04-15 13:10:24 +02:00
|
|
|
if ((self.status == "pub"
|
|
|
|
and self.number
|
|
|
|
and user == self.submitter)
|
|
|
|
or (self.status == "pub"
|
|
|
|
and self.number
|
|
|
|
and user.has_perm("application.can_manage_application"))
|
|
|
|
or (self.status == "per"
|
|
|
|
and user == self.submitter)
|
|
|
|
or (self.status == "per"
|
|
|
|
and user.has_perm("application.can_manage_application"))):
|
2011-07-31 10:46:29 +02:00
|
|
|
actions.append("wit")
|
2012-04-12 19:11:07 +02:00
|
|
|
#Check if the user can review the application
|
2012-04-15 13:10:24 +02:00
|
|
|
if (self.status == "rev"
|
|
|
|
and (self.submitter == user
|
|
|
|
or user.has_perm("application.can_manage_application"))):
|
2012-04-12 19:11:07 +02:00
|
|
|
actions.append("pub")
|
2012-04-15 13:10:24 +02:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
# Check if the user can support and unspoort the application
|
2012-04-15 13:10:24 +02:00
|
|
|
try:
|
|
|
|
if (self.status == "pub"
|
|
|
|
and user != self.submitter
|
|
|
|
and user not in self.supporter.all()
|
|
|
|
and getattr(user, 'profile', None)):
|
2011-09-06 22:22:29 +02:00
|
|
|
actions.append("support")
|
|
|
|
except Profile.DoesNotExist:
|
|
|
|
pass
|
2012-02-03 23:12:28 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
if self.status == "pub" and user in self.supporter.all():
|
|
|
|
actions.append("unsupport")
|
|
|
|
|
|
|
|
#Check if the user can edit the application
|
2012-06-24 21:52:21 +02:00
|
|
|
if (user == self.submitter \
|
|
|
|
and (self.status in ('pub', 'per'))) \
|
2011-07-31 10:46:29 +02:00
|
|
|
or user.has_perm("application.can_manage_application"):
|
|
|
|
actions.append("edit")
|
|
|
|
|
2012-04-27 22:46:27 +02:00
|
|
|
# Check if the user can delete the application (admin, manager, owner)
|
|
|
|
# reworked as requiered in #100
|
|
|
|
if is_admin \
|
|
|
|
or (user.has_perm("application.can_manage_application") \
|
|
|
|
and (self.status == "pub" or self.number is None)) \
|
|
|
|
or (self.submitter == user \
|
|
|
|
and (self.status == "pub" or self.number is None)):
|
2011-07-31 10:46:29 +02:00
|
|
|
actions.append("delete")
|
|
|
|
|
|
|
|
#For the rest, all actions need the manage permission
|
|
|
|
if not user.has_perm("application.can_manage_application"):
|
|
|
|
return actions
|
|
|
|
|
|
|
|
if self.status == "pub":
|
|
|
|
actions.append("nop")
|
|
|
|
actions.append("per")
|
|
|
|
if self.number == None:
|
|
|
|
actions.append("setnumber")
|
|
|
|
|
|
|
|
if self.status == "per":
|
|
|
|
actions.append("acc")
|
|
|
|
actions.append("rej")
|
|
|
|
actions.append("adj")
|
|
|
|
actions.append("noc")
|
|
|
|
actions.append("com")
|
|
|
|
actions.append("genpoll")
|
|
|
|
if self.unpermitted_changes:
|
|
|
|
actions.append("permitversion")
|
|
|
|
actions.append("rejectversion")
|
|
|
|
|
|
|
|
return actions
|
|
|
|
|
|
|
|
def delete(self, force=False):
|
|
|
|
"""
|
|
|
|
Delete the application. It is not possible, if the application has
|
|
|
|
allready a number
|
|
|
|
"""
|
|
|
|
if self.number and not force:
|
|
|
|
raise NameError('The application has already a number. ' \
|
|
|
|
'You can not delete it.')
|
2012-06-23 11:41:32 +02:00
|
|
|
|
|
|
|
|
2012-07-04 11:00:58 +02:00
|
|
|
for item in Item.objects.filter(related_sid=self.sid):
|
2012-06-23 11:41:32 +02:00
|
|
|
item.delete()
|
2011-07-31 10:46:29 +02:00
|
|
|
super(Application, self).delete()
|
|
|
|
|
|
|
|
def writelog(self, text, user=None):
|
|
|
|
if not self.log:
|
|
|
|
self.log = ""
|
2011-11-29 12:10:06 +01:00
|
|
|
self.log += u"%s | %s" % (datetime.now().strftime("%d.%m.%Y %H:%M:%S"), _propper_unicode(text))
|
2011-07-31 10:46:29 +02:00
|
|
|
if user is not None:
|
2012-05-15 20:10:54 +02:00
|
|
|
self.log += u" (%s %s)" % (_("by"), _propper_unicode(user.username))
|
2011-07-31 10:46:29 +02:00
|
|
|
self.log += "\n"
|
|
|
|
self.save()
|
|
|
|
|
2012-04-19 12:46:04 +02:00
|
|
|
def get_agenda_title(self):
|
2012-07-16 00:39:46 +02:00
|
|
|
return self.public_version.title
|
2012-04-19 12:46:04 +02:00
|
|
|
|
2012-07-20 11:22:09 +02:00
|
|
|
def get_agenda_title_supplement(self):
|
|
|
|
number = self.number or '<i>[%s]</i>' % ugettext('no number')
|
|
|
|
return '(%s %s)' % (ugettext('Application'), number)
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
def __getattr__(self, name):
|
|
|
|
"""
|
|
|
|
if name is title, text, reason or time,
|
|
|
|
Return this attribute from the newest version of the application
|
|
|
|
"""
|
2011-09-04 10:21:54 +02:00
|
|
|
if name in ('title', 'text', 'reason', 'time', 'aid'):
|
2011-07-31 10:46:29 +02:00
|
|
|
try:
|
2011-09-04 10:34:30 +02:00
|
|
|
if name == 'aid':
|
2011-09-06 10:41:06 +02:00
|
|
|
return self.last_version.aid
|
|
|
|
return self.last_version.__dict__[name]
|
2011-07-31 10:46:29 +02:00
|
|
|
except TypeError:
|
2011-09-04 10:34:30 +02:00
|
|
|
raise AttributeError(name)
|
2011-07-31 10:46:29 +02:00
|
|
|
except AttributeError:
|
2011-09-06 10:41:06 +02:00
|
|
|
raise AttributeError(name)
|
2011-07-31 10:46:29 +02:00
|
|
|
raise AttributeError(name)
|
|
|
|
|
2011-09-03 16:20:10 +02:00
|
|
|
def gen_poll(self, user=None):
|
2011-07-31 10:46:29 +02:00
|
|
|
"""
|
|
|
|
Generates a poll object for the application
|
|
|
|
"""
|
2012-02-15 13:44:55 +01:00
|
|
|
poll = ApplicationPoll(application=self)
|
2011-07-31 10:46:29 +02:00
|
|
|
poll.save()
|
2012-02-15 13:44:55 +01:00
|
|
|
poll.set_options()
|
2011-07-31 10:46:29 +02:00
|
|
|
self.writelog(_("Poll created"), user)
|
|
|
|
return poll
|
|
|
|
|
2012-02-14 16:31:21 +01:00
|
|
|
@property
|
|
|
|
def polls(self):
|
2012-02-15 13:44:55 +01:00
|
|
|
return self.applicationpoll_set.all()
|
2012-02-14 16:31:21 +01:00
|
|
|
|
2011-09-06 22:22:29 +02:00
|
|
|
@property
|
|
|
|
def results(self):
|
2012-04-15 12:11:03 +02:00
|
|
|
return self.get_poll_results()
|
|
|
|
|
|
|
|
def get_poll_results(self):
|
2011-09-06 22:22:29 +02:00
|
|
|
"""
|
|
|
|
Return a list of voting results
|
|
|
|
"""
|
|
|
|
results = []
|
2012-02-14 16:31:21 +01:00
|
|
|
for poll in self.polls:
|
|
|
|
for option in poll.get_options():
|
2012-04-15 12:11:03 +02:00
|
|
|
if option.get_votes().exists():
|
2012-07-16 14:05:51 +02:00
|
|
|
results.append((option['Yes'], option['No'],
|
|
|
|
option['Abstain'], poll.print_votesinvalid(),
|
|
|
|
poll.print_votescast()))
|
2011-09-06 22:22:29 +02:00
|
|
|
return results
|
2012-02-03 23:12:28 +01:00
|
|
|
|
2012-04-15 12:11:03 +02:00
|
|
|
|
2012-02-06 22:08:08 +01:00
|
|
|
def slide(self):
|
2012-02-03 23:12:28 +01:00
|
|
|
"""
|
2012-02-06 22:08:08 +01:00
|
|
|
return the slide dict
|
2012-02-03 23:12:28 +01:00
|
|
|
"""
|
2012-02-06 22:08:08 +01:00
|
|
|
data = super(Application, self).slide()
|
2012-02-03 23:12:28 +01:00
|
|
|
data['application'] = self
|
|
|
|
data['title'] = self.title
|
2012-02-06 22:08:08 +01:00
|
|
|
data['template'] = 'projector/Application.html'
|
2012-02-03 23:12:28 +01:00
|
|
|
return data
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
def get_absolute_url(self, link='view'):
|
|
|
|
if link == 'view':
|
2012-06-03 09:35:26 +02:00
|
|
|
return reverse('application_view', args=[str(self.id)])
|
|
|
|
if link == 'edit':
|
|
|
|
return reverse('application_edit', args=[str(self.id)])
|
2011-07-31 10:46:29 +02:00
|
|
|
if link == 'delete':
|
2012-06-03 09:35:26 +02:00
|
|
|
return reverse('application_delete', args=[str(self.id)])
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
try:
|
|
|
|
return self.last_version.title
|
|
|
|
except AttributeError:
|
|
|
|
return "no title jet"
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
permissions = (
|
2012-07-08 09:21:39 +02:00
|
|
|
('can_see_application', ugettext_noop("Can see application")),
|
|
|
|
('can_create_application', ugettext_noop("Can create application")),
|
|
|
|
('can_support_application', ugettext_noop("Can support application")),
|
|
|
|
('can_manage_application', ugettext_noop("Can manage application")),
|
2011-07-31 10:46:29 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class AVersion(models.Model):
|
2012-05-19 12:46:54 +02:00
|
|
|
title = models.CharField(max_length=100, verbose_name = _("Title"))
|
|
|
|
text = models.TextField(verbose_name = _("Text"))
|
|
|
|
reason = models.TextField(null=True, blank=True, verbose_name = _("Reason"))
|
2012-06-30 15:21:27 +02:00
|
|
|
rejected = models.BooleanField() # = Not Permitted
|
2011-07-31 10:46:29 +02:00
|
|
|
time = models.DateTimeField(auto_now=True)
|
|
|
|
application = models.ForeignKey(Application)
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return "%s %s" % (self.id, self.title)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def aid(self):
|
|
|
|
try:
|
|
|
|
return self._aid
|
|
|
|
except AttributeError:
|
|
|
|
self._aid = AVersion.objects \
|
|
|
|
.filter(application=self.application) \
|
|
|
|
.filter(id__lte=self.id).count()
|
|
|
|
return self._aid
|
2012-02-03 23:12:28 +01:00
|
|
|
|
2012-04-14 11:18:47 +02:00
|
|
|
register_slidemodel(Application)
|
2012-02-14 16:31:21 +01:00
|
|
|
|
|
|
|
|
2012-07-13 11:16:06 +02:00
|
|
|
class ApplicationVote(BaseVote):
|
|
|
|
option = models.ForeignKey('ApplicationOption')
|
|
|
|
|
|
|
|
|
2012-02-14 16:31:21 +01:00
|
|
|
class ApplicationOption(BaseOption):
|
2012-07-13 11:16:06 +02:00
|
|
|
poll = models.ForeignKey('ApplicationPoll')
|
|
|
|
vote_class = ApplicationVote
|
2012-02-14 16:31:21 +01:00
|
|
|
|
|
|
|
|
2012-02-19 17:31:17 +01:00
|
|
|
class ApplicationPoll(BasePoll, CountInvalid, CountVotesCast):
|
2012-02-14 16:31:21 +01:00
|
|
|
option_class = ApplicationOption
|
2012-07-08 09:21:39 +02:00
|
|
|
vote_values = [ugettext_noop('Yes'), ugettext_noop('No'),
|
|
|
|
ugettext_noop('Abstain')]
|
2012-02-15 12:36:50 +01:00
|
|
|
|
2012-02-15 13:44:55 +01:00
|
|
|
application = models.ForeignKey(Application)
|
|
|
|
|
2012-02-15 12:36:50 +01:00
|
|
|
def get_application(self):
|
2012-02-15 13:44:55 +01:00
|
|
|
return self.application
|
|
|
|
|
|
|
|
def set_options(self):
|
2012-02-19 19:27:00 +01:00
|
|
|
#TODO: maybe it is possible with .create() to call this without poll=self
|
2012-02-15 13:44:55 +01:00
|
|
|
self.get_option_class()(poll=self).save()
|
2012-02-19 17:31:17 +01:00
|
|
|
|
|
|
|
def append_pollform_fields(self, fields):
|
|
|
|
CountInvalid.append_pollform_fields(self, fields)
|
|
|
|
CountVotesCast.append_pollform_fields(self, fields)
|
2012-04-12 16:21:30 +02:00
|
|
|
|
|
|
|
def get_absolute_url(self):
|
|
|
|
return reverse('application_poll_view', args=[self.id])
|
2012-04-14 12:52:56 +02:00
|
|
|
|
2012-04-18 19:02:41 +02:00
|
|
|
def get_ballot(self):
|
2012-04-14 17:09:15 +02:00
|
|
|
return self.application.applicationpoll_set.filter(id__lte=self.id).count()
|
|
|
|
|
2012-04-14 12:52:56 +02:00
|
|
|
|
|
|
|
@receiver(default_config_value, dispatch_uid="application_default_config")
|
|
|
|
def default_config(sender, key, **kwargs):
|
|
|
|
return {
|
2012-04-15 11:35:06 +02:00
|
|
|
'application_min_supporters': 0,
|
2012-06-29 00:19:06 +02:00
|
|
|
'application_preamble': _('The Assembly may decide,'),
|
|
|
|
'application_pdf_ballot_papers_selection': 'CUSTOM_NUMBER',
|
|
|
|
'application_pdf_ballot_papers_number': '8',
|
2012-04-14 12:52:56 +02:00
|
|
|
'application_pdf_title': _('Applications'),
|
2012-04-22 16:55:16 +02:00
|
|
|
'application_pdf_preamble': '',
|
2012-06-30 11:31:35 +02:00
|
|
|
'application_allow_trivial_change': False,
|
2012-04-14 12:52:56 +02:00
|
|
|
}.get(key)
|