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
|
2020-07-07 16:14:08 +02:00
|
|
|
from . import serializers # noqa
|
2019-01-06 16:22:33 +01:00
|
|
|
from .signals import create_builtin_workflows, get_permission_change_data
|
2018-02-02 13:51:19 +01:00
|
|
|
from .views import (
|
|
|
|
CategoryViewSet,
|
|
|
|
MotionBlockViewSet,
|
|
|
|
MotionChangeRecommendationViewSet,
|
2020-07-07 16:14:08 +02:00
|
|
|
MotionCommentSectionViewSet,
|
|
|
|
MotionOptionViewSet,
|
|
|
|
MotionPollViewSet,
|
|
|
|
MotionViewSet,
|
|
|
|
MotionVoteViewSet,
|
2018-06-26 15:59:05 +02:00
|
|
|
StateViewSet,
|
2020-07-07 16:14:08 +02:00
|
|
|
StatuteParagraphViewSet,
|
2018-02-02 13:51:19 +01:00
|
|
|
WorkflowViewSet,
|
|
|
|
)
|
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-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)
|