90 lines
3.2 KiB
Python
90 lines
3.2 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
openslides.config.views
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Views for the config app.
|
|
|
|
:copyright: 2011 by the OpenSlides team, see AUTHORS.
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
"""
|
|
|
|
from django.shortcuts import redirect
|
|
from django.core.urlresolvers import reverse
|
|
from django.contrib import messages
|
|
from django.contrib.auth.models import Group, Permission
|
|
from django.utils.translation import ugettext as _
|
|
from django.template.loader import render_to_string
|
|
|
|
from openslides import get_version
|
|
|
|
from utils.utils import template, permission_required
|
|
from utils.views import FormView, TemplateView
|
|
from utils.template import Tab
|
|
|
|
from forms import GeneralConfigForm
|
|
|
|
|
|
from models import config
|
|
|
|
|
|
class GeneralConfig(FormView):
|
|
permission_required = 'config.can_manage_config'
|
|
form_class = GeneralConfigForm
|
|
template_name = 'config/general.html'
|
|
|
|
def get_initial(self):
|
|
return {
|
|
'event_name': config['event_name'],
|
|
'event_description': config['event_description'],
|
|
'event_date': config['event_date'],
|
|
'event_location': config['event_location'],
|
|
'event_organizer': config['event_organizer'],
|
|
'system_enable_anonymous': config['system_enable_anonymous'],
|
|
}
|
|
|
|
def form_valid(self, form):
|
|
config['event_name'] = form.cleaned_data['event_name']
|
|
config['event_description'] = form.cleaned_data['event_description']
|
|
config['event_date'] = form.cleaned_data['event_date']
|
|
config['event_location'] = form.cleaned_data['event_location']
|
|
config['event_organizer'] = form.cleaned_data['event_organizer']
|
|
if form.cleaned_data['system_enable_anonymous']:
|
|
config['system_enable_anonymous'] = True
|
|
# check for Anonymous group and (re)create it as needed
|
|
try:
|
|
anonymous = Group.objects.get(name='Anonymous')
|
|
except Group.DoesNotExist:
|
|
default_perms = [u'can_see_agenda', u'can_see_projector', u'can_see_application']
|
|
anonymous = Group()
|
|
anonymous.name = 'Anonymous'
|
|
anonymous.save()
|
|
anonymous.permissions = Permission.objects.filter(codename__in=default_perms)
|
|
anonymous.save()
|
|
messages.success(self.request, _('Anonymous access enabled. Please modify the "Anonymous" group to fit your required permissions.'))
|
|
else:
|
|
config['system_enable_anonymous'] = False
|
|
messages.success(self.request, _('General settings successfully saved.'))
|
|
return super(GeneralConfig, self).form_valid(form)
|
|
|
|
|
|
class VersionConfig(TemplateView):
|
|
permission_required = 'config.can_manage_config'
|
|
template_name = 'config/version.html'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(VersionConfig, self).get_context_data(**kwargs)
|
|
context['version'] = get_version()
|
|
return context
|
|
|
|
|
|
def register_tab(request):
|
|
selected = True if request.path.startswith('/config/') else False
|
|
return Tab(
|
|
title=_('Configuration'),
|
|
url=reverse('config_general'),
|
|
permission=request.user.has_perm('config.can_manage_config'),
|
|
selected=selected,
|
|
)
|