2  * ============LICENSE_START==========================================
 
   4  * ===================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ===================================================================
 
   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
 
  13  *             http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  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
 
  26  *             https://creativecommons.org/licenses/by/4.0/
 
  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.
 
  34  * ============LICENSE_END============================================
 
  36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  38 package org.onap.portalapp.portal.service;
 
  40 import java.util.ArrayList;
 
  41 import java.util.List;
 
  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;
 
  55 @Service("persUserWidgetService")
 
  57 @org.springframework.context.annotation.Configuration
 
  58 @EnableAspectJAutoProxy
 
  60 public class PersUserWidgetServiceImpl implements PersUserWidgetService{
 
  62         private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PersUserAppServiceImpl.class);
 
  65         private DataAccessService dataAccessService;
 
  68         public void setPersUserAppValue(EPUser user, Long widgetId, boolean select) {
 
  69                 if (user == null || widgetId == null)
 
  70                         throw new IllegalArgumentException("setPersUserAppValue: Null values");
 
  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);
 
  79                         persRow = new PersUserWidgetSelection(null, user.getId(), widgetId, null);
 
  82                         if (persRow.getId() != null){
 
  83                                 dataAccessService.deleteDomainObject(persRow, null);                            
 
  85                         persRow.setStatusCode("S"); // show
 
  86                         dataAccessService.saveDomainObject(persRow, null);                      
 
  88                         if (persRow.getId() != null){
 
  89                                 dataAccessService.deleteDomainObject(persRow, null);
 
  91                         persRow.setStatusCode("H"); // Hide
 
  92                         dataAccessService.saveDomainObject(persRow, null);                      
 
  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);