524280f3ec483b7f033517e51e6a626d2b2bcb27
[modeling/etsicatalog.git] / genericparser / 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 rest_framework import status
19 from rest_framework.response import Response
20 from rest_framework.views import APIView
21
22 logger = logging.getLogger(__name__)
23
24
25 class SampleList(APIView):
26     """
27     List all samples.
28     """
29     def get(self, request, format=None):
30         logger.debug("get")
31         return Response({"status": "active"})
32
33
34 class TablesList(APIView):
35     def delete(self, request, modelName):
36         logger.debug("Start delete model %s", modelName)
37         try:
38             modelNames = modelName.split("-")
39             for name in modelNames:
40                 model_obj = eval("models.%s.objects" % name)
41                 model_obj.filter().delete()
42                 logger.debug("End delete model %s", name)
43         except:
44             logger.error(traceback.format_exc())
45             return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
46         return Response(data={}, status=status.HTTP_204_NO_CONTENT)
47
48     def get(self, request, modelName):
49         logger.debug("Get model %s", modelName)
50         count = 0
51         try:
52             model_obj = eval("models.%s.objects" % modelName)
53             count = len(model_obj.filter())
54         except:
55             logger.error(traceback.format_exc())
56             return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
57         return Response(data={"count": count}, status=status.HTTP_200_OK)