OpenSlides/openslides/projector/api.py

60 lines
1.3 KiB
Python

from system import config
from projector.models import SLIDE, Slide
def get_slide_from_sid(sid):
data = sid.split('-')
if len(data) == 2:
model = data[0]
id = data[1]
return SLIDE[model].model.objects.get(pk=id).slide()
if len(data) == 1:
try:
return SLIDE[data[0]].func()
except KeyError:
return None
return None
def get_active_slide(only_sid=False):
"""
Returns the active slide. If no slide is active, or it can not find an Item,
it raise an error
if only_sid is True, returns only the id of this item. Returns None if not Item
is active. Does not Raise Item.DoesNotExist
"""
sid = config["presentation"]
if only_sid:
return sid
return get_slide_from_sid(sid)
def set_active_slide(sid):
config["presentation"] = sid
def register_slidemodel(model, category=None):
#TODO: Warn if there already is a slide with this prefix
SLIDE[model.prefix] = Slide(
model_slide=True,
model=model,
category=category,
key=model.prefix,
)
def register_slidefunc(key, func, category=None):
#TODO: Warn if there already is a slide with this prefix
SLIDE[key] = Slide(
model_slide=False,
func=func,
category=category,
key=key,
)
#def get_possible_slides():