Skip to content

Commit fce1703

Browse files
committed
Add API document generator, resolves doccano#299, resolves doccano#646
1 parent 301ac51 commit fce1703

File tree

6 files changed

+21
-2
lines changed

6 files changed

+21
-2
lines changed

app/api/urls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@
4646
RoleMappingDetail.as_view(), name='rolemapping_detail'),
4747
]
4848

49-
urlpatterns = format_suffix_patterns(urlpatterns, allowed=['json', 'xml'])
49+
# urlpatterns = format_suffix_patterns(urlpatterns, allowed=['json', 'xml'])

app/api/views.py

+2
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ class DocumentDetail(generics.RetrieveUpdateDestroyAPIView):
170170
class AnnotationList(generics.ListCreateAPIView):
171171
pagination_class = None
172172
permission_classes = [IsAuthenticated & IsInProjectOrAdmin]
173+
swagger_schema = None
173174

174175
def get_serializer_class(self):
175176
project = get_object_or_404(Project, pk=self.kwargs['project_id'])
@@ -197,6 +198,7 @@ def perform_create(self, serializer):
197198
class AnnotationDetail(generics.RetrieveUpdateDestroyAPIView):
198199
lookup_url_kwarg = 'annotation_id'
199200
permission_classes = [IsAuthenticated & (((IsAnnotator | IsAnnotationApprover) & IsOwnAnnotation) | IsProjectAdmin)]
201+
swagger_schema = None
200202

201203
def get_serializer_class(self):
202204
project = get_object_or_404(Project, pk=self.kwargs['project_id'])

app/app/settings.py

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
'polymorphic',
6262
'webpack_loader',
6363
'corsheaders',
64+
'drf_yasg'
6465
]
6566

6667
CLOUD_BROWSER_APACHE_LIBCLOUD_PROVIDER = env('CLOUD_BROWSER_LIBCLOUD_PROVIDER', None)

app/app/urls.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,23 @@
1515
"""
1616
from django.conf import settings
1717
from django.contrib import admin
18-
from django.urls import path, include, re_path
18+
from django.urls import path, include
1919
from django.contrib.auth.views import PasswordResetView, LogoutView
20+
from drf_yasg.views import get_schema_view
21+
from drf_yasg import openapi
22+
2023
from server.views import LoginView
2124

25+
# TODO: adds AnnotationList and AnnotationDetail endpoint.
26+
schema_view = get_schema_view(
27+
openapi.Info(
28+
title="doccano API",
29+
default_version='v1',
30+
description="doccano API description",
31+
license=openapi.License(name="MIT License"),
32+
),
33+
public=True,
34+
)
2235

2336
urlpatterns = [
2437
path('', include('authentification.urls')),
@@ -30,6 +43,7 @@
3043
path('password_reset/', PasswordResetView.as_view(), name='password_reset'),
3144
path('api-auth/', include('rest_framework.urls')),
3245
path('v1/', include('api.urls')),
46+
path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
3347
]
3448

3549
if 'cloud_browser' in settings.INSTALLED_APPS:

app/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ django-rest-polymorphic==0.1.8
1717
djangorestframework==3.10
1818
djangorestframework-csv==2.1.0
1919
djangorestframework-filters==0.10.2
20+
drf-yasg==1.17.1
2021
environs==4.1.0
2122
djangorestframework-xml==1.4.0
2223
Faker==0.9.1

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ djangorestframework-csv==2.1.0
1919
djangorestframework-filters==0.10.2
2020
environs==4.1.0
2121
djangorestframework-xml==1.4.0
22+
drf-yasg==1.17.1
2223
Faker==0.9.1
2324
flake8==3.6.0
2425
furl==2.0.0

0 commit comments

Comments
 (0)