OpenSlides/openslides/projector/views.py

106 lines
3.2 KiB
Python
Raw Normal View History

2012-02-03 20:49:16 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
2012-02-06 22:08:08 +01:00
openslides.projector.views
2012-02-03 20:49:16 +01:00
~~~~~~~~~~~~~~~~~~~~~~~
2012-02-06 22:08:08 +01:00
Views for the projector app.
2012-02-03 20:49:16 +01:00
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from datetime import datetime
from django.shortcuts import render_to_response, redirect
from django.template import RequestContext
from django.core.urlresolvers import reverse
from django.contrib import messages
from django.utils.translation import ugettext as _
from utils.utils import template, permission_required, \
del_confirm_form, ajax_request
from utils.template import render_block_to_string
2012-02-15 12:04:11 +01:00
from system import config
2012-02-03 20:49:16 +01:00
2012-02-06 22:22:16 +01:00
from projector.api import get_active_slide
2012-02-03 20:57:08 +01:00
2012-02-03 20:49:16 +01:00
@permission_required('agenda.can_see_projector')
2012-02-06 22:08:08 +01:00
def active_slide(request):
2012-02-03 20:49:16 +01:00
"""
2012-02-03 20:57:08 +01:00
Shows the active Slide.
2012-02-03 20:49:16 +01:00
"""
try:
2012-02-09 01:46:58 +01:00
data = get_active_slide()
except AttributeError: #TODO: It has to be an Slide.DoesNotExist
data = {
2012-02-15 12:04:11 +01:00
'title': config['event_name'],
2012-02-09 01:46:58 +01:00
'template': 'projector/default.html',
}
data['ajax'] = 'on'
2012-02-03 20:49:16 +01:00
if request.is_ajax():
content = render_block_to_string(data['template'], 'content', data)
jsondata = {
'content': content,
'title': data['title'],
'time': datetime.now().strftime('%H:%M'),
2012-02-15 12:04:11 +01:00
'bigger': config['bigger'],
'up': config['up'],
'countdown_visible': config['countdown_visible'],
'countdown_time': config['agenda_countdown_time'],
'countdown_control': config['countdown_control'],
}
2012-02-03 20:49:16 +01:00
return ajax_request(jsondata)
else:
return render_to_response(
data['template'],
data,
context_instance=RequestContext(request)
)
2012-02-03 20:49:16 +01:00
@permission_required('agenda.can_manage_agenda')
2012-02-06 22:08:08 +01:00
def projector_edit(request, direction):
2012-02-03 20:49:16 +01:00
if direction == 'bigger':
2012-02-15 12:04:11 +01:00
config['bigger'] = int(config['bigger']) + 10
2012-02-03 20:49:16 +01:00
elif direction == 'smaller':
2012-02-15 12:04:11 +01:00
config['bigger'] = int(config['bigger']) - 10
2012-02-03 20:49:16 +01:00
elif direction == 'up':
2012-02-15 12:04:11 +01:00
config['up'] = int(config['up']) - 10
2012-02-03 20:49:16 +01:00
elif direction == 'down':
2012-02-15 12:04:11 +01:00
config['up'] = int(config['up']) + 10
2012-02-03 20:49:16 +01:00
elif direction == 'clean':
2012-02-15 12:04:11 +01:00
config['up'] = 0
config['bigger'] = 100
2012-02-03 20:49:16 +01:00
if request.is_ajax():
return ajax_request({})
return redirect(reverse('item_overview'))
@permission_required('agenda.can_manage_agenda')
2012-02-06 22:08:08 +01:00
def projector_countdown(request, command, time=60):
2012-02-03 20:49:16 +01:00
if command == 'show':
2012-02-15 12:04:11 +01:00
config['countdown_visible'] = True
2012-02-03 20:49:16 +01:00
elif command == 'hide':
2012-02-15 12:04:11 +01:00
config['countdown_visible'] = False
2012-02-03 20:49:16 +01:00
elif command == 'reset':
2012-02-15 12:04:11 +01:00
config['countdown_control'] = 'reset'
2012-02-03 20:49:16 +01:00
elif command == 'start':
2012-02-15 12:04:11 +01:00
config['countdown_control'] = 'start'
2012-02-03 20:49:16 +01:00
elif command == 'stop':
2012-02-15 12:04:11 +01:00
config['countdown_control'] = 'stop'
2012-02-03 20:49:16 +01:00
if request.is_ajax():
if command == "show":
link = reverse('countdown_close')
else:
link = reverse('countdown_open')
2012-02-15 12:04:11 +01:00
return ajax_request({'countdown_visible': config['countdown_visible'],
2012-02-03 20:49:16 +01:00
'link': link})
return redirect(reverse('item_overview'))