Add delete table swagger generate logic
[vfc/nfvo/lcm.git] / lcm / samples / views.py
1 # Copyright 2016 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 import traceback
17
18 from rest_framework import status
19 from rest_framework.response import Response
20 from rest_framework.views import APIView
21 from drf_yasg.utils import swagger_auto_schema
22
23 from lcm.pub.database import models
24
25 logger = logging.getLogger(__name__)
26
27
28 class SampleList(APIView):
29     """
30     List all samples.
31     """
32     @swagger_auto_schema(
33         request_body=None,
34         responses={
35             status.HTTP_200_OK: "Status is active"
36         }
37     )
38     def get(self, request, format=None):
39         count = len(models.NSDModel.objects.filter())
40         logger.debug("get, count of NSDModel is %s", count)
41         return Response({"status": "active"})
42
43
44 class TablesList(APIView):
45     @swagger_auto_schema(
46         request_body=None,
47         responses={
48             status.HTTP_204_NO_CONTENT: None,
49             status.HTTP_500_INTERNAL_SERVER_ERROR: "Inner error"
50         }
51     )
52     def delete(self, request, modelName):
53         logger.debug("Start delete model %s", modelName)
54         try:
55             modelNames = modelName.split("-")
56             for name in modelNames:
57                 model_obj = eval("models.%s.objects" % name)
58                 model_obj.filter().delete()
59                 logger.debug("End delete model %s", name)
60         except:
61             logger.error(traceback.format_exc())
62             return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
63         return Response(data={}, status=status.HTTP_204_NO_CONTENT)
64
65     def get(self, request, modelName):
66         logger.debug("Get model %s", modelName)
67         count = 0
68         try:
69             model_obj = eval("models.%s.objects" % modelName)
70             count = len(model_obj.filter())
71         except:
72             logger.error(traceback.format_exc())
73             return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
74         return Response(data={"count": count}, status=status.HTTP_200_OK)