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