- Move all generic API classes definitions to the rest_api.generics module. - Update API status code on insufficient access for the apps: indexes, parsing, documents, metadata, ocr, permission, user management. - Update API tests. Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
279 lines
8.3 KiB
Python
279 lines
8.3 KiB
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
from mayan.apps.acls.models import AccessControlList
|
|
from mayan.apps.documents.models import Document
|
|
from mayan.apps.documents.permissions import permission_document_view
|
|
from mayan.apps.rest_api import generics
|
|
|
|
from .models import SmartLink
|
|
from .permissions import (
|
|
permission_smart_link_create, permission_smart_link_delete,
|
|
permission_smart_link_edit, permission_smart_link_view
|
|
)
|
|
from .serializers import (
|
|
ResolvedSmartLinkDocumentSerializer, ResolvedSmartLinkSerializer,
|
|
SmartLinkConditionSerializer, SmartLinkSerializer,
|
|
WritableSmartLinkSerializer
|
|
)
|
|
|
|
|
|
class APIResolvedSmartLinkDocumentListView(generics.ListAPIView):
|
|
"""
|
|
get: Returns a list of the smart link documents that apply to the document.
|
|
"""
|
|
mayan_object_permissions = {'GET': (permission_document_view,)}
|
|
serializer_class = ResolvedSmartLinkDocumentSerializer
|
|
|
|
def get_document(self):
|
|
document = get_object_or_404(klass=Document, pk=self.kwargs['pk'])
|
|
|
|
AccessControlList.objects.check_access(
|
|
obj=document, permissions=(permission_document_view,),
|
|
user=self.request.user
|
|
)
|
|
|
|
return document
|
|
|
|
def get_smart_link(self):
|
|
smart_link = get_object_or_404(
|
|
klass=SmartLink.objects.get_for(document=self.get_document()),
|
|
pk=self.kwargs['smart_link_pk']
|
|
)
|
|
|
|
AccessControlList.objects.check_access(
|
|
obj=smart_link, permissions=(permission_smart_link_view,),
|
|
user=self.request.user
|
|
)
|
|
|
|
return smart_link
|
|
|
|
def get_serializer_context(self):
|
|
"""
|
|
Extra context provided to the serializer class.
|
|
"""
|
|
context = super(
|
|
APIResolvedSmartLinkDocumentListView, self
|
|
).get_serializer_context()
|
|
if self.kwargs:
|
|
context.update(
|
|
{
|
|
'document': self.get_document(),
|
|
'smart_link': self.get_smart_link(),
|
|
}
|
|
)
|
|
|
|
return context
|
|
|
|
def get_queryset(self):
|
|
return self.get_smart_link().get_linked_document_for(
|
|
document=self.get_document()
|
|
)
|
|
|
|
|
|
class APIResolvedSmartLinkView(generics.RetrieveAPIView):
|
|
"""
|
|
get: Return the details of the selected resolved smart link.
|
|
"""
|
|
lookup_url_kwarg = 'smart_link_pk'
|
|
mayan_object_permissions = {'GET': (permission_smart_link_view,)}
|
|
serializer_class = ResolvedSmartLinkSerializer
|
|
|
|
def get_document(self):
|
|
document = get_object_or_404(klass=Document, pk=self.kwargs['pk'])
|
|
|
|
AccessControlList.objects.check_access(
|
|
obj=document, permissions=(permission_document_view,),
|
|
user=self.request.user
|
|
)
|
|
|
|
return document
|
|
|
|
def get_serializer_context(self):
|
|
"""
|
|
Extra context provided to the serializer class.
|
|
"""
|
|
context = super(APIResolvedSmartLinkView, self).get_serializer_context()
|
|
if self.kwargs:
|
|
context.update(
|
|
{
|
|
'document': self.get_document(),
|
|
}
|
|
)
|
|
|
|
return context
|
|
|
|
def get_queryset(self):
|
|
return SmartLink.objects.get_for(document=self.get_document())
|
|
|
|
|
|
class APIResolvedSmartLinkListView(generics.ListAPIView):
|
|
"""
|
|
get: Returns a list of the smart links that apply to the document.
|
|
"""
|
|
mayan_object_permissions = {'GET': (permission_smart_link_view,)}
|
|
serializer_class = ResolvedSmartLinkSerializer
|
|
|
|
def get_document(self):
|
|
document = get_object_or_404(klass=Document, pk=self.kwargs['pk'])
|
|
|
|
AccessControlList.objects.check_access(
|
|
obj=document, permissions=(permission_document_view,),
|
|
user=self.request.user
|
|
)
|
|
|
|
return document
|
|
|
|
def get_serializer_context(self):
|
|
"""
|
|
Extra context provided to the serializer class.
|
|
"""
|
|
context = super(APIResolvedSmartLinkListView, self).get_serializer_context()
|
|
if self.kwargs:
|
|
context.update(
|
|
{
|
|
'document': self.get_document(),
|
|
}
|
|
)
|
|
|
|
return context
|
|
|
|
def get_queryset(self):
|
|
return SmartLink.objects.filter(
|
|
document_types=self.get_document().document_type
|
|
)
|
|
|
|
|
|
class APISmartLinkConditionListView(generics.ListCreateAPIView):
|
|
"""
|
|
get: Returns a list of all the smart link conditions.
|
|
post: Create a new smart link condition.
|
|
"""
|
|
serializer_class = SmartLinkConditionSerializer
|
|
|
|
def get_queryset(self):
|
|
return self.get_smart_link().conditions.all()
|
|
|
|
def get_serializer_context(self):
|
|
"""
|
|
Extra context provided to the serializer class.
|
|
"""
|
|
context = super(APISmartLinkConditionListView, self).get_serializer_context()
|
|
if self.kwargs:
|
|
context.update(
|
|
{
|
|
'smart_link': self.get_smart_link(),
|
|
}
|
|
)
|
|
|
|
return context
|
|
|
|
def get_smart_link(self):
|
|
if self.request.method == 'GET':
|
|
permission_required = permission_smart_link_view
|
|
else:
|
|
permission_required = permission_smart_link_edit
|
|
|
|
smart_link = get_object_or_404(klass=SmartLink, pk=self.kwargs['pk'])
|
|
|
|
AccessControlList.objects.check_access(
|
|
obj=smart_link, permissions=(permission_required,),
|
|
user=self.request.user
|
|
)
|
|
|
|
return smart_link
|
|
|
|
|
|
class APISmartLinkConditionView(generics.RetrieveUpdateDestroyAPIView):
|
|
"""
|
|
delete: Delete the selected smart link condition.
|
|
get: Return the details of the selected smart link condition.
|
|
patch: Edit the selected smart link condition.
|
|
put: Edit the selected smart link condition.
|
|
"""
|
|
lookup_url_kwarg = 'condition_pk'
|
|
serializer_class = SmartLinkConditionSerializer
|
|
|
|
def get_queryset(self):
|
|
return self.get_smart_link().conditions.all()
|
|
|
|
def get_serializer_context(self):
|
|
"""
|
|
Extra context provided to the serializer class.
|
|
"""
|
|
context = super(APISmartLinkConditionView, self).get_serializer_context()
|
|
if self.kwargs:
|
|
context.update(
|
|
{
|
|
'smart_link': self.get_smart_link(),
|
|
}
|
|
)
|
|
|
|
return context
|
|
|
|
def get_smart_link(self):
|
|
if self.request.method == 'GET':
|
|
permission_required = permission_smart_link_view
|
|
else:
|
|
permission_required = permission_smart_link_edit
|
|
|
|
smart_link = get_object_or_404(klass=SmartLink, pk=self.kwargs['pk'])
|
|
|
|
AccessControlList.objects.check_access(
|
|
obj=smart_link, permissions=(permission_required,),
|
|
user=self.request.user
|
|
)
|
|
|
|
return smart_link
|
|
|
|
|
|
class APISmartLinkListView(generics.ListCreateAPIView):
|
|
"""
|
|
get: Returns a list of all the smart links.
|
|
post: Create a new smart link.
|
|
"""
|
|
mayan_object_permissions = {'GET': (permission_smart_link_view,)}
|
|
mayan_view_permissions = {'POST': (permission_smart_link_create,)}
|
|
queryset = SmartLink.objects.all()
|
|
|
|
def get_serializer(self, *args, **kwargs):
|
|
if not self.request:
|
|
return None
|
|
|
|
return super(APISmartLinkListView, self).get_serializer(*args, **kwargs)
|
|
|
|
def get_serializer_class(self):
|
|
if self.request.method == 'GET':
|
|
return SmartLinkSerializer
|
|
else:
|
|
return WritableSmartLinkSerializer
|
|
|
|
|
|
class APISmartLinkView(generics.RetrieveUpdateDestroyAPIView):
|
|
"""
|
|
delete: Delete the selected smart link.
|
|
get: Return the details of the selected smart link.
|
|
patch: Edit the selected smart link.
|
|
put: Edit the selected smart link.
|
|
"""
|
|
mayan_object_permissions = {
|
|
'DELETE': (permission_smart_link_delete,),
|
|
'GET': (permission_smart_link_view,),
|
|
'PATCH': (permission_smart_link_edit,),
|
|
'PUT': (permission_smart_link_edit,)
|
|
}
|
|
queryset = SmartLink.objects.all()
|
|
|
|
def get_serializer(self, *args, **kwargs):
|
|
if not self.request:
|
|
return None
|
|
|
|
return super(APISmartLinkView, self).get_serializer(*args, **kwargs)
|
|
|
|
def get_serializer_class(self):
|
|
if self.request.method == 'GET':
|
|
return SmartLinkSerializer
|
|
else:
|
|
return WritableSmartLinkSerializer
|