2011-07-31 10:46:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.system.models
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Models for the system app.
|
|
|
|
|
|
|
|
:copyright: 2011 by the OpenSlides team, see AUTHORS.
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
2012-02-18 00:00:56 +01:00
|
|
|
from pickle import dumps, loads
|
2012-03-13 13:03:03 +01:00
|
|
|
import base64
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
from django.db import models
|
2012-04-14 09:28:28 +02:00
|
|
|
from utils.translation_ext import xugettext as _
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
DEFAULT_DATA = {
|
|
|
|
'event_name': 'OpenSlides',
|
|
|
|
'event_description': 'Presentation and voting system',
|
2011-11-09 21:16:02 +01:00
|
|
|
'agenda_countdown_time': 60,
|
2011-07-31 10:46:29 +02:00
|
|
|
'application_min_supporters': 4,
|
|
|
|
'application_preamble': 'Die Versammlung möge beschließen,',
|
2011-11-21 18:00:58 +01:00
|
|
|
'application_pdf_ballot_papers_selection': '1',
|
2011-10-05 21:18:28 +02:00
|
|
|
'application_pdf_title': _('Applications'),
|
2011-11-21 18:00:58 +01:00
|
|
|
'assignment_pdf_ballot_papers_selection': '1',
|
2011-10-05 21:18:28 +02:00
|
|
|
'assignment_pdf_title': _('Elections'),
|
|
|
|
'system_url': 'http://127.0.0.1:8000',
|
2011-11-14 23:12:52 +01:00
|
|
|
'system_welcometext': 'Welcome to OpenSlides!',
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
|
|
|
|
2012-02-15 12:04:11 +01:00
|
|
|
class ConfigStore(models.Model):
|
|
|
|
key = models.CharField(max_length=100, primary_key=True)
|
2011-07-31 10:46:29 +02:00
|
|
|
value = models.CharField(max_length=100)
|
|
|
|
|
|
|
|
def __unicode__(self):
|
2012-02-19 22:20:29 +01:00
|
|
|
return self.key
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
class Meta:
|
2012-02-15 12:04:11 +01:00
|
|
|
verbose_name = 'config'
|
2011-07-31 10:46:29 +02:00
|
|
|
permissions = (
|
2012-04-14 09:28:28 +02:00
|
|
|
('can_manage_system', _("Can manage system configuration", fixstr=True)),
|
2011-07-31 10:46:29 +02:00
|
|
|
)
|
2012-02-15 12:04:11 +01:00
|
|
|
|
2012-03-13 13:03:03 +01:00
|
|
|
# TODO:
|
|
|
|
# I used base64 to save pickled Data, there has to be another way see:
|
|
|
|
# http://stackoverflow.com/questions/2524970/djangounicodedecodeerror-while-storing-pickled-data
|
2012-02-15 12:04:11 +01:00
|
|
|
|
|
|
|
class Config(object):
|
2012-02-19 22:20:29 +01:00
|
|
|
def load_config(self):
|
|
|
|
self.config = {}
|
|
|
|
for key, value in ConfigStore.objects.all().values_list():
|
2012-03-16 12:28:42 +01:00
|
|
|
self.config[key] = loads(base64.decodestring(str(value)))
|
2012-02-19 22:20:29 +01:00
|
|
|
|
2012-02-15 12:04:11 +01:00
|
|
|
def __getitem__(self, key):
|
|
|
|
try:
|
2012-02-19 22:20:29 +01:00
|
|
|
self.config
|
|
|
|
except AttributeError:
|
|
|
|
self.load_config()
|
|
|
|
try:
|
|
|
|
return self.config[key]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
return DEFAULT_DATA[key]
|
|
|
|
except KeyError:
|
|
|
|
return None
|
2012-02-15 12:04:11 +01:00
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
try:
|
2012-02-20 14:51:05 +01:00
|
|
|
c = ConfigStore.objects.get(pk=key)
|
2012-02-15 12:04:11 +01:00
|
|
|
except ConfigStore.DoesNotExist:
|
|
|
|
c = ConfigStore(pk=key)
|
2012-03-13 13:03:03 +01:00
|
|
|
c.value = base64.encodestring(dumps(value))
|
2012-02-15 12:04:11 +01:00
|
|
|
c.save()
|
2012-04-14 09:47:34 +02:00
|
|
|
try:
|
|
|
|
self.config[key] = value
|
|
|
|
except AttributeError:
|
|
|
|
self.load_config()
|
|
|
|
self.config[key] = value
|
2012-02-15 12:04:11 +01:00
|
|
|
|
2012-03-18 17:11:58 +01:00
|
|
|
from django.dispatch import receiver
|
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
from django.utils.importlib import import_module
|
|
|
|
import settings
|
|
|
|
|
|
|
|
from openslides.utils.signals import template_manipulation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@receiver(template_manipulation, dispatch_uid="system_base_system")
|
|
|
|
def set_submenu(sender, request, context, **kwargs):
|
2012-04-12 14:20:05 +02:00
|
|
|
if not request.path.startswith('/config/'):
|
2012-04-11 10:58:59 +02:00
|
|
|
return None
|
2012-03-18 17:11:58 +01:00
|
|
|
selected = True if request.path == reverse('config_general') else False
|
|
|
|
menu_links = [
|
|
|
|
(reverse('config_general'), _('General'), selected),
|
|
|
|
]
|
|
|
|
for app in settings.INSTALLED_APPS:
|
|
|
|
try:
|
|
|
|
mod = import_module(app + '.views')
|
|
|
|
mod.Config
|
|
|
|
except (ImportError, AttributeError):
|
|
|
|
continue
|
|
|
|
|
|
|
|
appname = mod.__name__.split('.')[0]
|
|
|
|
selected = True if reverse('config_%s' % appname) == request.path else False
|
|
|
|
menu_links.append(
|
|
|
|
(reverse('config_%s' % appname), _(appname.title()), selected)
|
|
|
|
)
|
|
|
|
|
|
|
|
context.update({
|
|
|
|
'menu_links': menu_links,
|
|
|
|
})
|
|
|
|
|
2012-02-15 12:04:11 +01:00
|
|
|
|
2012-02-18 00:00:56 +01:00
|
|
|
|