Merge "Fix Blocker/Critical sonar issues"
[aai/sparky-be.git] / src / main / java / org / onap / aai / 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.onap.aai.sparky.viewandinspect.task;
24
25 import java.util.Map;
26 import java.util.function.Supplier;
27
28 import org.onap.aai.sparky.dal.aai.ActiveInventoryDataProvider;
29 import org.onap.aai.sparky.dal.aai.config.ActiveInventoryConfig;
30 import org.onap.aai.sparky.dal.rest.OperationResult;
31 import org.onap.aai.sparky.logging.AaiUiMsgs;
32 import org.onap.aai.sparky.viewandinspect.entity.NodeProcessingTransaction;
33 import org.onap.aai.cl.api.Logger;
34 import org.onap.aai.cl.eelf.LoggerFactory;
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      * Rebuild the self link:
80      *  
81      * <li>build the base url with the configured scheme + authority (server:port)
82      * <li>recombine baseUrl + originalEncodedLink + queryStringParameters
83      * 
84      */
85
86     final String urlSchemeAndAuthority = aaiConfig.repairSelfLink("");
87
88     String parameters = txn.getRequestParameters();
89     link = urlSchemeAndAuthority + link;
90     
91     if (parameters != null) {
92       link += parameters;
93     }
94
95
96     
97     if (logger.isDebugEnabled()) {
98       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Collecting " + link);
99     }
100
101     try {
102       opResult = aaiProvider.queryActiveInventoryWithRetries(link, "application/json",
103           ActiveInventoryConfig.getConfig().getAaiRestConfig().getNumRequestRetries());
104     } catch (Exception exc) {
105       opResult = new OperationResult();
106       opResult.setResult(500, "Querying AAI with retry failed due to an exception.");
107       logger.error(AaiUiMsgs.ERROR_AAI_QUERY_WITH_RETRY, exc.getMessage());
108     }
109
110     if (logger.isDebugEnabled()) {
111       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Operation result = " + opResult.toString());
112     }
113
114     txn.setOpResult(opResult);
115     return txn;
116
117   }
118
119 }