9968314b1554d154e931bef9596c054b11db2ffd
[vfc/nfvo/lcm.git] / lcm / ns / views / sol / scale_ns_views.py
1 # Copyright 2016 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 from lcm.ns.biz.ns_manual_scale import NSManualScaleService
21 from lcm.ns.serializers.sol.scale_ns_serializers import ScaleNsRequestSerializer
22 from lcm.pub.utils.jobutil import JobUtil
23 from lcm.jobs.enum import JOB_TYPE, JOB_ACTION
24 from lcm.ns.const import NS_OCC_BASE_URI
25 from lcm.pub.exceptions import BadRequestException
26 from lcm.ns.serializers.sol.pub_serializers import ProblemDetailsSerializer
27 from .common import view_safe_call_with_log
28
29 logger = logging.getLogger(__name__)
30
31
32 class ScaleNSView(APIView):
33     @swagger_auto_schema(
34         request_body=ScaleNsRequestSerializer(help_text="NS Scale"),
35         responses={
36             status.HTTP_202_ACCEPTED: "HTTP_202_ACCEPTED",
37             status.HTTP_500_INTERNAL_SERVER_ERROR: ProblemDetailsSerializer()
38         }
39     )
40     @view_safe_call_with_log(logger=logger)
41     def post(self, request, ns_instance_id):
42         logger.debug("Enter ScaleNSView::post %s, %s", request.data, ns_instance_id)
43
44         req_serializer = ScaleNsRequestSerializer(data=request.data)
45         if not req_serializer.is_valid():
46             raise BadRequestException(req_serializer.errors)
47
48         job_id = JobUtil.create_job(JOB_TYPE.NS, JOB_ACTION.MANUAL_SCALE, ns_instance_id)
49
50         nsManualScaleService = NSManualScaleService(ns_instance_id, request.data, job_id)
51         nsManualScaleService.start()
52         response = Response(data={}, status=status.HTTP_202_ACCEPTED)
53         logger.debug("Location: %s" % nsManualScaleService.occ_id)
54         response["Location"] = NS_OCC_BASE_URI % nsManualScaleService.occ_id
55         logger.debug("Leave ScaleNSView")
56         return response