OpenSlides/openslides/motions/projector.py

123 lines
3.7 KiB
Python
Raw Normal View History

2018-12-23 11:05:38 +01:00
from typing import Any, Dict
from ..users.projector import get_user_name
from ..utils.projector import (
AllData,
ProjectorElementException,
get_config,
register_projector_slide,
)
2018-12-23 11:05:38 +01:00
# Important: All functions have to be prune. This means, that thay can only
# access the data, that they get as argument and do not have any
# side effects. They are called from an async context. So they have
# to be fast!
2019-01-19 21:36:30 +01:00
def get_state(
all_data: AllData, motion: Dict[str, Any], state_id: int
2018-12-23 11:05:38 +01:00
) -> Dict[str, Any]:
2019-01-19 21:36:30 +01:00
"""
Returns a state element from one motion.
Returns an error if the state_id does not exist for the workflow in the motion.
"""
states = all_data["motions/workflow"][motion["workflow_id"]]["states"]
for state in states:
if state["id"] == state_id:
return state
raise ProjectorElementException(
f"motion {motion['id']} can not be on the state with id {state_id}"
)
2019-01-19 21:36:30 +01:00
def motion_slide(all_data: AllData, element: Dict[str, Any]) -> Dict[str, Any]:
"""
2018-12-23 11:05:38 +01:00
Motion slide.
2019-01-19 21:36:30 +01:00
The returned dict can contain the following fields:
* identifier
* title
* text
* amendment_paragraphs
* is_child
* show_meta_box
* reason
* modified_final_version
* recommendation
* recommendation_extension
* recommender
* change_recommendations
2019-01-19 21:36:30 +01:00
* submitter
"""
2019-01-19 21:36:30 +01:00
mode = element.get("mode")
motion_id = element.get("id")
2019-01-06 16:22:33 +01:00
2019-01-19 21:36:30 +01:00
if motion_id is None:
2019-02-15 12:01:16 +01:00
raise ProjectorElementException("id is required for motion slide")
2019-01-19 21:36:30 +01:00
try:
motion = all_data["motions/motion"][motion_id]
except KeyError:
raise ProjectorElementException(f"motion with id {motion_id} does not exist")
2019-01-19 21:36:30 +01:00
show_meta_box = not get_config(all_data, "motions_disable_sidebox_on_projector")
return_value = {
"identifier": motion["identifier"],
"title": motion["title"],
"text": motion["text"],
"amendment_paragraphs": motion["amendment_paragraphs"],
"is_child": bool(motion["parent_id"]),
"show_meta_box": show_meta_box,
}
if not get_config(all_data, "motions_disable_reason_on_projector"):
return_value["reason"] = motion["reason"]
2019-01-19 21:36:30 +01:00
if mode == "final":
return_value["modified_final_version"] = motion["modified_final_version"]
if show_meta_box:
if (
not get_config(all_data, "motions_disable_recommendation_on_projector")
and motion["recommendation_id"]
):
recommendation_state = get_state(
all_data, motion, motion["recommendation_id"]
)
return_value["recommendation"] = recommendation_state[
"recommendation_label"
2019-01-19 21:36:30 +01:00
]
if recommendation_state["show_recommendation_extension_field"]:
return_value["recommendation_extension"] = motion[
"recommendation_extension"
]
return_value["recommender"] = get_config(
all_data, "motions_recommendations_by"
)
return_value["change_recommendations"] = motion["change_recommendations"]
2019-01-19 21:36:30 +01:00
return_value["submitter"] = [
get_user_name(all_data, submitter["user_id"])
for submitter in sorted(
motion["submitters"], key=lambda submitter: submitter["weight"]
)
2019-01-19 21:36:30 +01:00
]
return return_value
def motion_block_slide(all_data: AllData, element: Dict[str, Any]) -> Dict[str, Any]:
2018-12-23 11:05:38 +01:00
"""
Motion slide.
"""
return {"error": "TODO"}
def register_projector_slides() -> None:
register_projector_slide("motions/motion", motion_slide)
register_projector_slide("motions/motion-block", motion_block_slide)