Merging in bug fixes
[appc.git] / appc-asdc-listener / appc-asdc-listener-bundle / src / main / java / org / openecomp / appc / sdc / artifacts / impl / LicenseArtifactProcessor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.sdc.artifacts.impl;
26
27 import org.openecomp.appc.adapter.message.EventSender;
28 import org.openecomp.appc.exceptions.APPCException;
29 import org.openecomp.appc.licmgr.Constants;
30 import com.att.eelf.configuration.EELFLogger;
31 import com.att.eelf.configuration.EELFManager;
32 import org.apache.commons.lang.StringUtils;
33 import org.openecomp.appc.sdc.artifacts.object.SDCArtifact;
34 import org.openecomp.sdc.api.IDistributionClient;
35 import org.openecomp.sdc.api.notification.IArtifactInfo;
36 import org.openecomp.sdc.api.notification.INotificationData;
37 import org.openecomp.sdc.api.notification.IResourceInstance;
38
39 import java.net.URI;
40
41 /**
42  * Artifact processor for VNF license artifact type
43  */
44 public class LicenseArtifactProcessor extends AbstractArtifactProcessor {
45
46     private final EELFLogger logger = EELFManager.getInstance().getLogger(LicenseArtifactProcessor.class);
47
48     /**
49      * returns an instance of ConfigArtifactProcessor
50      * @param client an instance of IDistributionClient
51      * @param eventSender an instance of EventSender
52      * @param notification an instance of INotificationData
53      * @param resource an instance of IResourceInstance
54      * @param artifact an instance of IArtifactInfo
55      * @param storeUri an instance of URI
56      */
57     public LicenseArtifactProcessor(IDistributionClient client, EventSender eventSender, INotificationData notification, IResourceInstance resource, IArtifactInfo artifact, URI storeUri) {
58         super(client,eventSender,notification,resource,artifact,storeUri);
59     }
60
61     @Override
62     public void processArtifact(SDCArtifact artifact) throws APPCException {
63
64         String vnfType = artifact.getResourceName();
65         String version = artifact.getResourceVersion();
66         String packageArtifactID = artifact.getArtifactUUID();
67
68         if (StringUtils.isEmpty(vnfType) ||
69                 StringUtils.isEmpty(version) ||
70                 StringUtils.isEmpty(packageArtifactID)) {
71             String errStr = String.format("Missing information in ASDC request. Details: resource_type='%s', resource_version='%s', artifactID='%s'", vnfType, version, packageArtifactID);
72             logger.error(errStr);
73             throw new APPCException(errStr);
74         }
75
76         try {
77             SDCArtifact existingArtifact = artifactStorageService.retrieveSDCArtifact(vnfType, version,artifact.getArtifactType());
78
79             if (existingArtifact ==null) { // new resource
80                 logger.debug("Artifact not found from database for vnfType = " + vnfType + " , version = " + version + " , artifactType = " + artifact.getArtifactType());
81                 artifactStorageService.storeASDCArtifact(artifact);
82             } else { // duplicate
83                 logger.debug("Artifact retrieved from database = " + existingArtifact);
84                 logger.warn(String.format("Artifact of type '%s' already deployed for resource_type='%s' and resource_version='%s'", Constants.VF_LICENSE, vnfType, version));
85             }
86
87         } catch (Exception e) {
88             logger.error("Error processing artifact : " + artifact.toString(),e);
89             throw new APPCException(e.getMessage(),e);
90         }
91     }
92 }