Swagger issue fixes from the Ericsson team
[modeling/etsicatalog.git] / catalog / packages / views / vnf_package_artifact_views.py
1 # Copyright (C) 2019 Verizon. All Rights Reserved
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import logging
16
17 from django.http import FileResponse
18 from drf_yasg.utils import swagger_auto_schema
19 from drf_yasg import openapi
20 from rest_framework import status
21 from rest_framework.views import APIView
22
23 from catalog.packages.biz.vnf_pkg_artifacts import FetchVnfPkgArtifact
24 from catalog.packages.const import TAG_VNF_PACKAGE_API
25 from .common import view_safe_call_with_log
26
27 logger = logging.getLogger(__name__)
28
29 VALID_FILTERS = [
30     "callbackUri",
31     "notificationTypes",
32     "vnfdId",
33     "vnfPkgId",
34     "operationalState",
35     "usageState"
36 ]
37
38
39 class FetchVnfPkgmArtifactsView(APIView):
40
41     @swagger_auto_schema(
42         tags=[TAG_VNF_PACKAGE_API],
43         responses={
44             status.HTTP_200_OK: openapi.Response("Return the artifact file",
45                                                  schema=openapi.Schema(format=openapi.FORMAT_BINARY,
46                                                                        type=openapi.TYPE_STRING)),
47             status.HTTP_404_NOT_FOUND: openapi.Response("Artifact not found",
48                                                         schema=openapi.Schema(type=openapi.TYPE_STRING)),
49             status.HTTP_500_INTERNAL_SERVER_ERROR: openapi.Response("Internal error",
50                                                                     schema=openapi.Schema(type=openapi.TYPE_STRING))
51         }
52     )
53     @view_safe_call_with_log(logger=logger)
54     def get(self, request, vnfPkgId, artifactPath):
55         logger.debug("FetchVnfPkgmArtifactsView--get::> ")
56
57         resp_data = FetchVnfPkgArtifact().fetch(vnfPkgId, artifactPath)
58         response = FileResponse(resp_data)
59
60         return response