2016-02-11 22:58:32 +01:00
|
|
|
from ..utils.access_permissions import BaseAccessPermissions
|
|
|
|
|
2016-02-11 11:29:19 +01:00
|
|
|
|
2016-02-11 22:58:32 +01:00
|
|
|
class ProjectorAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for Projector and ProjectorViewSet.
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 11:29:19 +01:00
|
|
|
"""
|
2016-02-11 22:58:32 +01:00
|
|
|
Returns True if the user has read access model instances.
|
2016-02-11 11:29:19 +01:00
|
|
|
"""
|
|
|
|
return user.has_perm('core.can_see_projector')
|
2016-02-11 22:58:32 +01:00
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_serializer_class(self, user=None):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import ProjectorSerializer
|
|
|
|
|
|
|
|
return ProjectorSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class CustomSlideAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for CustomSlide and CustomSlideViewSet.
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
|
|
|
return user.has_perm('core.can_manage_projector')
|
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_serializer_class(self, user=None):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import CustomSlideSerializer
|
|
|
|
|
|
|
|
return CustomSlideSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class TagAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for Tag and TagViewSet.
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
|
|
|
from .config import config
|
|
|
|
|
|
|
|
# Every authenticated user can retrieve tags. Anonymous users can do
|
|
|
|
# so if they are enabled.
|
|
|
|
return user.is_authenticated() or config['general_system_enable_anonymous']
|
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_serializer_class(self, user=None):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import TagSerializer
|
|
|
|
|
|
|
|
return TagSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class ChatMessageAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for ChatMessage and ChatMessageViewSet.
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
|
|
|
# Anonymous users can see the chat if the anonymous group has the
|
|
|
|
# permission core.can_use_chat. But they can not use it. See views.py.
|
|
|
|
return user.has_perm('core.can_use_chat')
|
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_serializer_class(self, user=None):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns serializer class.
|
|
|
|
"""
|
|
|
|
from .serializers import ChatMessageSerializer
|
|
|
|
|
|
|
|
return ChatMessageSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigAccessPermissions(BaseAccessPermissions):
|
|
|
|
"""
|
|
|
|
Access permissions container for the config (ConfigStore and
|
|
|
|
ConfigViewSet).
|
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
def check_permissions(self, user):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
Returns True if the user has read access model instances.
|
|
|
|
"""
|
|
|
|
from .config import config
|
|
|
|
|
|
|
|
# Every authenticated user can see the metadata and list or retrieve
|
|
|
|
# the config. Anonymous users can do so if they are enabled.
|
|
|
|
return user.is_authenticated() or config['general_system_enable_anonymous']
|
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
def get_full_data(self, instance):
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
2016-03-02 00:46:19 +01:00
|
|
|
Returns the serlialized config data.
|
2016-02-11 22:58:32 +01:00
|
|
|
"""
|
|
|
|
from .config import config
|
|
|
|
|
2016-03-02 00:46:19 +01:00
|
|
|
# Attention: The format of this response has to be the same as in
|
|
|
|
# the retrieve method of ConfigViewSet.
|
|
|
|
return {'key': instance.key, 'value': config[instance.key]}
|