Add swagger auto generate logic for vfc 79/28779/3
authorfujinhua <fu.jinhua@zte.com.cn>
Mon, 22 Jan 2018 12:02:58 +0000 (20:02 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Tue, 23 Jan 2018 00:28:39 +0000 (08:28 +0800)
Change-Id: I7e5e5a0213274aa0a052bd30efe19ccf7fe0d6f4
Issue-ID: VFC-671
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
lcm/swagger/urls.py
lcm/swagger/views.py

index 0fe8269..cb10cad 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 from django.conf.urls import url
-from rest_framework.urlpatterns import format_suffix_patterns
 
+from lcm.swagger.views import SchemaView
 from lcm.swagger.views import SwaggerJsonView
 
 urlpatterns = [
-    url(r'^api/nslcm/v1/swagger.json$', SwaggerJsonView.as_view())
+    url(r'^api/nslcm/v1/swagger.json$', SwaggerJsonView.as_view()),
+    url(r'^swagger(?P<format>.json|.yaml)$', SchemaView.without_ui(cache_timeout=0), name='schema-json'),
+    url(r'^swagger/$', SchemaView.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
+    url(r'^redoc/$', SchemaView.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
+    url(r'^cached/swagger(?P<format>.json|.yaml)$', SchemaView.without_ui(cache_timeout=None), name='cschema-json'),
+    url(r'^cached/swagger/$', SchemaView.with_ui('swagger', cache_timeout=None), name='cschema-swagger-ui'),
+    url(r'^cached/redoc/$', SchemaView.with_ui('redoc', cache_timeout=None), name='cschema-redoc'),
 ]
-
-urlpatterns = format_suffix_patterns(urlpatterns)
index e78ecea..5f087f8 100644 (file)
@@ -17,10 +17,19 @@ import os
 
 from rest_framework.response import Response
 from rest_framework.views import APIView
+from rest_framework import permissions
+from drf_yasg.views import get_schema_view
 
 logger = logging.getLogger(__name__)
 
 
+SchemaView = get_schema_view(
+    validators=['ssv', 'flex'],
+    public=True,
+    permission_classes=(permissions.AllowAny,),
+)
+
+
 class SwaggerJsonView(APIView):
 
     def get(self, request):