2018-11-01 17:30:18 +01:00
|
|
|
from typing import Any, Dict, Set
|
|
|
|
|
2014-11-13 22:23:16 +01:00
|
|
|
from django.apps import AppConfig
|
2015-01-16 14:18:34 +01:00
|
|
|
from django.db.models.signals import post_migrate
|
2014-11-13 22:23:16 +01:00
|
|
|
|
|
|
|
|
2015-07-01 17:48:41 +02:00
|
|
|
class MotionsAppConfig(AppConfig):
|
2019-01-06 16:22:33 +01:00
|
|
|
name = "openslides.motions"
|
|
|
|
verbose_name = "OpenSlides Motion"
|
2014-11-13 22:23:16 +01:00
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
# Import all required stuff.
|
2018-11-01 17:30:18 +01:00
|
|
|
from openslides.core.signals import permission_change
|
2015-01-24 16:35:50 +01:00
|
|
|
from openslides.utils.rest_api import router
|
2019-01-27 13:17:17 +01:00
|
|
|
from .projector import register_projector_slides
|
2019-01-06 16:22:33 +01:00
|
|
|
from .signals import create_builtin_workflows, get_permission_change_data
|
2018-11-05 09:04:41 +01:00
|
|
|
from . import serializers # noqa
|
2018-02-02 13:51:19 +01:00
|
|
|
from .views import (
|
|
|
|
CategoryViewSet,
|
2018-09-24 10:28:31 +02:00
|
|
|
StatuteParagraphViewSet,
|
2018-02-02 13:51:19 +01:00
|
|
|
MotionViewSet,
|
2018-08-31 15:33:41 +02:00
|
|
|
MotionCommentSectionViewSet,
|
2019-10-18 14:18:49 +02:00
|
|
|
MotionVoteViewSet,
|
2018-02-02 13:51:19 +01:00
|
|
|
MotionBlockViewSet,
|
|
|
|
MotionPollViewSet,
|
2019-11-12 18:30:26 +01:00
|
|
|
MotionOptionViewSet,
|
2018-02-02 13:51:19 +01:00
|
|
|
MotionChangeRecommendationViewSet,
|
2018-06-26 15:59:05 +02:00
|
|
|
StateViewSet,
|
2018-02-02 13:51:19 +01:00
|
|
|
WorkflowViewSet,
|
|
|
|
)
|
2018-11-01 17:30:18 +01:00
|
|
|
from ..utils.access_permissions import required_user
|
2014-11-13 22:23:16 +01:00
|
|
|
|
2018-09-10 08:15:31 +02:00
|
|
|
# Define projector elements.
|
2019-01-27 13:17:17 +01:00
|
|
|
register_projector_slides()
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2014-11-13 22:23:16 +01:00
|
|
|
# Connect signals.
|
2018-02-02 13:51:19 +01:00
|
|
|
post_migrate.connect(
|
2019-01-06 16:22:33 +01:00
|
|
|
create_builtin_workflows, dispatch_uid="motion_create_builtin_workflows"
|
|
|
|
)
|
2017-02-21 09:34:24 +01:00
|
|
|
permission_change.connect(
|
|
|
|
get_permission_change_data,
|
2019-01-06 16:22:33 +01:00
|
|
|
dispatch_uid="motions_get_permission_change_data",
|
|
|
|
)
|
2014-11-13 22:23:16 +01:00
|
|
|
|
2015-01-24 16:35:50 +01:00
|
|
|
# Register viewsets.
|
2019-01-06 16:22:33 +01:00
|
|
|
router.register(
|
|
|
|
self.get_model("Category").get_collection_string(), CategoryViewSet
|
|
|
|
)
|
|
|
|
router.register(
|
|
|
|
self.get_model("StatuteParagraph").get_collection_string(),
|
|
|
|
StatuteParagraphViewSet,
|
|
|
|
)
|
|
|
|
router.register(self.get_model("Motion").get_collection_string(), MotionViewSet)
|
|
|
|
router.register(
|
|
|
|
self.get_model("MotionBlock").get_collection_string(), MotionBlockViewSet
|
|
|
|
)
|
|
|
|
router.register(
|
|
|
|
self.get_model("MotionCommentSection").get_collection_string(),
|
|
|
|
MotionCommentSectionViewSet,
|
|
|
|
)
|
|
|
|
router.register(
|
|
|
|
self.get_model("Workflow").get_collection_string(), WorkflowViewSet
|
|
|
|
)
|
|
|
|
router.register(
|
|
|
|
self.get_model("MotionChangeRecommendation").get_collection_string(),
|
|
|
|
MotionChangeRecommendationViewSet,
|
|
|
|
)
|
|
|
|
router.register(
|
|
|
|
self.get_model("MotionPoll").get_collection_string(), MotionPollViewSet
|
|
|
|
)
|
2019-11-12 18:30:26 +01:00
|
|
|
router.register(
|
|
|
|
self.get_model("MotionOption").get_collection_string(), MotionOptionViewSet
|
|
|
|
)
|
2019-10-18 14:18:49 +02:00
|
|
|
router.register(
|
|
|
|
self.get_model("MotionVote").get_collection_string(), MotionVoteViewSet
|
|
|
|
)
|
2019-01-06 16:22:33 +01:00
|
|
|
router.register(self.get_model("State").get_collection_string(), StateViewSet)
|
2017-01-14 12:29:42 +01:00
|
|
|
|
2018-11-01 17:30:18 +01:00
|
|
|
# Register required_users
|
2019-01-06 16:22:33 +01:00
|
|
|
required_user.add_collection_string(
|
2020-02-25 11:22:27 +01:00
|
|
|
self.get_model("Motion").get_collection_string(), required_users_motions
|
|
|
|
)
|
|
|
|
|
|
|
|
required_user.add_collection_string(
|
2020-03-12 15:42:41 +01:00
|
|
|
self.get_model("MotionPoll").get_collection_string(),
|
2020-02-25 11:22:27 +01:00
|
|
|
required_users_options,
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
2018-11-01 17:30:18 +01:00
|
|
|
|
2018-09-10 08:15:31 +02:00
|
|
|
def get_config_variables(self):
|
|
|
|
from .config_variables import get_config_variables
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-09-10 08:15:31 +02:00
|
|
|
return get_config_variables()
|
|
|
|
|
2017-01-14 12:29:42 +01:00
|
|
|
def get_startup_elements(self):
|
2017-03-06 16:34:20 +01:00
|
|
|
"""
|
2018-07-09 23:22:26 +02:00
|
|
|
Yields all Cachables required on startup i. e. opening the websocket
|
2017-03-06 16:34:20 +01:00
|
|
|
connection.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
for model_name in (
|
|
|
|
"Category",
|
|
|
|
"StatuteParagraph",
|
|
|
|
"Motion",
|
|
|
|
"MotionBlock",
|
|
|
|
"Workflow",
|
2019-07-17 16:13:49 +02:00
|
|
|
"State",
|
2019-01-06 16:22:33 +01:00
|
|
|
"MotionChangeRecommendation",
|
|
|
|
"MotionCommentSection",
|
2019-10-18 14:18:49 +02:00
|
|
|
"MotionPoll",
|
2019-11-12 18:30:26 +01:00
|
|
|
"MotionOption",
|
2019-10-18 14:18:49 +02:00
|
|
|
"MotionVote",
|
2019-01-06 16:22:33 +01:00
|
|
|
):
|
2018-07-09 23:22:26 +02:00
|
|
|
yield self.get_model(model_name)
|
2018-11-01 17:30:18 +01:00
|
|
|
|
|
|
|
|
2020-02-25 11:22:27 +01:00
|
|
|
async def required_users_motions(element: Dict[str, Any]) -> Set[int]:
|
2018-11-01 17:30:18 +01:00
|
|
|
"""
|
|
|
|
Returns all user ids that are displayed as as submitter or supporter in
|
|
|
|
any motion if request_user can see motions. This function may return an
|
|
|
|
empty set.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
submitters_supporters = set(
|
|
|
|
[submitter["user_id"] for submitter in element["submitters"]]
|
|
|
|
)
|
|
|
|
submitters_supporters.update(element["supporters_id"])
|
2018-11-01 17:30:18 +01:00
|
|
|
return submitters_supporters
|
2020-02-25 11:22:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
async def required_users_options(element: Dict[str, Any]) -> Set[int]:
|
|
|
|
"""
|
|
|
|
Returns all user ids that have voted on an option and are therefore required for the single votes table.
|
|
|
|
"""
|
|
|
|
return element["voted_id"]
|