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
|
|
|
|
2017-08-30 00:07:54 +02:00
|
|
|
from ..utils.projector import register_projector_elements
|
2017-03-06 16:34:20 +01:00
|
|
|
|
2014-11-13 22:23:16 +01:00
|
|
|
|
2015-07-01 17:48:41 +02:00
|
|
|
class MotionsAppConfig(AppConfig):
|
2015-03-26 05:36:10 +01:00
|
|
|
name = 'openslides.motions'
|
2014-11-13 22:23:16 +01:00
|
|
|
verbose_name = 'OpenSlides Motion'
|
2015-07-01 17:48:41 +02:00
|
|
|
angular_site_module = True
|
|
|
|
angular_projector_module = True
|
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
|
2017-08-30 00:07:54 +02:00
|
|
|
from .projector import get_projector_elements
|
2018-02-02 13:51:19 +01:00
|
|
|
from .signals import (
|
|
|
|
create_builtin_workflows,
|
|
|
|
get_permission_change_data,
|
|
|
|
)
|
|
|
|
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,
|
2018-02-02 13:51:19 +01:00
|
|
|
MotionBlockViewSet,
|
|
|
|
MotionPollViewSet,
|
|
|
|
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.
|
2017-08-30 00:07:54 +02:00
|
|
|
register_projector_elements(get_projector_elements())
|
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(
|
|
|
|
create_builtin_workflows,
|
|
|
|
dispatch_uid='motion_create_builtin_workflows')
|
2017-02-21 09:34:24 +01:00
|
|
|
permission_change.connect(
|
|
|
|
get_permission_change_data,
|
2017-03-06 16:34:20 +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.
|
2016-02-11 22:58:32 +01:00
|
|
|
router.register(self.get_model('Category').get_collection_string(), CategoryViewSet)
|
2018-09-24 10:28:31 +02:00
|
|
|
router.register(self.get_model('StatuteParagraph').get_collection_string(), StatuteParagraphViewSet)
|
2016-02-11 22:58:32 +01:00
|
|
|
router.register(self.get_model('Motion').get_collection_string(), MotionViewSet)
|
2016-10-01 20:42:44 +02:00
|
|
|
router.register(self.get_model('MotionBlock').get_collection_string(), MotionBlockViewSet)
|
2018-08-31 15:33:41 +02:00
|
|
|
router.register(self.get_model('MotionCommentSection').get_collection_string(), MotionCommentSectionViewSet)
|
2016-02-11 22:58:32 +01:00
|
|
|
router.register(self.get_model('Workflow').get_collection_string(), WorkflowViewSet)
|
2016-09-10 18:49:38 +02:00
|
|
|
router.register(self.get_model('MotionChangeRecommendation').get_collection_string(),
|
|
|
|
MotionChangeRecommendationViewSet)
|
2017-03-22 14:00:03 +01:00
|
|
|
router.register(self.get_model('MotionPoll').get_collection_string(), MotionPollViewSet)
|
2018-06-26 15:59:05 +02: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
|
|
|
|
required_user.add_collection_string(self.get_model('Motion').get_collection_string(), required_users)
|
|
|
|
|
2018-09-10 08:15:31 +02:00
|
|
|
def get_config_variables(self):
|
|
|
|
from .config_variables import get_config_variables
|
|
|
|
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.
|
|
|
|
"""
|
2018-09-24 10:28:31 +02:00
|
|
|
for model_name in ('Category', 'StatuteParagraph', 'Motion', 'MotionBlock',
|
|
|
|
'Workflow', 'MotionChangeRecommendation', 'MotionCommentSection'):
|
2018-07-09 23:22:26 +02:00
|
|
|
yield self.get_model(model_name)
|
2018-11-01 17:30:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
def required_users(element: Dict[str, Any]) -> Set[int]:
|
|
|
|
"""
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
submitters_supporters = set([submitter['user_id'] for submitter in element['submitters']])
|
|
|
|
submitters_supporters.update(element['supporters_id'])
|
|
|
|
return submitters_supporters
|