518d569e21ba8d7c7018fe58c8f5d031c6f902a7
[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   /*
66    * (non-Javadoc)
67    * 
68    * @see java.util.function.Supplier#get()
69    */
70   @Override
71   public NodeProcessingTransaction get() {
72     MDC.setContextMap(contextMap);
73     OperationResult opResult = new OperationResult();
74     String link = txn.getSelfLink();
75     if (link == null) {
76       opResult.setResult(500, "Aborting self-link processing because self link is null");
77       txn.setOpResult(opResult);
78       return txn;
79     }
80     /**
81      * Rebuild the self link:
82      * 
83      * <li>build the base url with the configured scheme + authority (server:port)
84      * <li>recombine baseUrl + originalEncodedLink + queryStringParameters
85      * 
86      */
87
88     final String urlSchemeAndAuthority = aaiConfig.repairSelfLink("");
89
90     String parameters = txn.getRequestParameters();
91     link = urlSchemeAndAuthority + link;
92
93     if (parameters != null) {
94       link += parameters;
95     }
96
97
98
99     if (logger.isDebugEnabled()) {
100       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Collecting " + link);
101     }
102
103     try {
104       opResult = aaiProvider.queryActiveInventoryWithRetries(link, "application/json",
105           ActiveInventoryConfig.getConfig().getAaiRestConfig().getNumRequestRetries());
106     } catch (Exception exc) {
107       opResult = new OperationResult();
108       opResult.setResult(500, "Querying AAI with retry failed due to an exception.");
109       logger.error(AaiUiMsgs.ERROR_AAI_QUERY_WITH_RETRY, exc.getMessage());
110     }
111
112     if (logger.isDebugEnabled()) {
113       logger.debug(AaiUiMsgs.DEBUG_GENERIC, "Operation result = " + opResult.toString());
114     }
115
116     txn.setOpResult(opResult);
117     return txn;
118
119   }
120
121 }