2020-12-04 06:51:01 +01:00
|
|
|
from django.conf import settings
|
2021-02-09 16:06:44 +01:00
|
|
|
from django.contrib.auth.models import AnonymousUser
|
2020-12-04 06:51:01 +01:00
|
|
|
from rest_framework.utils.serializer_helpers import ReturnDict
|
|
|
|
|
|
|
|
from openslides.utils.auth import has_perm
|
2021-02-09 16:06:44 +01:00
|
|
|
from openslides.utils.autoupdate import (
|
|
|
|
disable_history,
|
|
|
|
inform_changed_data,
|
|
|
|
inform_deleted_data,
|
|
|
|
)
|
2020-12-04 06:51:01 +01:00
|
|
|
from openslides.utils.rest_api import (
|
|
|
|
CreateModelMixin,
|
2021-02-09 16:06:44 +01:00
|
|
|
DestroyModelMixin,
|
2020-12-04 06:51:01 +01:00
|
|
|
GenericViewSet,
|
|
|
|
ModelViewSet,
|
|
|
|
Response,
|
2021-04-12 08:20:06 +02:00
|
|
|
action,
|
2020-12-04 06:51:01 +01:00
|
|
|
status,
|
|
|
|
)
|
|
|
|
|
|
|
|
from .models import ChatGroup, ChatMessage
|
|
|
|
|
|
|
|
|
|
|
|
ENABLE_CHAT = getattr(settings, "ENABLE_CHAT", False)
|
|
|
|
|
|
|
|
|
|
|
|
class ChatGroupViewSet(ModelViewSet):
|
|
|
|
"""
|
|
|
|
API endpoint for chat groups.
|
|
|
|
|
|
|
|
There are the following views: metadata, list, retrieve, create,
|
|
|
|
partial_update, update, destroy and clear.
|
|
|
|
"""
|
|
|
|
|
|
|
|
queryset = ChatGroup.objects.all()
|
|
|
|
|
|
|
|
def check_view_permissions(self):
|
|
|
|
"""
|
|
|
|
Returns True if the user has required permissions.
|
|
|
|
"""
|
|
|
|
if self.action in ("list", "retrieve"):
|
|
|
|
result = True
|
|
|
|
else:
|
|
|
|
result = has_perm(self.request.user, "chat.can_manage")
|
|
|
|
|
|
|
|
return result and ENABLE_CHAT
|
|
|
|
|
|
|
|
def update(self, *args, **kwargs):
|
|
|
|
response = super().update(*args, **kwargs)
|
2021-02-18 11:22:41 +01:00
|
|
|
# Update all affected chatmessages to update their `read_groups_id` and
|
|
|
|
# `write_groups_id` field, which is taken from the updated chatgroup.
|
2020-12-04 06:51:01 +01:00
|
|
|
inform_changed_data(ChatMessage.objects.filter(chatgroup=self.get_object()))
|
|
|
|
return response
|
|
|
|
|
2021-04-12 08:20:06 +02:00
|
|
|
@action(detail=True, methods=["POST"])
|
2020-12-04 06:51:01 +01:00
|
|
|
def clear(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Deletes all chat messages of the group.
|
|
|
|
"""
|
|
|
|
messages = self.get_object().messages.all()
|
|
|
|
messages_id = [message.id for message in messages]
|
|
|
|
messages.delete()
|
|
|
|
collection = ChatMessage.get_collection_string()
|
|
|
|
inform_deleted_data((collection, id) for id in messages_id)
|
|
|
|
return Response()
|
|
|
|
|
|
|
|
|
|
|
|
class ChatMessageViewSet(
|
2021-02-09 16:06:44 +01:00
|
|
|
CreateModelMixin,
|
|
|
|
DestroyModelMixin,
|
|
|
|
GenericViewSet,
|
2020-12-04 06:51:01 +01:00
|
|
|
):
|
|
|
|
"""
|
|
|
|
API endpoint for chat groups.
|
|
|
|
|
|
|
|
There are the following views: metadata, list, retrieve, create
|
|
|
|
"""
|
|
|
|
|
|
|
|
queryset = ChatMessage.objects.all()
|
|
|
|
|
|
|
|
def check_view_permissions(self):
|
2021-02-09 16:06:44 +01:00
|
|
|
# The permissions are checked in the view.
|
|
|
|
return ENABLE_CHAT and not isinstance(self.request.user, AnonymousUser)
|
2020-12-04 06:51:01 +01:00
|
|
|
|
|
|
|
def create(self, request, *args, **kwargs):
|
|
|
|
serializer = self.get_serializer(data=request.data)
|
|
|
|
serializer.is_valid(raise_exception=True)
|
|
|
|
|
2021-02-18 11:22:41 +01:00
|
|
|
if not serializer.validated_data["chatgroup"].can_write(self.request.user):
|
2020-12-04 06:51:01 +01:00
|
|
|
self.permission_denied(self.request)
|
|
|
|
|
|
|
|
# Do not use the serializer.save since it will put the model in the history.
|
|
|
|
validated_data = {
|
|
|
|
**serializer.validated_data,
|
|
|
|
"username": self.request.user.short_name(),
|
2021-02-09 16:06:44 +01:00
|
|
|
"user_id": self.request.user.id,
|
2020-12-04 06:51:01 +01:00
|
|
|
}
|
|
|
|
chatmessage = ChatMessage(**validated_data)
|
|
|
|
chatmessage.save(disable_history=True)
|
|
|
|
|
|
|
|
return Response(
|
|
|
|
ReturnDict(id=chatmessage.id, serializer=serializer),
|
|
|
|
status=status.HTTP_201_CREATED,
|
|
|
|
)
|
2021-02-09 16:06:44 +01:00
|
|
|
|
|
|
|
def destroy(self, request, *args, **kwargs):
|
|
|
|
if (
|
|
|
|
not has_perm(self.request.user, "chat.can_manage")
|
|
|
|
and self.get_object().user_id != self.request.user.id
|
|
|
|
):
|
|
|
|
self.permission_denied(request)
|
|
|
|
|
|
|
|
disable_history()
|
|
|
|
|
|
|
|
return super().destroy(request, *args, **kwargs)
|