OpenSlides/openslides/core/signals.py

44 lines
1.7 KiB
Python
Raw Normal View History

2017-02-21 09:34:24 +01:00
from django.apps import apps
from django.contrib.auth.models import Permission
from django.contrib.contenttypes.models import ContentType
from django.db.models import Q
from django.dispatch import Signal
2017-02-21 09:34:24 +01:00
# This signal is send when the migrate command is done. That means it is sent
# after post_migrate sending and creating all Permission objects. Don't use it
# for other things than dealing with Permission objects.
post_permission_creation = Signal()
# This signal is sent if a permission is changed (e. g. a group gets a new
# permission). Connected receivers may yield Collections.
2017-02-21 09:34:24 +01:00
permission_change = Signal()
def delete_django_app_permissions(sender, **kwargs):
"""
Deletes the permissions, Django creates by default. Only required
for auth, contenttypes and sessions.
"""
contenttypes = ContentType.objects.filter(
Q(app_label='auth') |
Q(app_label='contenttypes') |
Q(app_label='sessions'))
2016-10-01 01:30:55 +02:00
Permission.objects.filter(content_type__in=contenttypes).delete()
2017-02-21 09:34:24 +01:00
def get_permission_change_data(sender, permissions, **kwargs):
2017-02-21 09:34:24 +01:00
"""
Yields all necessary Cachables if the respective permissions change.
2017-02-21 09:34:24 +01:00
"""
core_app = apps.get_app_config(app_label='core')
for permission in permissions:
if permission.content_type.app_label == core_app.label:
if permission.codename == 'can_see_projector':
yield core_app.get_model('Projector')
2017-02-21 09:34:24 +01:00
elif permission.codename == 'can_manage_projector':
yield core_app.get_model('ProjectorMessage')
yield core_app.get_model('Countdown')
2017-02-21 09:34:24 +01:00
elif permission.codename == 'can_use_chat':
yield core_app.get_model('ChatMessage')