e89f9921dfb029139eb0af248cc97d7c38db27a9
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / controller / AuditLogController.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software 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  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 package org.onap.portalapp.portal.controller;
39
40 import java.text.SimpleDateFormat;
41 import java.util.Date;
42 import java.util.UUID;
43
44 import javax.servlet.http.HttpServletRequest;
45
46 import org.onap.portalapp.validation.DataValidator;
47 import org.onap.portalapp.validation.SecureString;
48 import org.slf4j.MDC;
49 import org.springframework.beans.factory.annotation.Autowired;
50 import org.springframework.web.bind.annotation.RequestMapping;
51 import org.springframework.web.bind.annotation.GetMapping;
52 import org.springframework.web.bind.annotation.RequestParam;
53 import org.springframework.web.bind.annotation.RestController;
54
55 import com.att.eelf.configuration.Configuration;
56
57 import org.onap.portalapp.controller.EPRestrictedBaseController;
58 import org.onap.portalapp.portal.domain.EPUser;
59 import org.onap.portalapp.portal.domain.EcompAuditLog;
60 import org.onap.portalapp.portal.logging.aop.EPEELFLoggerAdvice;
61 import org.onap.portalapp.portal.logging.logic.EPLogUtil;
62 import org.onap.portalapp.portal.utils.EPCommonSystemProperties;
63 import org.onap.portalapp.portal.utils.EcompPortalUtils;
64 import org.onap.portalapp.portal.utils.PortalConstants;
65 import org.onap.portalapp.util.EPUserUtils;
66 import org.onap.portalsdk.core.domain.AuditLog;
67 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
68 import org.onap.portalsdk.core.service.AuditService;
69 import org.onap.portalsdk.core.util.SystemProperties;
70
71 @RestController
72 @RequestMapping("/portalApi/auditLog")
73 public class AuditLogController extends EPRestrictedBaseController {
74         private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(DashboardController.class);
75         private static final DataValidator dataValidator = new DataValidator();
76
77         private AuditService auditService;
78         @Autowired
79         public AuditLogController(AuditService auditService) {
80                 this.auditService = auditService;
81         }
82
83         /**
84          * Store audit log of the specified access type.
85          *
86          * @param request
87          *            HttpServletRequest
88          * @param affectedAppId
89          *            App ID
90          * @param type
91          *            Access type
92          * @param comment
93          *            Comment
94          */
95         @GetMapping(value = "/store", produces = "application/json")
96         public void auditLog(HttpServletRequest request, @RequestParam String affectedAppId, @RequestParam String type,
97                         @RequestParam String comment) {
98                 logger.debug(EELFLoggerDelegate.debugLogger, "auditLog: appId {}, type {}, comment {}", affectedAppId, type,
99                                 comment);
100                 String cdType = null;
101
102                 SecureString secureString0 = new SecureString(affectedAppId);
103                 SecureString secureString1 = new SecureString(type);
104                 SecureString secureString2 = new SecureString(comment);
105                 if (  !dataValidator.isValid(secureString0)
106                         ||!dataValidator.isValid(secureString1)
107                         ||!dataValidator.isValid(secureString2)){
108                         return;
109                 }
110
111                 try {
112                         EPUser user = EPUserUtils.getUserSession(request);
113                         /* Check type of Activity CD */
114                         switch (type) {
115                                 case "app":
116                                         cdType = AuditLog.CD_ACTIVITY_APP_ACCESS;
117                                         break;
118                                 case "tab":
119                                         cdType = AuditLog.CD_ACTIVITY_TAB_ACCESS;
120                                         break;
121                                 case "functional":
122                                         cdType = AuditLog.CD_ACTIVITY_FUNCTIONAL_ACCESS;
123                                         break;
124                                 case "leftMenu":
125                                         cdType = AuditLog.CD_ACTIVITY_LEFT_MENU_ACCESS;
126                                         break;
127                                 default:
128                                         logger.error(EELFLoggerDelegate.errorLogger,
129                                                 "Storing auditLog failed! Activity CD type is not correct.");
130                                         break;
131                         }
132                         /* Store the audit log only if it contains valid Activity CD */
133                         if (cdType != null) {
134                                 AuditLog auditLog = new AuditLog();
135                                 auditLog.setActivityCode(cdType);
136                                 /*
137                                  * Check affectedAppId and comment and see if these two values
138                                  * are valid
139                                  */
140                                 if (comment != null && !comment.isEmpty() && !"undefined".equals(comment))
141                                         auditLog.setComments(
142                                                         EcompPortalUtils.truncateString(comment, PortalConstants.AUDIT_LOG_COMMENT_SIZE));
143                                 if (affectedAppId != null && !affectedAppId.isEmpty() && !"undefined".equals(affectedAppId))
144                                         auditLog.setAffectedRecordId(affectedAppId);
145                                 long userId = EPUserUtils.getUserId(request);
146                                 auditLog.setUserId(userId);
147                                 MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC());
148                                 MDC.put(EPCommonSystemProperties.PARTNER_NAME, EPCommonSystemProperties.ECOMP_PORTAL_FE);
149                                 MDC.put(Configuration.MDC_SERVICE_NAME, EPCommonSystemProperties.ECOMP_PORTAL_BE);
150                                 if (MDC.get(Configuration.MDC_KEY_REQUEST_ID) == null) {
151                                         String requestId = UUID.randomUUID().toString();
152                                         MDC.put(Configuration.MDC_KEY_REQUEST_ID, requestId);
153                                 }
154                                 String auditMessageInfo = EPLogUtil.formatAuditLogMessage(
155                                                 "AuditLogController.auditLog", cdType, user.getOrgUserId(), affectedAppId, comment);            
156                 
157                                 EPLogUtil.logAuditMessage(logger, auditMessageInfo);                            
158
159                         }
160                 } catch (Exception e) {
161                         logger.error(EELFLoggerDelegate.errorLogger, "auditLog failed", e);
162                         MDC.put(EPCommonSystemProperties.STATUS_CODE, "ERROR");
163                 } finally{
164                         MDC.remove(Configuration.MDC_SERVICE_NAME);
165                         MDC.remove(EPCommonSystemProperties.PARTNER_NAME);
166                         MDC.remove(SystemProperties.MDC_TIMER);
167                         MDC.remove(Configuration.MDC_KEY_REQUEST_ID);
168                         MDC.remove(EPCommonSystemProperties.STATUS_CODE);
169                 }
170         }
171
172 }