5e86c3c93d1ad7d43c4c8b0b1199a89a19099a8b
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / service / EPAuditServiceImpl.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.openecomp.portalapp.portal.service;
39
40 import java.time.LocalDate;
41 import java.util.Date;
42 import java.util.HashMap;
43 import java.util.List;
44 import java.util.Map;
45
46 import org.springframework.beans.factory.annotation.Autowired;
47 import org.springframework.context.annotation.EnableAspectJAutoProxy;
48 import org.springframework.stereotype.Service;
49 import org.springframework.transaction.annotation.Transactional;
50
51 import org.openecomp.portalsdk.core.domain.AuditLog;
52 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
53 import org.openecomp.portalsdk.core.service.DataAccessService;
54 import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;
55 import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties;
56
57 @Service("epAuditService")
58 @Transactional
59 @org.springframework.context.annotation.Configuration
60 @EnableAspectJAutoProxy
61 @EPMetricsLog
62 public class EPAuditServiceImpl implements EPAuditService {
63
64         private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPAuditServiceImpl.class);
65
66         @Autowired
67         private DataAccessService dataAccessService;
68
69         @Override
70         /*
71          * get the guest last login time with orgUserId as param. If record not
72          * found in table, return null.
73          * 
74          * (non-Javadoc)
75          * 
76          * @see
77          * org.openecomp.portalapp.portal.service.EPUserService#getGuestLastLogin(
78          * java.lang.String)
79          */
80         public Date getGuestLastLogin(String userId) {
81                 Map<String, String> params = new HashMap<>();
82                 params.put("userId", userId);
83                 @SuppressWarnings("unchecked")
84                 List<Date> list = getDataAccessService().executeNamedQuery("getGuestLastLogin", params, null);
85                 Date date = null;
86                 if (list != null) {
87                         /*
88                          * if list only contains one item, meaning this is the first time
89                          * user logs in or record not found in db
90                          */
91                         if (list.size() == 1)
92                                 date = list.get(0); /* the guest's current log in time */
93                         else if (list.size() == 2)
94                                 date = list.get(1); /* most recent login date from db */
95                 }
96                 return date;
97         }
98
99         /*
100          * Cleans all the records in fn_audit_log table that are less than defined
101          * date in system.property
102          * 
103          * (non-Javadoc)
104          * 
105          * @see
106          * org.openecomp.portalapp.portal.service.EPAuditService#delAuditLogFromDay(
107          * )
108          */
109         @Override
110         public void delAuditLogFromDay() {
111                 if (EPCommonSystemProperties.containsProperty(EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM)) {
112                         String day = EPCommonSystemProperties.getProperty(EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM);
113                         LocalDate removeDateFrom = LocalDate.now().minusDays(Integer.valueOf(day));
114                         getDataAccessService().deleteDomainObjects(AuditLog.class, "audit_date  <'" + removeDateFrom + "'", null);
115                 } else {
116                         logger.error(EELFLoggerDelegate.errorLogger,
117                                         "delAuditLogFromDay Exception = system.propertiy value is empty on"
118                                                         + EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM);
119                 }
120         }
121
122         public DataAccessService getDataAccessService() {
123                 return dataAccessService;
124         }
125
126         public void setDataAccessService(DataAccessService dataAccessService) {
127                 this.dataAccessService = dataAccessService;
128         }
129
130 }