New policies and required code changes
[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
19
20 def license_optim(request_json):
21     """
22     Fetch license artifacts associated with the service model and search licensekey-group-UUID and entitlement-pool-uuid
23     associated with the given att part number and nominal throughput in a request
24     :param request_json: Request in a JSON format
25     :return: A tuple of licensekey-group-uuid-list and entitlement-group-uuid-list
26     """
27     req_id = request_json["requestInfo"]["requestId"]
28
29     model_name = request_json.get('placementInfo', {}).get('serviceInfo', {}).get('modelInfo', {}).get('modelName')
30     service_name = model_name
31
32     license_info = []
33
34     for licenseDemand in request_json.get('placementInfo', {}).get('demandInfo', {}).get('licenseDemands', []):
35         license_info.append(
36             {'serviceResourceId': licenseDemand['serviceResourceId'],
37              'resourceModuleName': licenseDemand['resourceModuleName'],
38              'entitlementPoolList': "NOT SUPPORTED",
39              'licenseKeyGroupList': "NOT SUPPORTED"
40              })
41     return license_info