add license
[vfc/nfvo/lcm.git] / lcm / ns / views / update_ns_view.py
1 # Copyright (c) 2018, CMCC Technologies Co., Ltd.
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
17 from rest_framework import status
18 from rest_framework.response import Response
19 from rest_framework.views import APIView
20 from drf_yasg.utils import swagger_auto_schema
21 from lcm.ns.biz.ns_update import NSUpdateService
22 from lcm.ns.serializers.pub_serializers import NsOperateJobSerializer
23 from lcm.ns.serializers.update_serializers import UpdateNsReqSerializer
24 from lcm.pub.exceptions import NSLCMException
25 from lcm.pub.utils.jobutil import JobUtil, JOB_TYPE
26
27 logger = logging.getLogger(__name__)
28
29
30 class NSUpdateView(APIView):
31     @swagger_auto_schema(
32         request_body=UpdateNsReqSerializer(),
33         responses={
34             status.HTTP_202_ACCEPTED: NsOperateJobSerializer(),
35             status.HTTP_500_INTERNAL_SERVER_ERROR: "Inner error"
36         }
37     )
38     def post(self, request, ns_instance_id):
39         try:
40             logger.debug("Enter UpdateNSView::post %s, %s", request.data, ns_instance_id)
41             req_serializer = UpdateNsReqSerializer(data=request.data)
42             if not req_serializer.is_valid():
43                 raise NSLCMException(req_serializer.errors)
44
45             job_id = JobUtil.create_job("NS", JOB_TYPE.UPDATE_NS, ns_instance_id)
46             NSUpdateService(ns_instance_id, request.data, job_id).start()
47
48             resp_serializer = NsOperateJobSerializer(data={'jobId': job_id})
49             if not resp_serializer.is_valid():
50                 raise NSLCMException(resp_serializer.errors)
51
52             logger.debug("Leave UpdateNSView::post ret=%s", resp_serializer.data)
53             return Response(data=resp_serializer.data, status=status.HTTP_202_ACCEPTED)
54         except Exception as e:
55             logger.error("Exception in UpdateNSView: %s", e.message)
56             return Response(data={'error': e.message}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)