042ae818315dcd88f6d1fab66669c12f5887d329
[vfc/nfvo/lcm.git] / lcm / ns / views / deprecated / inst_ns_view.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
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_instant import InstantNSService
22 from lcm.ns.serializers.deprecated.ns_serializers import _NsOperateJobSerializer
23 from lcm.ns.serializers.deprecated.ns_serializers import _InstantNsReqSerializer
24 from lcm.pub.exceptions import BadRequestException
25 from .common import view_safe_call_with_log
26
27 logger = logging.getLogger(__name__)
28
29
30 class NSInstView(APIView):
31     @swagger_auto_schema(
32         request_body=_InstantNsReqSerializer(),
33         responses={
34             status.HTTP_200_OK: _NsOperateJobSerializer(),
35             status.HTTP_400_BAD_REQUEST: "Bad Request",
36             status.HTTP_500_INTERNAL_SERVER_ERROR: "Inner error"
37         }
38     )
39     @view_safe_call_with_log(logger=logger)
40     def post(self, request, ns_instance_id):
41         """
42         Instantiate a NS
43         :param request:
44         :param ns_instance_id:
45         :return:
46         """
47         logger.debug("Enter NSInstView::post::ns_instance_id=%s", ns_instance_id)
48         logger.debug("request.data=%s", request.data)
49         req_serializer = _InstantNsReqSerializer(data=request.data)
50         if not req_serializer.is_valid():
51             logger.debug("request.data is not valid,error: %s" % req_serializer.errors)
52             raise BadRequestException(req_serializer.errors)
53
54         ack = InstantNSService(ns_instance_id, request.data).do_biz()
55         logger.debug("Leave NSInstView::post::ack=%s", ack)
56         return Response(data=ack['data'], status=ack['status'])