Security/ Package Name changes
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / service / PersUserWidgetServiceImpl.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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalapp.portal.service;
39
40 import java.util.ArrayList;
41 import java.util.List;
42
43 import org.springframework.beans.factory.annotation.Autowired;
44 import org.springframework.context.annotation.EnableAspectJAutoProxy;
45 import org.springframework.stereotype.Service;
46 import org.springframework.transaction.annotation.Transactional;
47 import org.hibernate.criterion.Criterion;
48 import org.hibernate.criterion.Restrictions;
49 import org.onap.portalapp.portal.domain.EPUser;
50 import org.onap.portalapp.portal.domain.PersUserWidgetSelection;
51 import org.onap.portalapp.portal.logging.aop.EPMetricsLog;
52 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
53 import org.onap.portalsdk.core.service.DataAccessService;
54
55 @Service("persUserWidgetService")
56 @Transactional
57 @org.springframework.context.annotation.Configuration
58 @EnableAspectJAutoProxy
59 @EPMetricsLog
60 public class PersUserWidgetServiceImpl implements PersUserWidgetService{
61         
62         private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PersUserAppServiceImpl.class);
63
64         @Autowired
65         private DataAccessService dataAccessService;
66         
67         @Override
68         public void setPersUserAppValue(EPUser user, Long widgetId, boolean select) {
69                 if (user == null || widgetId == null)
70                         throw new IllegalArgumentException("setPersUserAppValue: Null values");
71                 
72                 List<PersUserWidgetSelection> persList = getUserWidgetSelction(user, widgetId);
73                 // Key constraint limits to 1 row
74                 PersUserWidgetSelection persRow = null;
75                 if (persList.size() == 1){
76                         persRow = persList.get(0);
77                 }
78                 else {
79                         persRow = new PersUserWidgetSelection(null, user.getId(), widgetId, null);
80                 }                       
81                 if(select){
82                         if (persRow.getId() != null){
83                                 dataAccessService.deleteDomainObject(persRow, null);                            
84                         }
85                         persRow.setStatusCode("S"); // show
86                         dataAccessService.saveDomainObject(persRow, null);                      
87                 } else{
88                         if (persRow.getId() != null){
89                                 dataAccessService.deleteDomainObject(persRow, null);
90                         } 
91                         persRow.setStatusCode("H"); // Hide
92                         dataAccessService.saveDomainObject(persRow, null);                      
93                 }
94                 
95         }
96
97         @SuppressWarnings("unchecked")
98         private List<PersUserWidgetSelection> getUserWidgetSelction(EPUser user, Long widgetId) {
99                 List<Criterion> restrictionsList = new ArrayList<Criterion>();
100                 Criterion userIdCriterion = Restrictions.eq("userId", user.getId());
101                 Criterion widgetIdCriterion = Restrictions.eq("widgetId", widgetId);
102                 restrictionsList.add(Restrictions.and(userIdCriterion, widgetIdCriterion));
103                 return  (List<PersUserWidgetSelection>) dataAccessService.getList(PersUserWidgetSelection.class, null, restrictionsList, null);
104         }
105
106 }