seperate sol and deprecated api
[vfc/nfvo/lcm.git] / lcm / ns / views / sol / ns_instances_views.py
1 # Copyright 2019 ZTE Corporation.
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 drf_yasg.utils import swagger_auto_schema
18 from rest_framework import status
19 from rest_framework.response import Response
20 from rest_framework.views import APIView
21
22 from lcm.ns.serializers.sol.create_ns_serializers import CreateNsRequestSerializer, CreateNsRespSerializer
23 from lcm.ns.serializers.sol.pub_serializers import QueryNsRespSerializer
24
25 logger = logging.getLogger(__name__)
26
27
28 class NSInstancesView(APIView):
29     @swagger_auto_schema(
30         request_body=None,
31         responses={
32             status.HTTP_200_OK: QueryNsRespSerializer(help_text="NS instances", many=True),
33             status.HTTP_500_INTERNAL_SERVER_ERROR: "Inner error"
34         }
35     )
36     def get(self, request):
37         logger.debug(request.query_params)
38         # todo
39
40     @swagger_auto_schema(
41         request_body=CreateNsRequestSerializer(),
42         responses={
43             status.HTTP_201_CREATED: CreateNsRespSerializer(),
44             status.HTTP_500_INTERNAL_SERVER_ERROR: "Inner error"
45         }
46     )
47     def post(self, request):
48         logger.debug("Enter NSInstancesView::POST ns_instances %s", request.data)
49         # todo
50         return Response(data={}, status=status.HTTP_201_CREATED)
51
52
53 class IndividualNsInstanceView(APIView):
54     def get(self, request, id):
55         logger.debug("Enter IndividualNsInstanceView::get ns(%s)", id)
56         # todo
57         return Response(data={}, status=status.HTTP_200_OK)
58
59     @swagger_auto_schema(
60         request_body=None,
61         responses={
62             status.HTTP_204_NO_CONTENT: None
63         }
64     )
65     def delete(self, request, id):
66         logger.debug("Enter IndividualNsInstanceView::DELETE ns_instance(%s)", id)
67         # todo
68         return Response(data={}, status=status.HTTP_204_NO_CONTENT)