2011-07-31 10:46:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
2012-10-24 11:04:23 +02:00
|
|
|
openslides.motion.views
|
2013-01-06 12:07:37 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-10-24 11:04:23 +02:00
|
|
|
Views for the motion app.
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
:copyright: 2011, 2012 by the OpenSlides team, see AUTHORS.
|
2011-07-31 10:46:29 +02:00
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
2013-01-06 12:07:37 +01:00
|
|
|
from reportlab.platypus import Paragraph
|
2012-07-08 09:21:39 +02:00
|
|
|
|
|
|
|
from django.core.urlresolvers import reverse
|
2013-01-06 12:07:37 +01:00
|
|
|
from django.contrib import messages
|
2011-11-09 22:53:10 +01:00
|
|
|
from django.db import transaction
|
2013-01-06 12:07:37 +01:00
|
|
|
from django.db.models import Model
|
|
|
|
from django.utils.translation import ugettext as _, ugettext_lazy
|
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
2013-01-26 15:25:54 +01:00
|
|
|
from django.http import Http404
|
2012-06-11 13:43:48 +02:00
|
|
|
|
2012-07-01 15:35:05 +02:00
|
|
|
from openslides.utils.pdf import stylesheet
|
2012-11-24 14:01:21 +01:00
|
|
|
from openslides.utils.views import (
|
2013-01-06 12:07:37 +01:00
|
|
|
TemplateView, RedirectView, UpdateView, CreateView, DeleteView, PDFView,
|
2013-02-01 12:51:54 +01:00
|
|
|
DetailView, ListView, FormView, QuestionMixin, SingleObjectMixin)
|
2013-01-06 12:07:37 +01:00
|
|
|
from openslides.utils.template import Tab
|
|
|
|
from openslides.utils.utils import html_strong
|
2013-02-01 12:51:54 +01:00
|
|
|
from openslides.poll.views import PollFormView
|
2013-01-06 12:07:37 +01:00
|
|
|
from openslides.projector.api import get_active_slide
|
|
|
|
from openslides.projector.projector import Widget, SLIDE
|
2013-01-26 15:25:54 +01:00
|
|
|
from openslides.config.models import config
|
2013-02-01 12:51:54 +01:00
|
|
|
from .models import Motion, MotionSubmitter, MotionSupporter, MotionPoll
|
2013-01-26 15:25:54 +01:00
|
|
|
from .forms import (BaseMotionForm, MotionSubmitterMixin, MotionSupporterMixin,
|
2013-01-26 17:09:13 +01:00
|
|
|
MotionCreateNewVersionMixin, ConfigForm)
|
2013-02-01 17:20:11 +01:00
|
|
|
from .workflow import WorkflowError
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
class MotionListView(ListView):
|
2013-01-26 12:28:51 +01:00
|
|
|
"""
|
|
|
|
List all motion.
|
|
|
|
"""
|
2013-01-06 12:07:37 +01:00
|
|
|
permission_required = 'motion.can_see_motion'
|
2012-10-25 09:23:24 +02:00
|
|
|
model = Motion
|
2012-10-28 02:09:47 +02:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
motion_list = MotionListView.as_view()
|
2012-10-28 19:59:41 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
class MotionDetailView(DetailView):
|
2013-01-26 12:28:51 +01:00
|
|
|
"""
|
|
|
|
Show the details of one motion.
|
|
|
|
"""
|
2013-01-06 12:07:37 +01:00
|
|
|
permission_required = 'motion.can_see_motion'
|
2012-10-24 11:04:23 +02:00
|
|
|
model = Motion
|
2013-01-06 12:07:37 +01:00
|
|
|
template_name = 'motion/motion_detail.html'
|
2012-04-27 21:22:44 +02:00
|
|
|
|
|
|
|
def get_object(self):
|
2013-01-06 12:07:37 +01:00
|
|
|
object = super(MotionDetailView, self).get_object()
|
|
|
|
version_id = self.kwargs.get('version_id', None)
|
|
|
|
if version_id is not None:
|
2013-01-26 15:25:54 +01:00
|
|
|
try:
|
|
|
|
object.version = int(version_id) -1
|
|
|
|
except IndexError:
|
|
|
|
raise Http404
|
2013-01-06 12:07:37 +01:00
|
|
|
return object
|
2012-04-27 21:22:44 +02:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
motion_detail = MotionDetailView.as_view()
|
2012-04-27 21:22:44 +02:00
|
|
|
|
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
class MotionMixin(object):
|
2013-01-26 12:28:51 +01:00
|
|
|
"""
|
|
|
|
Mixin to add save the version-data to the motion-object
|
|
|
|
"""
|
2013-01-06 12:07:37 +01:00
|
|
|
def manipulate_object(self, form):
|
2013-01-26 15:25:54 +01:00
|
|
|
super(MotionMixin, self).manipulate_object(form)
|
2013-01-06 12:07:37 +01:00
|
|
|
for attr in ['title', 'text', 'reason']:
|
|
|
|
setattr(self.object, attr, form.cleaned_data[attr])
|
2012-07-13 11:16:06 +02:00
|
|
|
|
2013-01-26 17:09:13 +01:00
|
|
|
try:
|
|
|
|
if form.cleaned_data['new_version']:
|
|
|
|
self.object.new_version
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
2013-01-26 15:25:54 +01:00
|
|
|
def post_save(self, form):
|
|
|
|
super(MotionMixin, self).post_save(form)
|
2013-01-26 16:42:23 +01:00
|
|
|
# TODO: only delete and save neccessary submitters and supporter
|
2013-02-01 12:51:54 +01:00
|
|
|
if 'submitter' in form.cleaned_data:
|
|
|
|
self.object.submitter.all().delete()
|
|
|
|
MotionSubmitter.objects.bulk_create(
|
|
|
|
[MotionSubmitter(motion=self.object, person=person)
|
|
|
|
for person in form.cleaned_data['submitter']])
|
|
|
|
if 'supporter' in form.cleaned_data:
|
|
|
|
self.object.supporter.all().delete()
|
|
|
|
MotionSupporter.objects.bulk_create(
|
|
|
|
[MotionSupporter(motion=self.object, person=person)
|
|
|
|
for person in form.cleaned_data['supporter']])
|
2013-01-26 15:25:54 +01:00
|
|
|
|
|
|
|
def get_form_class(self):
|
|
|
|
form_classes = [BaseMotionForm]
|
|
|
|
if self.request.user.has_perm('motion.can_manage_motion'):
|
|
|
|
form_classes.append(MotionSubmitterMixin)
|
|
|
|
if config['motion_min_supporters'] > 0:
|
|
|
|
form_classes.append(MotionSupporterMixin)
|
2013-01-26 17:09:13 +01:00
|
|
|
if config['motion_create_new_version'] == 'ASK_USER':
|
|
|
|
form_classes.append(MotionCreateNewVersionMixin)
|
2013-01-26 15:25:54 +01:00
|
|
|
return type('MotionForm', tuple(form_classes), {})
|
|
|
|
|
2012-02-14 16:31:21 +01:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
class MotionCreateView(MotionMixin, CreateView):
|
2013-01-26 12:28:51 +01:00
|
|
|
"""
|
|
|
|
Create a motion.
|
|
|
|
"""
|
2013-01-06 12:07:37 +01:00
|
|
|
permission_required = 'motion.can_create_motion'
|
|
|
|
model = Motion
|
2012-03-18 17:11:58 +01:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
motion_create = MotionCreateView.as_view()
|
2012-03-18 17:11:58 +01:00
|
|
|
|
2012-06-11 13:43:48 +02:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
class MotionUpdateView(MotionMixin, UpdateView):
|
2013-01-26 12:28:51 +01:00
|
|
|
"""
|
|
|
|
Update a motion.
|
|
|
|
"""
|
2013-01-26 15:25:54 +01:00
|
|
|
# TODO: set permissions
|
2013-01-06 12:07:37 +01:00
|
|
|
model = Motion
|
2012-06-11 13:43:48 +02:00
|
|
|
|
2013-01-06 12:07:37 +01:00
|
|
|
motion_edit = MotionUpdateView.as_view()
|
2013-01-26 15:25:54 +01:00
|
|
|
|
|
|
|
|
2013-01-26 18:18:02 +01:00
|
|
|
class SupportView(SingleObjectMixin, QuestionMixin, RedirectView):
|
|
|
|
"""
|
|
|
|
Classed based view to support or unsupport a motion. Use
|
|
|
|
support=True or support=False in urls.py
|
|
|
|
"""
|
|
|
|
permission_required = 'motion.can_support_motion'
|
|
|
|
model = Motion
|
|
|
|
support = True
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
return super(SupportView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def check_allowed_actions(self, request):
|
|
|
|
"""
|
|
|
|
Checks whether request.user can support or unsupport the motion.
|
|
|
|
Returns True or False.
|
|
|
|
"""
|
|
|
|
return True #TODO
|
|
|
|
allowed_actions = self.object.get_allowed_actions(request.user)
|
|
|
|
if self.support and not 'support' in allowed_actions:
|
|
|
|
messages.error(request, _('You can not support this motion.'))
|
|
|
|
return False
|
|
|
|
elif not self.support and not 'unsupport' in allowed_actions:
|
|
|
|
messages.error(request, _('You can not unsupport this motion.'))
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def pre_redirect(self, request, *args, **kwargs):
|
|
|
|
if self.check_allowed_actions(request):
|
|
|
|
super(SupportView, self).pre_redirect(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_question(self):
|
|
|
|
if self.support:
|
|
|
|
return _('Do you really want to support this motion?')
|
|
|
|
else:
|
|
|
|
return _('Do you really want to unsupport this motion?')
|
|
|
|
|
|
|
|
def case_yes(self):
|
|
|
|
if self.check_allowed_actions(self.request):
|
|
|
|
if self.support:
|
|
|
|
self.object.support(person=self.request.user)
|
|
|
|
else:
|
|
|
|
self.object.unsupport(person=self.request.user)
|
|
|
|
|
|
|
|
def get_success_message(self):
|
|
|
|
if self.support:
|
|
|
|
return _("You have supported this motion successfully.")
|
|
|
|
else:
|
|
|
|
return _("You have unsupported this motion successfully.")
|
|
|
|
|
|
|
|
def get_redirect_url(self, **kwargs):
|
|
|
|
return self.object.get_absolute_url()
|
|
|
|
|
|
|
|
motion_support = SupportView.as_view(support=True)
|
|
|
|
motion_unsupport = SupportView.as_view(support=False)
|
|
|
|
|
|
|
|
|
2013-02-01 12:51:54 +01:00
|
|
|
class PollCreateView(SingleObjectMixin, RedirectView):
|
|
|
|
permission_required = 'motion.can_manage_motion'
|
|
|
|
model = Motion
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
return super(PollCreateView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def pre_redirect(self, request, *args, **kwargs):
|
|
|
|
self.poll = self.object.create_poll()
|
|
|
|
messages.success(request, _("New vote was successfully created."))
|
|
|
|
|
|
|
|
def get_redirect_url(self, **kwargs):
|
|
|
|
return reverse('motion_poll_edit', args=[self.object.pk, self.poll.poll_number])
|
|
|
|
|
|
|
|
poll_create = PollCreateView.as_view()
|
|
|
|
|
|
|
|
|
2013-02-01 13:24:44 +01:00
|
|
|
class PollMixin(object):
|
2013-02-01 12:51:54 +01:00
|
|
|
permission_required = 'motion.can_manage_motion'
|
|
|
|
success_url_name = 'motion_detail'
|
|
|
|
|
|
|
|
def get_object(self):
|
|
|
|
return MotionPoll.objects.filter(
|
|
|
|
motion=self.kwargs['pk'],
|
|
|
|
poll_number=self.kwargs['poll_number']).get()
|
|
|
|
|
2013-02-01 13:24:44 +01:00
|
|
|
def get_url_name_args(self):
|
|
|
|
return [self.object.motion.pk]
|
|
|
|
|
|
|
|
|
|
|
|
class PollUpdateView(PollMixin, PollFormView):
|
|
|
|
poll_class = MotionPoll
|
|
|
|
template_name = 'motion/poll_form.html'
|
|
|
|
|
2013-02-01 12:51:54 +01:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(PollUpdateView, self).get_context_data(**kwargs)
|
|
|
|
context.update({
|
|
|
|
'motion': self.poll.motion})
|
|
|
|
return context
|
|
|
|
|
|
|
|
poll_edit = PollUpdateView.as_view()
|
|
|
|
|
|
|
|
|
2013-02-01 13:24:44 +01:00
|
|
|
class PollDeleteView(PollMixin, DeleteView):
|
|
|
|
model = MotionPoll
|
|
|
|
|
|
|
|
poll_delete = PollDeleteView.as_view()
|
|
|
|
|
|
|
|
|
2013-02-01 17:20:11 +01:00
|
|
|
class MotionSetStateView(SingleObjectMixin, RedirectView):
|
|
|
|
permission_required = 'motion.can_manage_motion'
|
|
|
|
url_name = 'motion_detail'
|
|
|
|
model = Motion
|
|
|
|
reset = False
|
|
|
|
|
|
|
|
def pre_redirect(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
try:
|
|
|
|
if self.reset:
|
|
|
|
self.object.reset_state()
|
|
|
|
else:
|
|
|
|
self.object.state = kwargs['state']
|
|
|
|
except WorkflowError:
|
|
|
|
messages.error(request, _('Can not set the state to: %s.')
|
|
|
|
% html_strong(kwargs['state']))
|
|
|
|
else:
|
|
|
|
self.object.save()
|
|
|
|
messages.success(request, _('Motion status was set to: %s.'
|
|
|
|
% html_strong(self.object.state)))
|
|
|
|
|
|
|
|
def get_url_name_args(self):
|
|
|
|
return [self.object.pk]
|
|
|
|
|
|
|
|
set_state = MotionSetStateView.as_view()
|
|
|
|
reset_state = MotionSetStateView.as_view(reset=True)
|
|
|
|
|
|
|
|
|
2013-01-26 16:33:55 +01:00
|
|
|
class Config(FormView):
|
|
|
|
permission_required = 'config.can_manage_config'
|
|
|
|
form_class = ConfigForm
|
|
|
|
template_name = 'motion/config.html'
|
|
|
|
success_url_name = 'config_motion'
|
|
|
|
|
|
|
|
def get_initial(self):
|
|
|
|
return {
|
|
|
|
'motion_min_supporters': config['motion_min_supporters'],
|
|
|
|
'motion_preamble': config['motion_preamble'],
|
|
|
|
'motion_pdf_ballot_papers_selection': config['motion_pdf_ballot_papers_selection'],
|
|
|
|
'motion_pdf_ballot_papers_number': config['motion_pdf_ballot_papers_number'],
|
|
|
|
'motion_pdf_title': config['motion_pdf_title'],
|
|
|
|
'motion_pdf_preamble': config['motion_pdf_preamble'],
|
2013-01-26 17:09:13 +01:00
|
|
|
'motion_create_new_version': config['motion_create_new_version'],
|
2013-02-01 16:33:45 +01:00
|
|
|
'motion_workflow': config['motion_workflow'],
|
2013-01-26 16:33:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
config['motion_min_supporters'] = form.cleaned_data['motion_min_supporters']
|
|
|
|
config['motion_preamble'] = form.cleaned_data['motion_preamble']
|
|
|
|
config['motion_pdf_ballot_papers_selection'] = form.cleaned_data['motion_pdf_ballot_papers_selection']
|
|
|
|
config['motion_pdf_ballot_papers_number'] = form.cleaned_data['motion_pdf_ballot_papers_number']
|
|
|
|
config['motion_pdf_title'] = form.cleaned_data['motion_pdf_title']
|
|
|
|
config['motion_pdf_preamble'] = form.cleaned_data['motion_pdf_preamble']
|
2013-01-26 17:09:13 +01:00
|
|
|
config['motion_create_new_version'] = form.cleaned_data['motion_create_new_version']
|
2013-02-01 16:33:45 +01:00
|
|
|
config['motion_workflow'] = form.cleaned_data['motion_workflow']
|
2013-01-26 16:33:55 +01:00
|
|
|
messages.success(self.request, _('Motion settings successfully saved.'))
|
|
|
|
return super(Config, self).form_valid(form)
|
|
|
|
|
|
|
|
|
2013-01-26 15:25:54 +01:00
|
|
|
def register_tab(request):
|
|
|
|
"""
|
|
|
|
Register the projector tab.
|
|
|
|
"""
|
|
|
|
selected = request.path.startswith('/motion/')
|
|
|
|
return Tab(
|
|
|
|
title=_('Motions'),
|
|
|
|
url=reverse('motion_list'),
|
|
|
|
permission=request.user.has_perm('motion.can_see_motion'),
|
|
|
|
selected=selected,
|
|
|
|
)
|