e225a57f97
- Removing channels. Going back to a wsgi deployment - Removed server projector code - Autoupdate throttling is now in the client - New communication stack in the client - Adopted all deployment methods: Docker stack and docker compose (prod and dev) - Added autoupdate service as submodule
105 lines
3.2 KiB
Python
105 lines
3.2 KiB
Python
from typing import Any, Dict, Set
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AssignmentsAppConfig(AppConfig):
|
|
name = "openslides.assignments"
|
|
verbose_name = "OpenSlides Assignments"
|
|
|
|
def ready(self):
|
|
# Import all required stuff.
|
|
from ..core.signals import permission_change
|
|
from ..utils.access_permissions import required_user
|
|
from ..utils.rest_api import router
|
|
from . import serializers # noqa
|
|
from .signals import get_permission_change_data
|
|
from .views import (
|
|
AssignmentOptionViewSet,
|
|
AssignmentPollViewSet,
|
|
AssignmentViewSet,
|
|
AssignmentVoteViewSet,
|
|
)
|
|
|
|
# Connect signals.
|
|
permission_change.connect(
|
|
get_permission_change_data,
|
|
dispatch_uid="assignments_get_permission_change_data",
|
|
)
|
|
|
|
# Register viewsets.
|
|
router.register(
|
|
self.get_model("Assignment").get_collection_string(), AssignmentViewSet
|
|
)
|
|
router.register(
|
|
self.get_model("AssignmentPoll").get_collection_string(),
|
|
AssignmentPollViewSet,
|
|
)
|
|
router.register(
|
|
self.get_model("AssignmentOption").get_collection_string(),
|
|
AssignmentOptionViewSet,
|
|
)
|
|
router.register(
|
|
self.get_model("AssignmentVote").get_collection_string(),
|
|
AssignmentVoteViewSet,
|
|
)
|
|
|
|
# Register required_users
|
|
required_user.add_collection_string(
|
|
self.get_model("Assignment").get_collection_string(),
|
|
required_users_assignments,
|
|
)
|
|
required_user.add_collection_string(
|
|
self.get_model("AssignmentPoll").get_collection_string(),
|
|
required_users_assignment_polls,
|
|
)
|
|
required_user.add_collection_string(
|
|
self.get_model("AssignmentOption").get_collection_string(),
|
|
required_users_assignment_options,
|
|
)
|
|
|
|
def get_config_variables(self):
|
|
from .config_variables import get_config_variables
|
|
|
|
return get_config_variables()
|
|
|
|
def get_startup_elements(self):
|
|
"""
|
|
Yields all Cachables required on startup i. e. opening the websocket
|
|
connection.
|
|
"""
|
|
for model_name in (
|
|
"Assignment",
|
|
"AssignmentPoll",
|
|
"AssignmentVote",
|
|
"AssignmentOption",
|
|
):
|
|
yield self.get_model(model_name)
|
|
|
|
|
|
async def required_users_assignments(element: Dict[str, Any]) -> Set[int]:
|
|
"""
|
|
Returns all user ids that are displayed as candidates (including poll
|
|
options) in the assignment element.
|
|
"""
|
|
|
|
return set(
|
|
related_user["user_id"] for related_user in element["assignment_related_users"]
|
|
)
|
|
|
|
|
|
async def required_users_assignment_polls(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.
|
|
"""
|
|
from openslides.poll.models import BasePoll
|
|
|
|
if element["state"] == BasePoll.STATE_PUBLISHED:
|
|
return element["voted_id"]
|
|
else:
|
|
return set()
|
|
|
|
|
|
async def required_users_assignment_options(element: Dict[str, Any]) -> Set[int]:
|
|
return set([element["user_id"]])
|