update link to upper-constraints.txt
[vfc/nfvo/lcm.git] / lcm / ns / views / sol / 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 drf_yasg.utils import swagger_auto_schema
18 from rest_framework import status
19 from rest_framework.response import Response
20 from rest_framework.views import APIView
21
22 from lcm.ns.biz.ns_update import NSUpdateService
23 from lcm.ns.serializers.sol.update_serializers import UpdateNsReqSerializer
24 from lcm.pub.exceptions import BadRequestException
25 from lcm.pub.utils.jobutil import JobUtil
26 from lcm.jobs.enum import JOB_TYPE, JOB_ACTION
27 from lcm.ns.const import NS_OCC_BASE_URI
28 from lcm.ns.serializers.sol.pub_serializers import ProblemDetailsSerializer
29 from .common import view_safe_call_with_log
30
31 logger = logging.getLogger(__name__)
32
33
34 class UpdateNSView(APIView):
35     """
36     This task resource represents the "Update NS" operation.
37     The client can use this resource to update a NS instance.
38     """
39     @swagger_auto_schema(
40         request_body=UpdateNsReqSerializer(),
41         responses={
42             status.HTTP_202_ACCEPTED: "HTTP_202_ACCEPTED",
43             status.HTTP_500_INTERNAL_SERVER_ERROR: ProblemDetailsSerializer()
44         }
45     )
46     @view_safe_call_with_log(logger=logger)
47     def post(self, request, ns_instance_id):
48         """
49         The POST method requests to update a NS instance resource.
50         :param request:
51         :param ns_instance_id:
52         :return:
53         """
54         job_id = JobUtil.create_job(JOB_TYPE.NS, JOB_ACTION.UPDATE, ns_instance_id)
55
56         logger.debug("Enter UpdateNSView::post %s, %s", request.data, ns_instance_id)
57         req_serializer = UpdateNsReqSerializer(data=request.data)
58         if not req_serializer.is_valid():
59             logger.debug("request.data is not valid,error: %s" % req_serializer.errors)
60             raise BadRequestException(req_serializer.errors)
61         ns_update_service = NSUpdateService(ns_instance_id, request.data, job_id)
62         ns_update_service.start()
63         response = Response(data={}, status=status.HTTP_202_ACCEPTED)
64         logger.debug("Location: %s" % ns_update_service.occ_id)
65         response["Location"] = NS_OCC_BASE_URI % ns_update_service.occ_id
66         logger.debug("Leave UpdateNSView")
67         return response