add comments
[vfc/nfvo/lcm.git] / lcm / ns / views / deprecated / scale_ns_views.py
1 # Copyright 2019 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 import logging
15
16 from drf_yasg.utils import swagger_auto_schema
17 from rest_framework import status
18 from rest_framework.response import Response
19 from rest_framework.views import APIView
20
21 from lcm.ns.biz.ns_manual_scale import NSManualScaleService
22 from lcm.ns.serializers.deprecated.ns_serializers import _NsOperateJobSerializer
23 from lcm.ns.serializers.deprecated.ns_serializers import _ManualScaleNsReqSerializer
24 from lcm.pub.exceptions import NSLCMException
25 from lcm.pub.exceptions import BadRequestException
26 from lcm.pub.utils.jobutil import JobUtil
27 from lcm.jobs.enum import JOB_TYPE, JOB_ACTION
28 from .common import view_safe_call_with_log
29
30 logger = logging.getLogger(__name__)
31
32
33 class NSManualScaleView(APIView):
34     @swagger_auto_schema(
35         request_body=_ManualScaleNsReqSerializer(help_text="NS manual scale"),
36         responses={
37             status.HTTP_202_ACCEPTED: _NsOperateJobSerializer(),
38             status.HTTP_500_INTERNAL_SERVER_ERROR: "Inner error"
39         }
40     )
41     @view_safe_call_with_log(logger=logger)
42     def post(self, request, ns_instance_id):
43         """
44         Scale a NS instance
45         :param request:
46         :param ns_instance_id:
47         :return:
48         """
49         logger.debug("Enter NSManualScaleView::post %s, %s", request.data, ns_instance_id)
50         req_serializer = _ManualScaleNsReqSerializer(data=request.data)
51         if not req_serializer.is_valid():
52             raise BadRequestException(req_serializer.errors)
53
54         req = request.data
55         scale_data = {}
56         scale_data['scaleType'] = req['scaleType']
57         scaleNsData = req['scaleNsData'][0]
58         scale_data['scaleNsData'] = {
59             "scaleNsByStepsData": scaleNsData['scaleNsByStepsData'][0]
60         }
61         job_id = JobUtil.create_job(
62             JOB_TYPE.NS,
63             JOB_ACTION.MANUAL_SCALE,
64             ns_instance_id
65         )
66         NSManualScaleService(ns_instance_id, scale_data, job_id).start()
67
68         resp_serializer = _NsOperateJobSerializer(data={'jobId': job_id})
69         if not resp_serializer.is_valid():
70             raise NSLCMException(resp_serializer.errors)
71
72         return Response(data={'jobId': job_id}, status=status.HTTP_202_ACCEPTED)