Initial commit for AAI-UI(sparky-backend)
[aai/sparky-be.git] / src / main / java / org / openecomp / sparky / synchronizer / task / PerformElasticSearchPut.java
1 /**
2  * ============LICENSE_START===================================================
3  * SPARKY (AAI UI service)
4  * ============================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
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  * ECOMP and OpenECOMP are trademarks
23  * and service marks of AT&T Intellectual Property.
24  */
25
26 package org.openecomp.sparky.synchronizer.task;
27
28 import java.util.Map;
29 import java.util.function.Supplier;
30
31 import org.openecomp.sparky.dal.NetworkTransaction;
32 import org.openecomp.sparky.dal.rest.OperationResult;
33 import org.openecomp.sparky.dal.rest.RestDataProvider;
34 import org.slf4j.MDC;
35
36 /**
37  * The Class PerformElasticSearchPut.
38  */
39 public class PerformElasticSearchPut implements Supplier<NetworkTransaction> {
40
41   private RestDataProvider restDataProvider;
42   private String jsonPayload;
43   private NetworkTransaction txn;
44   private Map<String, String> contextMap;
45
46   /**
47    * Instantiates a new perform elastic search put.
48    *
49    * @param jsonPayload the json payload
50    * @param txn the txn
51    * @param restDataProvider the rest data provider
52    */
53   public PerformElasticSearchPut(String jsonPayload, NetworkTransaction txn,
54       RestDataProvider restDataProvider) {
55     this.jsonPayload = jsonPayload;
56     this.txn = txn;
57     this.restDataProvider = restDataProvider;
58     this.contextMap = MDC.getCopyOfContextMap();
59   }
60   
61   public PerformElasticSearchPut(String jsonPayload, NetworkTransaction txn,
62       RestDataProvider restDataProvider, Map<String, String> contextMap) {
63     this.jsonPayload = jsonPayload;
64     this.txn = txn;
65     this.restDataProvider = restDataProvider;
66     this.contextMap = contextMap;
67   }
68
69   /* (non-Javadoc)
70    * @see java.util.function.Supplier#get()
71    */
72   @Override
73   public NetworkTransaction get() {
74     txn.setTaskAgeInMs();
75     long startTimeInMs = System.currentTimeMillis();
76     MDC.setContextMap(contextMap);
77     
78     OperationResult or = restDataProvider.doPut(txn.getLink(), jsonPayload, "application/json");
79
80     or.setResponseTimeInMs(System.currentTimeMillis() - startTimeInMs);
81     txn.setOperationResult(or);
82
83     return txn;
84   }
85 }