Coverage Report - org.kuali.rice.kim.util.KimCommonUtilsInternal
 
Classes in this File Line Coverage Branch Coverage Complexity
KimCommonUtilsInternal
0%
0/109
0%
0/90
4.467
 
 1  
 /*
 2  
  * Copyright 2007-2008 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kim.util;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 import java.util.Map;
 21  
 
 22  
 import org.apache.commons.beanutils.PropertyUtils;
 23  
 import org.apache.commons.lang.StringUtils;
 24  
 import org.kuali.rice.core.xml.dto.AttributeSet;
 25  
 import org.kuali.rice.kim.bo.Group;
 26  
 import org.kuali.rice.kim.bo.entity.KimEntityPrivacyPreferences;
 27  
 import org.kuali.rice.kim.bo.entity.dto.KimEntityDefaultInfo;
 28  
 import org.kuali.rice.kim.bo.group.impl.GroupAttributeDataImpl;
 29  
 import org.kuali.rice.kim.bo.impl.GroupImpl;
 30  
 import org.kuali.rice.kim.bo.types.dto.KimTypeAttributeInfo;
 31  
 import org.kuali.rice.kim.service.IdentityManagementService;
 32  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 33  
 import org.kuali.rice.kim.service.KIMServiceLocatorWeb;
 34  
 import org.kuali.rice.kns.UserSession;
 35  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 36  
 import org.kuali.rice.kns.util.GlobalVariables;
 37  
 
 38  
 /**
 39  
  * This is a description of what this class does - bhargavp don't forget to fill
 40  
  * this in.
 41  
  *
 42  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 43  
  *
 44  
  */
 45  
 public final class KimCommonUtilsInternal {
 46  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(KimCommonUtilsInternal.class);
 47  
 
 48  
     private static IdentityManagementService identityManagementService;
 49  
 
 50  0
         private KimCommonUtilsInternal() {
 51  0
                 throw new UnsupportedOperationException("do not call");
 52  
         }
 53  
 
 54  
     public static void copyProperties(Object targetToCopyTo, Object sourceToCopyFrom){
 55  0
                 if(targetToCopyTo!=null && sourceToCopyFrom!=null)
 56  
                 try{
 57  0
                         PropertyUtils.copyProperties(targetToCopyTo, sourceToCopyFrom);
 58  0
                 } catch(Exception ex){
 59  0
                         throw new RuntimeException("Failed to copy from source object: "+sourceToCopyFrom.getClass()+" to target object: "+targetToCopyTo,ex);
 60  0
                 }
 61  0
         }
 62  
 
 63  
         public static String getKimBasePath(){
 64  0
                 String kimBaseUrl = KNSServiceLocator.getKualiConfigurationService().getPropertyString(KimConstants.KimUIConstants.KIM_URL_KEY);
 65  0
                 if (!kimBaseUrl.endsWith(KimConstants.KimUIConstants.URL_SEPARATOR)) {
 66  0
                         kimBaseUrl = kimBaseUrl + KimConstants.KimUIConstants.URL_SEPARATOR;
 67  
                 }
 68  0
                 return kimBaseUrl;
 69  
         }
 70  
 
 71  
         public static String getPathWithKimContext(String path, String kimActionName){
 72  0
                 String kimContext = KimConstants.KimUIConstants.KIM_APPLICATION+KimConstants.KimUIConstants.URL_SEPARATOR;
 73  0
                 String kimContextParameterized = KimConstants.KimUIConstants.KIM_APPLICATION+KimConstants.KimUIConstants.PARAMETERIZED_URL_SEPARATOR;
 74  0
             if(path.contains(kimActionName) && !path.contains(kimContext + kimActionName)
 75  
                             && !path.contains(kimContextParameterized + kimActionName))
 76  0
                     path = path.replace(kimActionName, kimContext+kimActionName);
 77  0
             return path;
 78  
         }
 79  
 
 80  
         public static String stripEnd(String toStripFrom, String toStrip){
 81  
                 String stripped;
 82  0
                 if(toStripFrom==null) return null;
 83  0
                 if(toStrip==null) return toStripFrom;
 84  0
         if(toStrip.length() > toStripFrom.length()) return toStripFrom;
 85  0
                 if(toStripFrom.endsWith(toStrip)){
 86  0
                         StringBuffer buffer = new StringBuffer(toStripFrom);
 87  0
                         buffer.delete(buffer.length()-toStrip.length(), buffer.length());
 88  0
                         stripped = buffer.toString();
 89  0
                 } else stripped = toStripFrom;
 90  0
                 return stripped;
 91  
         }
 92  
 
 93  
         protected static boolean canOverrideEntityPrivacyPreferences( String principalId ){
 94  0
                 return getIdentityManagementService().isAuthorized(
 95  
                                 GlobalVariables.getUserSession().getPrincipalId(),
 96  
                                 KimConstants.NAMESPACE_CODE,
 97  
                                 KimConstants.PermissionNames.OVERRIDE_ENTITY_PRIVACY_PREFERENCES,
 98  
                                 null,
 99  
                                 new AttributeSet(KimConstants.AttributeConstants.PRINCIPAL_ID, principalId) );
 100  
         }
 101  
 
 102  
         public static boolean isSuppressName(String entityId) {
 103  0
             KimEntityPrivacyPreferences privacy = null;
 104  0
         KimEntityDefaultInfo entityInfo = getIdentityManagementService().getEntityDefaultInfo(entityId);
 105  0
         if (entityInfo != null) {
 106  0
             privacy = entityInfo.getPrivacyPreferences();
 107  
         } else {
 108  0
                 return true;
 109  
         }
 110  0
             UserSession userSession = GlobalVariables.getUserSession();
 111  
 
 112  0
         boolean suppressName = false;
 113  0
         if (privacy != null) {
 114  0
             suppressName = privacy.isSuppressName();
 115  
         }
 116  
         
 117  0
         return suppressName
 118  
                 && userSession != null
 119  
                 && !StringUtils.equals(userSession.getPerson().getEntityId(), entityId)
 120  
                 && !canOverrideEntityPrivacyPreferences(entityInfo.getPrincipals().get(0).getPrincipalId());
 121  
     }
 122  
 
 123  
     public static boolean isSuppressEmail(String entityId) {
 124  0
         KimEntityPrivacyPreferences privacy = null;
 125  0
         KimEntityDefaultInfo entityInfo = getIdentityManagementService().getEntityDefaultInfo(entityId);
 126  0
         if (entityInfo != null) {
 127  0
             privacy = entityInfo.getPrivacyPreferences();
 128  
         } else {
 129  0
                 return true;
 130  
         }
 131  0
         UserSession userSession = GlobalVariables.getUserSession();
 132  
 
 133  0
         boolean suppressEmail = false;
 134  0
         if (privacy != null) {
 135  0
             suppressEmail = privacy.isSuppressEmail();
 136  
         }
 137  0
         return suppressEmail
 138  
                 && userSession != null
 139  
                 && !StringUtils.equals(userSession.getPerson().getEntityId(), entityId)
 140  
                 && !canOverrideEntityPrivacyPreferences(entityInfo.getPrincipals().get(0).getPrincipalId());
 141  
     }
 142  
 
 143  
     public static boolean isSuppressAddress(String entityId) {
 144  0
         KimEntityPrivacyPreferences privacy = null;
 145  0
         KimEntityDefaultInfo entityInfo = getIdentityManagementService().getEntityDefaultInfo(entityId);
 146  0
         if (entityInfo != null) {
 147  0
             privacy = entityInfo.getPrivacyPreferences();
 148  
         } else {
 149  0
                 return false;
 150  
         }
 151  0
         UserSession userSession = GlobalVariables.getUserSession();
 152  
 
 153  0
         boolean suppressAddress = false;
 154  0
         if (privacy != null) {
 155  0
             suppressAddress = privacy.isSuppressAddress();
 156  
         }
 157  0
         return suppressAddress
 158  
                 && userSession != null
 159  
                 && !StringUtils.equals(userSession.getPerson().getEntityId(), entityId)
 160  
                 && !canOverrideEntityPrivacyPreferences(entityInfo.getPrincipals().get(0).getPrincipalId());
 161  
     }
 162  
 
 163  
     public static boolean isSuppressPhone(String entityId) {
 164  0
         KimEntityPrivacyPreferences privacy = null;
 165  0
         KimEntityDefaultInfo entityInfo = getIdentityManagementService().getEntityDefaultInfo(entityId);
 166  0
         if (entityInfo != null) {
 167  0
             privacy = entityInfo.getPrivacyPreferences();
 168  
         } else { 
 169  0
                 return true;
 170  
         }
 171  0
         UserSession userSession = GlobalVariables.getUserSession();
 172  
 
 173  0
         boolean suppressPhone = false;
 174  0
         if (privacy != null) {
 175  0
             suppressPhone = privacy.isSuppressPhone();
 176  
         }
 177  0
         return suppressPhone
 178  
                 && userSession != null
 179  
                 && !StringUtils.equals(userSession.getPerson().getEntityId(), entityId)
 180  
                 && !canOverrideEntityPrivacyPreferences(entityInfo.getPrincipals().get(0).getPrincipalId());
 181  
     }
 182  
 
 183  
     public static boolean isSuppressPersonal(String entityId) {
 184  0
         KimEntityPrivacyPreferences privacy = null;
 185  0
         KimEntityDefaultInfo entityInfo = getIdentityManagementService().getEntityDefaultInfo(entityId);
 186  0
         if (entityInfo != null) {
 187  0
             privacy = entityInfo.getPrivacyPreferences();
 188  
         } else { 
 189  0
                 return true;
 190  
         }
 191  0
         UserSession userSession = GlobalVariables.getUserSession();
 192  
 
 193  0
         boolean suppressPersonal = false;
 194  0
         if (privacy != null) {
 195  0
             suppressPersonal = privacy.isSuppressPersonal();
 196  
         }
 197  0
         return suppressPersonal
 198  
                 && userSession != null
 199  
                 && !StringUtils.equals(userSession.getPerson().getEntityId(), entityId)
 200  
                 && !canOverrideEntityPrivacyPreferences(entityInfo.getPrincipals().get(0).getPrincipalId());
 201  
     }
 202  
 
 203  
         private static IdentityManagementService getIdentityManagementService() {
 204  0
                 if ( identityManagementService == null ) {
 205  0
                         identityManagementService = KIMServiceLocator.getIdentityManagementService();
 206  
                 }
 207  0
                 return identityManagementService;
 208  
         }
 209  
 
 210  
 
 211  
     public static GroupImpl copyInfoToGroup(Group info, GroupImpl group) {
 212  0
         group.setActive(info.isActive());
 213  0
         group.setGroupDescription(info.getGroupDescription());
 214  0
         group.setGroupId(info.getGroupId());
 215  0
         group.setGroupName(info.getGroupName());
 216  0
         group.setKimTypeId(info.getKimTypeId());
 217  0
         group.setNamespaceCode(info.getNamespaceCode());
 218  
 
 219  0
         return group;
 220  
     }
 221  
 
 222  
     /**
 223  
      *
 224  
      * @param infoMap Containing the Info Attribute objects.
 225  
      * @param groupId for the group of attributes
 226  
      * @param kimTypeId for the group of attributes
 227  
      * @return a list of group attributes
 228  
      */
 229  
 
 230  
     public static List<GroupAttributeDataImpl> copyInfoAttributesToGroupAttributes(Map<String, String> infoMap, String groupId, String kimTypeId) {
 231  0
         List<GroupAttributeDataImpl> attrList = new ArrayList<GroupAttributeDataImpl>(infoMap.size());
 232  0
         List<KimTypeAttributeInfo> attributeInfoList = KIMServiceLocatorWeb.getTypeInfoService().getKimType(kimTypeId).getAttributeDefinitions();
 233  
 
 234  0
         for (String key : infoMap.keySet()) {
 235  0
             KimTypeAttributeInfo typeAttributeInfo = getAttributeInfo(attributeInfoList, key);
 236  
 
 237  0
             if (typeAttributeInfo != null) {
 238  0
                 GroupAttributeDataImpl groupAttribute = new GroupAttributeDataImpl();
 239  0
                 groupAttribute.setKimAttributeId(typeAttributeInfo.getKimAttributeId());
 240  0
                 groupAttribute.setAttributeValue(infoMap.get(typeAttributeInfo.getAttributeName()));
 241  0
                 groupAttribute.setGroupId(groupId);
 242  0
                 groupAttribute.setKimTypeId(kimTypeId);
 243  0
                 attrList.add(groupAttribute);
 244  0
             } else {
 245  0
                 throw new IllegalArgumentException("KimAttribute not found: " + key);
 246  
             }
 247  0
         }
 248  0
         return attrList;
 249  
     }
 250  
 
 251  
     private static KimTypeAttributeInfo getAttributeInfo(List<KimTypeAttributeInfo> attributeInfoList, String attributeName) {
 252  0
         KimTypeAttributeInfo kRet = null;
 253  0
         for (KimTypeAttributeInfo attributeInfo : attributeInfoList) {
 254  0
             if (attributeInfo.getAttributeName().equals(attributeName)) {
 255  0
                 kRet = attributeInfo;
 256  0
                 break;
 257  
             }
 258  
         }
 259  0
         return kRet;
 260  
     }
 261  
 
 262  
 }