1 # Copyright 2017 ZTE Corporation.
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
18 from rest_framework import status
19 from rest_framework.response import Response
20 from rest_framework.views import APIView
22 logger = logging.getLogger(__name__)
25 class SampleList(APIView):
29 def get(self, request, format=None):
31 return Response({"status": "active"})
34 class CallbackSample(APIView):
38 def get(self, request, format=None):
39 logger.debug("Callback Sample")
40 return Response(data={}, status=status.HTTP_204_NO_CONTENT)
43 class TablesList(APIView):
44 def delete(self, request, modelName):
45 logger.debug("Start delete model %s", modelName)
47 modelNames = modelName.split("-")
48 for name in modelNames:
49 model_obj = eval("models.%s.objects" % name)
50 model_obj.filter().delete()
51 logger.debug("End delete model %s", name)
53 logger.error(traceback.format_exc())
54 return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
55 return Response(data={}, status=status.HTTP_204_NO_CONTENT)
57 def get(self, request, modelName):
58 logger.debug("Get model %s", modelName)
61 model_obj = eval("models.%s.objects" % modelName)
62 count = len(model_obj.filter())
64 logger.error(traceback.format_exc())
65 return Response(data={"error": "failed"}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
66 return Response(data={"count": count}, status=status.HTTP_200_OK)