Initial commit for AAI-UI(sparky-backend)
[aai/sparky-be.git] / src / main / java / org / openecomp / sparky / viewandinspect / task / PerformNodeSelfLinkProcessingTask.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.viewandinspect.task;
27
28 import java.util.Map;
29 import java.util.function.Supplier;
30
31 import org.openecomp.cl.api.Logger;
32 import org.openecomp.cl.eelf.LoggerFactory;
33 import org.openecomp.sparky.dal.aai.ActiveInventoryDataProvider;
34 import org.openecomp.sparky.dal.aai.config.ActiveInventoryConfig;
35 import org.openecomp.sparky.dal.rest.OperationResult;
36 import org.openecomp.sparky.logging.AaiUiMsgs;
37 import org.openecomp.sparky.viewandinspect.entity.NodeProcessingTransaction;
38 import org.slf4j.MDC;
39
40 /**
41  * The Class PerformNodeSelfLinkProcessingTask.
42  */
43 public class PerformNodeSelfLinkProcessingTask implements Supplier<NodeProcessingTransaction> {
44
45   private static final Logger logger =
46       LoggerFactory.getInstance().getLogger(PerformNodeSelfLinkProcessingTask.class);
47
48   private NodeProcessingTransaction txn;
49   private ActiveInventoryDataProvider aaiProvider;
50   private Map<String, String> contextMap;
51
52   /**
53    * Instantiates a new perform node self link processing task.
54    *
55    * @param txn the txn
56    * @param requestParameters the request parameters
57    * @param aaiProvider the aai provider
58    */
59   public PerformNodeSelfLinkProcessingTask(NodeProcessingTransaction txn, String requestParameters,
60       ActiveInventoryDataProvider aaiProvider) {
61     this.aaiProvider = aaiProvider;
62     this.txn = txn;
63     this.contextMap = MDC.getCopyOfContextMap();
64   }
65
66   /* (non-Javadoc)
67    * @see java.util.function.Supplier#get()
68    */
69   @Override
70   public NodeProcessingTransaction get() {
71     MDC.setContextMap(contextMap);
72     String link = txn.getSelfLinkWithModifiers();
73
74     if (link == null) {
75       OperationResult opResult = new OperationResult();
76       opResult.setResult(500, "Aborting self-link processing because self link is null");
77       txn.setOpResult(opResult);
78       return txn;
79     }
80
81     if (logger.isDebugEnabled()) {
82       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Collecting " + link);
83     }
84
85     OperationResult opResult = null;
86     try {
87       opResult = aaiProvider.queryActiveInventoryWithRetries(link, "application/json",
88           ActiveInventoryConfig.getConfig().getAaiRestConfig().getNumRequestRetries());
89     } catch (Exception exc) {
90       opResult = new OperationResult();
91       opResult.setResult(500, "Querying AAI with retry failed due to an exception.");
92       logger.error(AaiUiMsgs.ERROR_AAI_QUERY_WITH_RETRY, exc.getMessage());
93     }
94
95     if (logger.isDebugEnabled()) {
96       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Operation result = " + opResult.toString());
97     }
98
99     txn.setOpResult(opResult);
100     return txn;
101
102   }
103
104 }