123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- from django.core.exceptions import PermissionDenied
- from django.db import transaction
- from django.utils.translation import gettext as _
- from rest_framework import viewsets
- from rest_framework.decorators import detail_route, list_route
- from rest_framework.response import Response
- from misago.categories.models import THREADS_ROOT_NAME
- from misago.core.shortcuts import get_int_or_404
- from ..models import Post, Thread
- from ..moderation import threads as moderation
- from ..viewmodels.thread import ForumThread
- from .postingendpoint import PostingEndpoint
- from .threadendpoints.editor import thread_start_editor
- from .threadendpoints.list import threads_list_endpoint
- from .threadendpoints.merge import thread_merge_endpoint, threads_merge_endpoint
- from .threadendpoints.patch import thread_patch_endpoint
- class ViewSet(viewsets.ViewSet):
- thread = None
- def get_thread(self, request, pk, read_aware=True, subscription_aware=True, select_for_update=False):
- return self.thread(
- request,
- get_int_or_404(pk),
- None,
- read_aware,
- subscription_aware,
- select_for_update
- )
- def get_thread_for_update(self, request, pk):
- return self.get_thread(
- request, pk,
- read_aware=False,
- subscription_aware=False,
- select_for_update=True
- )
- def list(self, request):
- return threads_list_endpoint(request)
- def retrieve(self, request, pk):
- thread = self.get_thread(request, pk)
- return Response(thread.get_frontend_context())
- @transaction.atomic
- def partial_update(self, request, pk):
- thread = self.get_thread_for_update(request, pk).unwrap()
- return thread_patch_endpoint(request, thread)
- @transaction.atomic
- def destroy(self, request, pk):
- thread = self.get_thread_for_update(request, pk)
- if thread.acl.get('can_hide') == 2:
- moderation.delete_thread(request.user, thread)
- return Response({'detail': 'ok'})
- else:
- raise PermissionDenied(_("You don't have permission to delete this thread."))
- class ThreadViewSet(ViewSet):
- thread = ForumThread
- @transaction.atomic
- def create(self, request):
- # Initialize empty instances for new thread
- thread = Thread()
- post = Post(thread=thread)
- # Put them through posting pipeline
- posting = PostingEndpoint(
- request,
- PostingEndpoint.START,
- tree_name=THREADS_ROOT_NAME,
- thread=thread,
- post=post
- )
- if posting.is_valid():
- posting.save()
- return Response({
- 'id': thread.pk,
- 'title': thread.title,
- 'url': thread.get_absolute_url()
- })
- else:
- return Response(posting.errors, status=400)
- @detail_route(methods=['post'], url_path='merge')
- @transaction.atomic
- def thread_merge(self, request, pk):
- thread = self.get_thread_for_update(request, pk).unwrap()
- return thread_merge_endpoint(request, thread, self.thread)
- @list_route(methods=['post'], url_path='merge')
- @transaction.atomic
- def threads_merge(self, request):
- return threads_merge_endpoint(request)
- @list_route(methods=['get'])
- def editor(self, request):
- return thread_start_editor(request)
|