Merge "Unique field moved to vnf policy"
[optf/osdf.git] / osdf / optimizers / licenseopt / simple_license_allocation.py
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2015-2017 AT&T Intellectual Property
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17 #
18 from osdf.utils.mdc_utils import mdc_from_json
19
20
21 def license_optim(request_json):
22     """
23     Fetch license artifacts associated with the service model and search licensekey-group-UUID and entitlement-pool-uuid
24     associated with the given att part number and nominal throughput in a request
25     :param request_json: Request in a JSON format
26     :return: A tuple of licensekey-group-uuid-list and entitlement-group-uuid-list
27     """
28     mdc_from_json(request_json)
29     req_id = request_json["requestInfo"]["requestId"]
30
31     model_name = request_json.get('placementInfo', {}).get('serviceInfo', {}).get('modelInfo', {}).get('modelName')
32     service_name = model_name
33
34     license_info = []
35
36     for demand in request_json.get('placementInfo', {}).get('demandInfo', {}).get('licenseDemands', []):
37         license_info.append(
38             {'serviceResourceId': demand['serviceResourceId'],
39              'resourceModuleName': demand['resourceModuleName'],
40              'entitlementPoolList': "NOT SUPPORTED",
41              'licenseKeyGroupList': "NOT SUPPORTED"
42              })
43     return license_info