1.Update API endpoint; 2. update swagger information.
[modeling/etsicatalog.git] / catalog / samples / views.py
1 # Copyright 2017 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 drf_yasg.utils import swagger_auto_schema
19 from rest_framework import status
20 from rest_framework.response import Response
21 from rest_framework.views import APIView
22
23 TAG_SAMPLE_INTERFACE = "Sample interface"
24
25 logger = logging.getLogger(__name__)
26
27
28 class SampleList(APIView):
29     """
30     List all samples.
31     """
32
33     @swagger_auto_schema(
34         tags=[TAG_SAMPLE_INTERFACE])
35     def get(self, request, format=None):
36         logger.debug("get")
37         return Response({"status": "active"})
38
39
40 class CallbackSample(APIView):
41     """
42     Callback Sample.
43     """
44
45     @swagger_auto_schema(
46         tags=[TAG_SAMPLE_INTERFACE])
47     def get(self, request, format=None):
48         logger.debug("Callback Sample")
49         return Response(data={}, status=status.HTTP_204_NO_CONTENT)
50
51
52 class TablesList(APIView):
53     @swagger_auto_schema(
54         tags=[TAG_SAMPLE_INTERFACE])
55     def delete(self, request, modelName):
56         logger.debug("Start delete model %s", modelName)
57         try:
58             modelNames = modelName.split("-")
59             for name in modelNames:
60                 model_obj = eval("models.%s.objects" % name)
61                 model_obj.filter().delete()
62                 logger.debug("End delete model %s", name)
63         except:
64             logger.error(traceback.format_exc())
65             return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
66         return Response(data={}, status=status.HTTP_204_NO_CONTENT)
67
68     @swagger_auto_schema(
69         tags=["Sample interface"])
70     def get(self, request, modelName):
71         logger.debug("Get model %s", modelName)
72         count = 0
73         try:
74             model_obj = eval("models.%s.objects" % modelName)
75             count = len(model_obj.filter())
76         except:
77             logger.error(traceback.format_exc())
78             return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
79         return Response(data={"count": count}, status=status.HTTP_200_OK)