seperate sol and deprecated api
[vfc/nfvo/lcm.git] / lcm / ns / views / sol / scale_ns_views.py
1 # Copyright 2016-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 import logging
15 import traceback
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_manual_scale import NSManualScaleService
23 from lcm.ns.serializers.sol.pub_serializers import NsOperateJobSerializer
24 from lcm.ns.serializers.sol.scale_ns_serializers import ManualScaleNsReqSerializer
25 from lcm.pub.exceptions import NSLCMException
26 from lcm.pub.utils.jobutil import JobUtil, JOB_TYPE
27
28 logger = logging.getLogger(__name__)
29
30
31 class NSManualScaleView(APIView):
32     @swagger_auto_schema(
33         request_body=ManualScaleNsReqSerializer(help_text="NS manual scale"),
34         responses={
35             status.HTTP_202_ACCEPTED: NsOperateJobSerializer(),
36             status.HTTP_500_INTERNAL_SERVER_ERROR: "Inner error"
37         }
38     )
39     def post(self, request, ns_instance_id):
40         logger.debug("Enter NSManualScaleView::post %s, %s", request.data, ns_instance_id)
41         job_id = JobUtil.create_job("NS", JOB_TYPE.MANUAL_SCALE_VNF, ns_instance_id)
42         try:
43             req_serializer = ManualScaleNsReqSerializer(data=request.data)
44             if not req_serializer.is_valid():
45                 raise NSLCMException(req_serializer.errors)
46
47             NSManualScaleService(ns_instance_id, request.data, job_id).start()
48
49             resp_serializer = NsOperateJobSerializer(data={'jobId': job_id})
50             if not resp_serializer.is_valid():
51                 raise NSLCMException(resp_serializer.errors)
52
53             return Response(data=resp_serializer.data, status=status.HTTP_202_ACCEPTED)
54         except Exception as e:
55             logger.error(traceback.format_exc())
56             JobUtil.add_job_status(job_id, 255, 'NS scale failed: %s' % e.message)
57             return Response(data={'error': 'NS scale failed: %s' % ns_instance_id},
58                             status=status.HTTP_500_INTERNAL_SERVER_ERROR)