Convert Sparky to Spring-Boot
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / sync / task / StoreDocumentTask.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 package org.onap.aai.sparky.sync.task;
26
27 import java.util.Map;
28 import java.util.function.Supplier;
29
30 import javax.ws.rs.core.MediaType;
31
32 import org.onap.aai.restclient.client.OperationResult;
33 import org.onap.aai.sparky.dal.ElasticSearchAdapter;
34 import org.onap.aai.sparky.dal.NetworkTransaction;
35 import org.onap.aai.sparky.sync.entity.IndexDocument;
36 import org.slf4j.MDC;
37
38 /**
39  * The Class StoreDocumentTask.
40  */
41 public class StoreDocumentTask implements Supplier<NetworkTransaction> {
42
43   private IndexDocument doc;
44
45   private NetworkTransaction txn;
46
47   private ElasticSearchAdapter esAdapter;
48   private Map<String, String> contextMap;
49
50   /**
51    * Instantiates a new store document task.
52    *
53    * @param doc the doc
54    * @param txn the txn
55    * @param esDataProvider the es data provider
56    */
57   public StoreDocumentTask(IndexDocument doc, NetworkTransaction txn,
58       ElasticSearchAdapter esAdapter) {
59     this.doc = doc;
60     this.txn = txn;
61     this.esAdapter = esAdapter;
62     this.contextMap = MDC.getCopyOfContextMap();
63   }
64
65   /* (non-Javadoc)
66    * @see java.util.function.Supplier#get()
67    */
68   @Override
69   public NetworkTransaction get() {
70     txn.setTaskAgeInMs();
71
72     long startTimeInMs = System.currentTimeMillis();
73     MDC.setContextMap(contextMap);
74     OperationResult operationResult = null;
75
76     try {
77
78       operationResult =
79           esAdapter.doPut(txn.getLink(), doc.getAsJson(), MediaType.APPLICATION_JSON_TYPE);
80       txn.setOpTimeInMs(System.currentTimeMillis() - startTimeInMs);
81     } catch (Exception exception) {
82       operationResult.setResult(500, exception.getMessage());
83     }
84
85     txn.setOperationResult(operationResult);
86
87     return txn;
88   }
89
90 }