b9eedc4663c1188d160f24d75c485dd2fa0427fd
[appc.git] /
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.onap.appc.sdc.artifacts.impl;
26
27 import org.apache.commons.lang.StringUtils;
28 import org.onap.appc.adapter.message.EventSender;
29 import org.onap.appc.sdc.listener.ProviderOperations;
30 import org.onap.appc.sdc.listener.ProviderResponse;
31 import org.onap.appc.sdc.listener.Util;
32 import org.onap.appc.exceptions.APPCException;
33 import com.att.eelf.configuration.EELFLogger;
34 import com.att.eelf.configuration.EELFManager;
35 import org.onap.appc.sdc.artifacts.object.SDCArtifact;
36 import org.openecomp.sdc.api.IDistributionClient;
37 import org.openecomp.sdc.api.notification.IArtifactInfo;
38 import org.openecomp.sdc.api.notification.INotificationData;
39 import org.openecomp.sdc.api.notification.IResourceInstance;
40
41 import java.net.MalformedURLException;
42 import java.net.URI;
43
44 /**
45  * Artifact processor for config artifact type
46  */
47 public class ConfigArtifactProcessor extends AbstractArtifactProcessor {
48
49     private final EELFLogger logger = EELFManager.getInstance().getLogger(ConfigArtifactProcessor.class);
50
51     /**
52      * returns an instance of ConfigArtifactProcessor
53      * @param client an instance of IDistributionClient
54      * @param eventSender an instance of EventSender
55      * @param notification an instance of INotificationData
56      * @param resource an instance of IResourceInstance
57      * @param artifact an instance of IArtifactInfo
58      * @param storeUri an instance of URI
59      */
60     public ConfigArtifactProcessor(IDistributionClient client, EventSender eventSender, INotificationData notification, IResourceInstance resource, IArtifactInfo artifact, URI storeUri) {
61         super(client,eventSender,notification,resource,artifact,storeUri);
62     }
63
64     @Override
65     public void processArtifact(SDCArtifact artifact) throws APPCException {
66         String postData = Util.toSdcStoreDocumentInput(notification, resource, super.artifact, artifact.getArtifactContent());
67         logger.debug("ConfigArtifactProcessor::processArtifact::postData="+postData);
68         try {
69             ProviderOperations providerOperations = new ProviderOperations();
70             if (null != storeUri)
71                logger.debug("ConfigArtifactProcessor::processArtifact::URI is"+storeUri.toString());
72             ProviderResponse result = providerOperations.post(storeUri.toURL(), postData, null);
73             if (result.getStatus() == 200) {
74                 logger.debug("ConfigArtifactProcessor::processArtifact::post request success!!");
75                 Util.parseResponse(result.getBody());
76             }
77             else {
78                 logger.debug("ConfigArtifactProcessor::processArtifact()::post request failed!! Returned :"
79                     +result.getStatus()+"-Result body- "+result.getBody());
80                 throw new APPCException("ConfigArtifactProcessor::processArtifact: Invalid status retrurned from post "+result.getStatus());
81             }
82         } catch (MalformedURLException | APPCException e) {
83             logger.error("Error processing artifact : " + this.artifact.toString(),e);
84             throw new APPCException(e.getMessage(),e);
85         }
86     }
87 }