Changing the license and trademark
[aai/sparky-be.git] / src / main / java / org / openecomp / sparky / viewandinspect / task / PerformNodeSelfLinkProcessingTask.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.openecomp.sparky.viewandinspect.task;
24
25 import java.util.Map;
26 import java.util.function.Supplier;
27
28 import org.openecomp.cl.api.Logger;
29 import org.openecomp.cl.eelf.LoggerFactory;
30 import org.openecomp.sparky.dal.aai.ActiveInventoryDataProvider;
31 import org.openecomp.sparky.dal.aai.config.ActiveInventoryConfig;
32 import org.openecomp.sparky.dal.rest.OperationResult;
33 import org.openecomp.sparky.logging.AaiUiMsgs;
34 import org.openecomp.sparky.viewandinspect.entity.NodeProcessingTransaction;
35 import org.slf4j.MDC;
36
37 /**
38  * The Class PerformNodeSelfLinkProcessingTask.
39  */
40 public class PerformNodeSelfLinkProcessingTask implements Supplier<NodeProcessingTransaction> {
41
42   private static final Logger logger =
43       LoggerFactory.getInstance().getLogger(PerformNodeSelfLinkProcessingTask.class);
44
45   private NodeProcessingTransaction txn;
46   private ActiveInventoryDataProvider aaiProvider;
47   private Map<String, String> contextMap;
48   private ActiveInventoryConfig aaiConfig;
49
50   /**
51    * Instantiates a new perform node self link processing task.
52    *
53    * @param txn the txn
54    * @param requestParameters the request parameters
55    * @param aaiProvider the aai provider
56    */
57   public PerformNodeSelfLinkProcessingTask(NodeProcessingTransaction txn, String requestParameters,
58       ActiveInventoryDataProvider aaiProvider, ActiveInventoryConfig aaiConfig) {
59     this.aaiProvider = aaiProvider;
60     this.txn = txn;
61     this.contextMap = MDC.getCopyOfContextMap();
62     this.aaiConfig = aaiConfig;
63   }
64
65   /* (non-Javadoc)
66    * @see java.util.function.Supplier#get()
67    */
68   @Override
69   public NodeProcessingTransaction get() {
70     MDC.setContextMap(contextMap);
71     OperationResult opResult = new OperationResult();
72     String link = txn.getSelfLink();
73     if (link == null) {
74       opResult.setResult(500, "Aborting self-link processing because self link is null");
75       txn.setOpResult(opResult);
76       return txn;
77     }
78
79     if (logger.isDebugEnabled()) {
80       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Collecting " + link);
81     }
82
83     try {
84       opResult = aaiProvider.queryActiveInventoryWithRetries(link, "application/json",
85           ActiveInventoryConfig.getConfig().getAaiRestConfig().getNumRequestRetries());
86     } catch (Exception exc) {
87       opResult = new OperationResult();
88       opResult.setResult(500, "Querying AAI with retry failed due to an exception.");
89       logger.error(AaiUiMsgs.ERROR_AAI_QUERY_WITH_RETRY, exc.getMessage());
90     }
91
92     if (logger.isDebugEnabled()) {
93       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Operation result = " + opResult.toString());
94     }
95
96     txn.setOpResult(opResult);
97     return txn;
98
99   }
100
101 }