Add vfc-vnflcm queryJov responseId
[vfc/gvnfm/vnflcm.git] / lcm / lcm / jobs / 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 import openapi
19 from drf_yasg.utils import swagger_auto_schema
20 from rest_framework import status
21 from rest_framework.response import Response
22 from rest_framework.views import APIView
23
24 from lcm.jobs.job_get import GetJobInfoService
25 from lcm.jobs.serializers import JobQueryRespSerializer
26 from lcm.pub.exceptions import NFLCMException
27 from lcm.pub.utils.values import ignore_case_get
28
29 logger = logging.getLogger(__name__)
30
31
32 class JobView(APIView):
33     @swagger_auto_schema(
34         manual_parameters=[
35             openapi.Parameter('responseId',
36                               openapi.IN_QUERY,
37                               "responseId",
38                               type=openapi.TYPE_INTEGER
39                               ),
40         ],
41         responses={
42             status.HTTP_200_OK: JobQueryRespSerializer(),
43             status.HTTP_500_INTERNAL_SERVER_ERROR: "Internal error"
44         }
45     )
46     def get(self, request, job_id):
47         try:
48             response_id = ignore_case_get(request.META, 'responseId')
49             ret = GetJobInfoService(job_id, response_id).do_biz()
50             resp_serializer = JobQueryRespSerializer(data=ret)
51             if not resp_serializer.is_valid():
52                 raise NFLCMException(resp_serializer.errors)
53             return Response(data=resp_serializer.data, status=status.HTTP_200_OK)
54         except Exception as e:
55             logger.error(traceback.format_exc())
56             return Response(data={'error': e.message}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)