update link to upper-constraints.txt
[vfc/nfvo/lcm.git] / lcm / swagger / urls.py
index c3b8ad6..ab83a32 100644 (file)
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-from django.conf.urls import patterns, url
-from rest_framework.urlpatterns import format_suffix_patterns
+from django.conf.urls import url
+from drf_yasg import openapi
+from drf_yasg.views import get_schema_view
+from rest_framework import permissions
 
-from lcm.swagger.views import SwaggerJsonView
+swagger_info = openapi.Info(
+    title="vfc-nfvo-lcm API",
+    default_version='v1',
+    description="""
 
-urlpatterns = patterns('',
-                       url(r'^api/nslcm/v1/swagger.json$', SwaggerJsonView.as_view())
-                       )
+The `swagger-ui` view can be found [here](/api/nslcm/v1/swagger).
+The `ReDoc` view can be found [here](/api/nslcm/v1/redoc).
+The swagger JSON document can be found [here](/api/nslcm/v1/swagger.json).
+The swagger YAML document can be found [here](/api/nslcm/v1/swagger.yaml)."""
+)
 
-urlpatterns = format_suffix_patterns(urlpatterns)
+SchemaView = get_schema_view(
+    validators=['ssv', 'flex'],
+    public=True,
+    permission_classes=(permissions.AllowAny,),
+)
+
+urlpatterns = [
+    url(r'^api/nslcm/v1/swagger(?P<format>.json|.yaml)$', SchemaView.without_ui(cache_timeout=0), name='schema-json'),
+    url(r'^api/nslcm/v1/swagger$', SchemaView.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
+    url(r'^api/nslcm/v1/redoc$', SchemaView.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
+]