123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- from rest_framework.response import Response
- from django.core.exceptions import PermissionDenied
- from django.utils.translation import ugettext as _
- from misago.threads.models import Thread
- from misago.threads.moderation import threads as moderation
- from misago.threads.serializers import SplitPostsSerializer
- def posts_split_endpoint(request, thread):
- if not thread.acl['can_move_posts']:
- raise PermissionDenied(_("You can't split posts from this thread."))
- serializer = SplitPostsSerializer(
- data=request.data,
- context={
- 'thread': thread,
- 'user': request.user,
- },
- )
- if not serializer.is_valid():
- if 'posts' in serializer.errors:
- errors = {
- 'detail': serializer.errors['posts'][0]
- }
- else :
- errors = serializer.errors
- return Response(errors, status=400)
- split_posts_to_new_thread(request, thread, serializer.validated_data)
- return Response({})
- def split_posts_to_new_thread(request, thread, validated_data):
- new_thread = Thread(
- category=validated_data['category'],
- started_on=thread.started_on,
- last_post_on=thread.last_post_on,
- )
- new_thread.set_title(validated_data['title'])
- new_thread.save()
- for post in validated_data['posts']:
- post.move(new_thread)
- post.save()
- thread.synchronize()
- thread.save()
- new_thread.synchronize()
- new_thread.save()
- if validated_data.get('weight') == Thread.WEIGHT_GLOBAL:
- moderation.pin_thread_globally(request, new_thread)
- elif validated_data.get('weight'):
- moderation.pin_thread_locally(request, new_thread)
- if validated_data.get('is_hidden', False):
- moderation.hide_thread(request, new_thread)
- if validated_data.get('is_closed', False):
- moderation.close_thread(request, new_thread)
- thread.category.synchronize()
- thread.category.save()
- if new_thread.category != thread.category:
- new_thread.category.synchronize()
- new_thread.category.save()
|