0ba950a62251ce7e5079f927eb86950766b6ceac
[appc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
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  *
21  * ============LICENSE_END=========================================================
22  */
23 package org.onap.appc.data.services.db;
24
25 import java.util.Map;
26 import java.util.Set;
27
28 import org.apache.commons.lang3.StringUtils;
29
30 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
31 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
32 import org.onap.ccsdk.sli.core.sli.SvcLogicResource;
33 import org.onap.ccsdk.sli.core.sli.SvcLogicResource.QueryStatus;
34 import org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource;
35
36 import org.onap.appc.data.services.AppcDataServiceConstant;
37 import org.onap.appc.data.services.utils.EscapeUtils;
38
39 import com.att.eelf.configuration.EELFLogger;
40 import com.att.eelf.configuration.EELFManager;
41
42 public class GeneralDataService {
43
44     private static final EELFLogger log = EELFManager.getInstance().getLogger(GeneralDataService.class);
45     
46     public void saveTransactionLog(Map<String, String> inParams, SvcLogicContext ctx) throws SvcLogicException 
47     {
48         SvcLogicContext logger = new SvcLogicContext();
49         String responsePrefix = inParams.get(AppcDataServiceConstant.INPUT_PARAM_RESPONSE_PREFIX);
50         String messageType = inParams.get(AppcDataServiceConstant.INPUT_PARAM_MESSAGE_TYPE);
51         String message = inParams.get(AppcDataServiceConstant.INPUT_PARAM_MESSAGE);
52         try 
53         {
54             
55             String escapedMessage = EscapeUtils.escapeSql(message);
56             logger.setAttribute("request-id", ctx.getAttribute("request-id"));
57             logger.setAttribute("log-message-type", messageType);
58             logger.setAttribute("log-message", escapedMessage);
59
60             responsePrefix = StringUtils.isNotBlank(responsePrefix) ? (responsePrefix+".") : "";
61             DGGeneralDBService db = DGGeneralDBService.initialise();
62             QueryStatus status = db.saveConfigTransactionLog( logger, responsePrefix);
63
64             logger.setAttribute("log-message", null);
65             logger.setAttribute("log-message-type", null);
66             logger.setAttribute("request-id", null);
67
68             if (status == QueryStatus.FAILURE)
69                 throw new Exception("Unable to insert into config_transaction_log");
70
71
72         } 
73         catch (Exception e) 
74         {
75             ctx.setAttribute(responsePrefix + AppcDataServiceConstant.OUTPUT_PARAM_STATUS,
76             AppcDataServiceConstant.OUTPUT_STATUS_FAILURE);
77             ctx.setAttribute(responsePrefix + AppcDataServiceConstant.OUTPUT_PARAM_ERROR_MESSAGE, e.getMessage());
78             throw new SvcLogicException(e.getMessage());
79         }
80     }
81     
82 }