b4806f1ce06190a81aa6d35ae54564159cb7f73e
[vid.git] / vid-app-common / src / main / java / org / onap / vid / services / AuditServiceImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2018 Nokia. All rights reserved.
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 package org.onap.vid.services;
22
23 import com.fasterxml.jackson.core.JsonParseException;
24 import com.fasterxml.jackson.databind.ObjectMapper;
25 import org.apache.commons.lang3.StringUtils;
26 import org.onap.vid.exceptions.GenericUncheckedException;
27 import org.springframework.stereotype.Service;
28
29 import javax.inject.Inject;
30 import java.io.IOException;
31 import java.util.UUID;
32
33
34 @Service
35 public class AuditServiceImpl implements AuditService{
36
37     @Inject
38     private AsyncInstantiationBusinessLogic asyncInstantiationBL;
39     public static final String FAILED_MSO_REQUEST_STATUS = "FAILED";
40
41     @Override
42     public void setFailedAuditStatusFromMso(UUID jobUuid, String requestId, int statusCode, String msoResponse){
43         String additionalInfo = formatExceptionAdditionalInfo(statusCode, msoResponse);
44         asyncInstantiationBL.auditMsoStatus(jobUuid, FAILED_MSO_REQUEST_STATUS, requestId, additionalInfo);
45     }
46
47     private String formatExceptionAdditionalInfo(int statusCode, String msoResponse) {
48         String errorMsg = "Http Code:" + statusCode;
49         if (!StringUtils.isEmpty(msoResponse)) {
50             String filteredJson;
51             try {
52                 ObjectMapper objectMapper = new ObjectMapper();
53                 filteredJson = StringUtils.defaultIfEmpty(
54                         objectMapper.readTree(msoResponse).path("serviceException").toString().replaceAll("[\\{\\}]","") ,
55                         msoResponse
56                 );
57             } catch (JsonParseException e) {
58                 filteredJson = msoResponse;
59             } catch (IOException e) {
60                 throw new GenericUncheckedException(e);
61             }
62
63             errorMsg = errorMsg + ", " + filteredJson;
64         }
65         return errorMsg;
66     }
67 }