Merge of new rebased code
[appc.git] / appc-dispatcher / appc-license-manager / appc-license-manager-core / src / main / java / org / openecomp / appc / licmgr / impl / LicenseManagerImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.licmgr.impl;
23
24 import static org.openecomp.appc.licmgr.Constants.ASDC_ARTIFACTS_FIELDS.ARTIFACT_CONTENT;
25
26 import java.util.Map;
27
28 import org.openecomp.appc.licmgr.LicenseDataAccessService;
29 import org.openecomp.appc.licmgr.LicenseManager;
30 import org.openecomp.appc.licmgr.exception.DataAccessException;
31 import org.openecomp.appc.licmgr.objects.LicenseModel;
32
33
34 @SuppressWarnings("all")
35 public class LicenseManagerImpl implements LicenseManager {
36
37     private LicenseDataAccessService DAService;
38
39     public void setDAService(LicenseDataAccessService daSrv){
40         DAService = daSrv;
41     }
42
43     public LicenseManagerImpl() {
44     }
45
46     @Override
47     public LicenseModel retrieveLicenseModel(String vnfType, String vnfVersion) throws DataAccessException {
48
49         LicenseModel licenseModel;
50         try {
51             Map<String,String> resultMap = DAService.retrieveLicenseModelData(vnfType, vnfVersion);
52             if (resultMap.isEmpty()) {
53                 throw new DataAccessException(String.format("License model not found for vnfType='%s' and vnfVersion='%s'", vnfType, vnfVersion));
54             }
55             String licenseModelXML = resultMap.get(ARTIFACT_CONTENT.name());
56             licenseModel = convert(licenseModelXML);  // JAXBUtil.<VfLicenseModel>toObject(licenseModelXML, VfLicenseModel.class);
57         } catch (DataAccessException le) {
58             throw le;
59         } catch (Exception e) {
60             throw new DataAccessException(e);
61         }
62         return licenseModel;
63     }
64
65     @Override
66     public Map<String, String> retrieveLicenseModelData(String vnfType, String vnfVersion, String... fields)  throws DataAccessException {
67
68         Map<String,String> resultMap = DAService.retrieveLicenseModelData(vnfType, vnfVersion, fields);
69         return resultMap;
70     }
71
72     @Override
73     public void storeArtifactPayload(Map<String, String> parameters) throws RuntimeException {
74
75         DAService.storeArtifactPayload(parameters);
76     }
77
78     private static LicenseModel convert(String xml) {
79
80         LicenseModel licenseModel = new LicenseModel();
81
82         int posEntitlementStart = xml.indexOf("<entitlement-pool-uuid>");
83         int posEntitlementEnd = xml.indexOf("</entitlement-pool-uuid>", posEntitlementStart);
84         if (-1 != posEntitlementStart) {
85             licenseModel.setEntitlementPoolUuid(xml.substring(posEntitlementStart + "<entitlement-pool-uuid>".length(), posEntitlementEnd));
86         }
87
88         int posLicenseStart = xml.indexOf("<license-key-group-uuid>");
89         int posLicenseEnd = xml.indexOf("</license-key-group-uuid>", posEntitlementStart);
90         if (-1 != posLicenseStart) {
91             licenseModel.setLicenseKeyGroupUuid(xml.substring(posLicenseStart + "<license-key-group-uuid>".length(), posLicenseEnd));
92         }
93
94         return licenseModel;
95     }
96
97 }