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