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