3baca3574d780cf32d627798c6263235a8a6297c
[appc.git] / appc-sdc-listener / appc-sdc-listener-bundle / src / main / java / org / openecomp / appc / sdc / artifacts / impl / ConfigArtifactProcessor.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.sdc.listener.ProviderOperations;
29 import org.openecomp.appc.sdc.listener.ProviderResponse;
30 import org.openecomp.appc.sdc.listener.Util;
31 import org.openecomp.appc.exceptions.APPCException;
32 import com.att.eelf.configuration.EELFLogger;
33 import com.att.eelf.configuration.EELFManager;
34 import org.openecomp.appc.sdc.artifacts.object.SDCArtifact;
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
40 import java.net.MalformedURLException;
41 import java.net.URI;
42
43 /**
44  * Artifact processor for config artifact type
45  */
46 public class ConfigArtifactProcessor extends AbstractArtifactProcessor {
47
48     private final EELFLogger logger = EELFManager.getInstance().getLogger(ConfigArtifactProcessor.class);
49
50     /**
51      * returns an instance of ConfigArtifactProcessor
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, IResourceInstance resource, IArtifactInfo artifact, URI storeUri) {
60         super(client,eventSender,notification,resource,artifact,storeUri);
61     }
62
63     @Override
64     public void processArtifact(SDCArtifact artifact) throws APPCException {
65         String postData = Util.toSdcStoreDocumentInput(notification, resource, super.artifact, artifact.getArtifactContent());
66         try {
67             ProviderResponse result = ProviderOperations.post(storeUri.toURL(), postData, null);
68             if (result.getStatus() == 200) {
69                 Util.parseResponse(result.getBody());
70             }
71         } catch (MalformedURLException | APPCException e) {
72             logger.error("Error processing artifact : " + this.artifact.toString(),e);
73             throw new APPCException(e.getMessage(),e);
74         }
75     }
76 }