Change code to use dmaap microservice
[appc.git] / appc-sdc-listener / appc-sdc-listener-bundle / src / main / java / org / onap / appc / sdc / artifacts / impl / LicenseArtifactProcessor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2019 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  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.appc.sdc.artifacts.impl;
24
25 import org.onap.appc.srvcomm.messaging.event.EventSender;
26 import org.onap.appc.exceptions.APPCException;
27 import org.onap.appc.licmgr.Constants;
28 import com.att.eelf.configuration.EELFLogger;
29 import com.att.eelf.configuration.EELFManager;
30 import org.apache.commons.lang.StringUtils;
31 import org.onap.appc.sdc.artifacts.object.SDCArtifact;
32 import org.onap.sdc.api.IDistributionClient;
33 import org.onap.sdc.api.notification.IArtifactInfo;
34 import org.onap.sdc.api.notification.INotificationData;
35 import org.onap.sdc.api.notification.IResourceInstance;
36
37 import java.net.URI;
38
39 /**
40  * Artifact processor for VNF license artifact type
41  */
42 public class LicenseArtifactProcessor extends AbstractArtifactProcessor {
43
44     private final EELFLogger logger = EELFManager.getInstance().getLogger(LicenseArtifactProcessor.class);
45
46     /**
47      * returns an instance of ConfigArtifactProcessor
48      * @param client an instance of IDistributionClient
49      * @param eventSender an instance of EventSender
50      * @param notification an instance of INotificationData
51      * @param resource an instance of IResourceInstance
52      * @param artifact an instance of IArtifactInfo
53      * @param storeUri an instance of URI
54      */
55     public LicenseArtifactProcessor(IDistributionClient client, EventSender eventSender, INotificationData notification, IResourceInstance resource, IArtifactInfo artifact, URI storeUri) {
56         super(client,eventSender,notification,resource,artifact,storeUri);
57     }
58
59     @Override
60     public void processArtifact(SDCArtifact artifact) throws APPCException {
61
62         String vnfType = artifact.getResourceName();
63         String version = artifact.getResourceVersion();
64         String packageArtifactID = artifact.getArtifactUUID();
65
66         if (StringUtils.isEmpty(vnfType) ||
67                 StringUtils.isEmpty(version) ||
68                 StringUtils.isEmpty(packageArtifactID)) {
69             String errStr = String.format("Missing information in SDC request. Details: resource_type='%s', resource_version='%s', artifactID='%s'", vnfType, version, packageArtifactID);
70             logger.error(errStr);
71             throw new APPCException(errStr);
72         }
73
74         try {
75             SDCArtifact existingArtifact = artifactStorageService.retrieveSDCArtifact(vnfType, version,artifact.getArtifactType());
76
77             if (existingArtifact ==null) { // new resource
78                 logger.debug("Artifact not found from database for vnfType = " + vnfType + " , version = " + version + " , artifactType = " + artifact.getArtifactType());
79                 artifactStorageService.storeSDCArtifact(artifact);
80             } else { // duplicate
81                 logger.debug("Artifact retrieved from database = " + existingArtifact);
82                 logger.warn(String.format("Artifact of type '%s' already deployed for resource_type='%s' and resource_version='%s'", Constants.VF_LICENSE, vnfType, version));
83             }
84
85         } catch (Exception e) {
86             logger.error("Error processing artifact : " + artifact.toString(),e);
87             throw new APPCException(e.getMessage(),e);
88         }
89     }
90 }