Coverage Report - org.kuali.rice.kim.dao.impl.KimGroupDaoOjb
 
Classes in this File Line Coverage Branch Coverage Complexity
KimGroupDaoOjb
0%
0/95
0%
0/36
10
 
 1  
 /*
 2  
  * Copyright 2007-2009 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.dao.impl;
 17  
 
 18  
 import java.sql.Timestamp;
 19  
 
 20  
 import java.util.List;
 21  
 import java.util.Map;
 22  
 import java.util.Map.Entry;
 23  
 
 24  
 import org.apache.commons.lang.StringUtils;
 25  
 import org.apache.log4j.Logger;
 26  
 import org.apache.ojb.broker.query.Criteria;
 27  
 import org.apache.ojb.broker.query.Query;
 28  
 import org.apache.ojb.broker.query.QueryFactory;
 29  
 import org.apache.ojb.broker.query.ReportQueryByCriteria;
 30  
 import org.kuali.rice.kim.bo.entity.dto.KimPrincipalInfo;
 31  
 import org.kuali.rice.kim.bo.group.impl.GroupAttributeDataImpl;
 32  
 import org.kuali.rice.kim.bo.group.impl.GroupMemberImpl;
 33  
 import org.kuali.rice.kim.bo.impl.GroupImpl;
 34  
 import org.kuali.rice.kim.bo.types.dto.AttributeDefinitionMap;
 35  
 import org.kuali.rice.kim.bo.types.dto.KimTypeInfo;
 36  
 import org.kuali.rice.kim.dao.KimGroupDao;
 37  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 38  
 import org.kuali.rice.kim.service.KIMServiceLocatorInternal;
 39  
 import org.kuali.rice.kim.service.KIMServiceLocatorWeb;
 40  
 import org.kuali.rice.kim.service.KimTypeInfoService;
 41  
 import org.kuali.rice.kim.service.support.KimTypeService;
 42  
 import org.kuali.rice.kim.util.KIMPropertyConstants;
 43  
 import org.kuali.rice.kim.util.KimCommonUtils;
 44  
 import org.kuali.rice.kim.util.KimConstants;
 45  
 import org.kuali.rice.kns.dao.impl.PlatformAwareDaoBaseOjb;
 46  
 import org.kuali.rice.kns.datadictionary.AttributeDefinition;
 47  
 import org.kuali.rice.kns.datadictionary.BusinessObjectEntry;
 48  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 49  
 import org.kuali.rice.kns.service.KNSServiceLocatorWeb;
 50  
 import org.kuali.rice.kns.util.KNSConstants;
 51  
 
 52  
 /**
 53  
  * This is a description of the KimGroupDaoOjb class.
 54  
  *
 55  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 56  
  *
 57  
  */
 58  0
 public class KimGroupDaoOjb extends PlatformAwareDaoBaseOjb implements KimGroupDao {
 59  
         // KULRICE-4248 Adding logger
 60  0
         private static final Logger LOG = Logger.getLogger(KimGroupDaoOjb.class);
 61  
         private KimTypeInfoService kimTypeInfoService;
 62  
         
 63  
     public List<GroupImpl> getGroups(Map<String,String> fieldValues) {
 64  0
         Criteria crit = new Criteria();
 65  0
         BusinessObjectEntry boEntry = KNSServiceLocatorWeb.getDataDictionaryService().getDataDictionary().getBusinessObjectEntry("org.kuali.rice.kim.bo.impl.GroupImpl");
 66  0
         List lookupNames = boEntry.getLookupDefinition().getLookupFieldNames();
 67  0
         String kimTypeId = null;
 68  0
         for (Map.Entry<String,String> entry : fieldValues.entrySet()) {
 69  0
                 if (entry.getKey().equals("kimTypeId")) {
 70  0
                         kimTypeId=entry.getValue();
 71  0
                         break;
 72  
                 }
 73  
         }
 74  0
         AttributeDefinitionMap definitions = null;
 75  0
         for (Entry<String, String> entry : fieldValues.entrySet()) {
 76  0
                 if (StringUtils.isNotBlank(entry.getValue())) {
 77  0
                         if (entry.getKey().contains(".")) {
 78  0
                         Criteria subCrit = new Criteria();
 79  0
                                 String value = entry.getValue().replace('*', '%');
 80  
 
 81  
                     // obey the DD forceUppercase attribute and allow the OR operator
 82  
                     // subCrit.addLike("attributeValue",value);
 83  0
                     String[] values = StringUtils.split(value, KNSConstants.OR_LOGICAL_OPERATOR);
 84  0
                     boolean valuesCriterionAdded = false;
 85  0
                     if (values.length > 0) {
 86  0
                         if (definitions == null) {
 87  0
                             KimTypeInfo kimTypeInfo = getKimTypeInfoService().getKimType(kimTypeId);
 88  0
                             KimTypeService kimTypeService = KIMServiceLocatorWeb.getKimTypeService(kimTypeInfo);
 89  0
                             definitions = kimTypeService.getAttributeDefinitions(kimTypeId);
 90  
                         }
 91  0
                         AttributeDefinition definition = definitions.getByAttributeName(entry.getKey().substring(0, entry.getKey().indexOf('.')));
 92  
                         
 93  0
                         Criteria valuesCrit = new Criteria();
 94  0
                         for (int i = 0; i < values.length; i++) {
 95  0
                             String subValue = values[i];
 96  0
                             if (StringUtils.isNotBlank(subValue)) {
 97  0
                                 Criteria valueCrit = new Criteria();
 98  
                                 // null means uppercase it, so do !Boolean.FALSE.equals
 99  0
                                 if (!Boolean.FALSE.equals(definition.getForceUppercase())) {
 100  0
                                     valueCrit.addLike(getDbPlatform().getUpperCaseFunction() + "(attributeValue)", subValue.toUpperCase());
 101  
                                 }
 102  
                                 else {
 103  0
                                     valueCrit.addLike("attributeValue", subValue); 
 104  
                                 }
 105  0
                                 valuesCriterionAdded = true;
 106  0
                                 valuesCrit.addOrCriteria(valueCrit);
 107  
                             }
 108  
                         }
 109  0
                         subCrit.addAndCriteria(valuesCrit);
 110  
                         
 111  0
                         subCrit.addEqualTo("kimAttributeId",entry.getKey().substring(entry.getKey().indexOf(".")+1, entry.getKey().length()));
 112  0
                         subCrit.addEqualTo("kimTypeId", kimTypeId);
 113  
                         
 114  0
                         subCrit.addEqualToField(KIMPropertyConstants.Group.GROUP_ID, Criteria.PARENT_QUERY_PREFIX + KIMPropertyConstants.Group.GROUP_ID);
 115  
                         
 116  0
                         ReportQueryByCriteria subQuery = QueryFactory.newReportQuery(GroupAttributeDataImpl.class, subCrit);
 117  0
                         if (valuesCriterionAdded) {
 118  0
                             crit.addExists(subQuery);
 119  
                         }
 120  
                     }
 121  
 
 122  0
                         } else {
 123  0
                                 if (lookupNames.contains(entry.getKey())) {
 124  0
                                     String value = entry.getValue().replace('*', '%');
 125  0
                         String[] values = StringUtils.split(value, KNSConstants.OR_LOGICAL_OPERATOR);
 126  0
                         Criteria valuesCrit = new Criteria();
 127  0
                         for (int i = 0; i < values.length; i++) {
 128  0
                             String subValue = values[i];
 129  0
                             if (StringUtils.isNotBlank(subValue)) {
 130  0
                                 Criteria valueCrit = new Criteria();
 131  
                                 // null means uppercase it, so do !Boolean.FALSE.equals
 132  0
                                 if (KimConstants.UniqueKeyConstants.GROUP_NAME.equals(entry.getKey())) {
 133  0
                                     valueCrit.addLike(getDbPlatform().getUpperCaseFunction() + "(groupName)", subValue.toUpperCase());
 134  
                                 }
 135  
                                 else {
 136  0
                                     valueCrit.addLike(entry.getKey(), subValue);
 137  
                                 }
 138  0
                                 valuesCrit.addOrCriteria(valueCrit);
 139  
                             }
 140  
                         }
 141  0
                         crit.addAndCriteria(valuesCrit);
 142  
 
 143  0
                                 } else {
 144  0
                                         if (entry.getKey().equals(KIMPropertyConstants.Person.PRINCIPAL_NAME)) {
 145  
 
 146  
                                                 // KULRICE-4248: Retrieve Principal using the Identity Management Service
 147  0
                                                 Criteria memberSubCrit = new Criteria();
 148  0
                                                 memberSubCrit.addEqualToField(KIMPropertyConstants.Group.GROUP_ID, Criteria.PARENT_QUERY_PREFIX + KIMPropertyConstants.Group.GROUP_ID);
 149  
                                                 // Get the passed-in Principal Name
 150  0
                                                 String principalName = entry.getValue();
 151  
                                                 // Search for the Principal using the Identity Management service
 152  0
                                                 LOG.debug("Searching on Principal Name: " + entry.getValue());
 153  0
                                                 KimPrincipalInfo principalInfo = KIMServiceLocator.getIdentityManagementService().getPrincipalByPrincipalName(principalName);
 154  
                                                 // If a Principal is returned, plug in the Principal ID as the Member ID
 155  0
                                                 if (principalInfo != null)
 156  
                                                 {
 157  0
                                                         LOG.debug("Retrieved Principal: " + principalInfo.getPrincipalName());
 158  0
                                                         String principalId = principalInfo.getPrincipalId();
 159  0
                                                         LOG.debug("Plugging in Principal ID: " + principalId + "as Member ID");
 160  0
                                                         memberSubCrit.addLike(KIMPropertyConstants.GroupMember.MEMBER_ID, principalId);
 161  
 
 162  
                                            // KULRICE-4232: Only return groups that the principal is an active member of.
 163  0
                                            Timestamp now = KNSServiceLocator.getDateTimeService().getCurrentTimestamp();
 164  0
                                            Criteria afterActiveFromSubCrit = new Criteria();
 165  0
                                            afterActiveFromSubCrit.addLessOrEqualThan(KIMPropertyConstants.GroupMember.ACTIVE_FROM_DATE, now);
 166  0
                                     Criteria nullActiveFromSubCrit = new Criteria();
 167  0
                                     nullActiveFromSubCrit.addIsNull(KIMPropertyConstants.GroupMember.ACTIVE_FROM_DATE);
 168  
                                     
 169  0
                                     Criteria ActiveMemberSubCrit1 = new Criteria();
 170  0
                                     ActiveMemberSubCrit1.addOrCriteria(afterActiveFromSubCrit);
 171  0
                                     ActiveMemberSubCrit1.addOrCriteria(nullActiveFromSubCrit);
 172  
                                     
 173  0
                                            Criteria afterActiveToSubCrit = new Criteria();
 174  0
                                            afterActiveToSubCrit.addGreaterOrEqualThan(KIMPropertyConstants.GroupMember.ACTIVE_TO_DATE, now);
 175  0
                                     Criteria nullActiveToSubCrit = new Criteria();
 176  0
                                     nullActiveToSubCrit.addIsNull(KIMPropertyConstants.GroupMember.ACTIVE_TO_DATE);
 177  
                                     
 178  0
                                     Criteria ActiveMemberSubCrit2 = new Criteria();
 179  0
                                     ActiveMemberSubCrit2.addOrCriteria(afterActiveToSubCrit);
 180  0
                                     ActiveMemberSubCrit2.addOrCriteria(nullActiveToSubCrit);
 181  
                                            
 182  0
                                     memberSubCrit.addAndCriteria(ActiveMemberSubCrit1);
 183  0
                                     memberSubCrit.addAndCriteria(ActiveMemberSubCrit2);                        
 184  0
                                                 }
 185  
                                                 // Otherwise, plug in a blank string as the Member ID
 186  
                                                 else
 187  
                                 {
 188  0
                                                         LOG.debug("No Principal ID, plugging in blank string as Member ID");
 189  0
                                                         memberSubCrit.addLike(KIMPropertyConstants.GroupMember.MEMBER_ID, "");
 190  
                                 }
 191  
                                                 /*
 192  
                                 Criteria subCrit = new Criteria();
 193  
                                         String principalName = entry.getValue().replace('*', '%');
 194  
                                         subCrit.addLike(KIMPropertyConstants.Person.PRINCIPAL_NAME, principalName );
 195  
                                 subCrit.addEqualToField(KIMPropertyConstants.Person.PRINCIPAL_ID, Criteria.PARENT_QUERY_PREFIX + "memberId");
 196  
                                         ReportQueryByCriteria subQuery = QueryFactory.newReportQuery(KimPrincipalImpl.class, subCrit);
 197  
                                 Criteria memberSubCrit = new Criteria();
 198  
                                 memberSubCrit.addEqualToField(KIMPropertyConstants.Group.GROUP_ID, Criteria.PARENT_QUERY_PREFIX + KIMPropertyConstants.Group.GROUP_ID);
 199  
                                 memberSubCrit.addExists(subQuery);
 200  
                                 */
 201  0
                                         ReportQueryByCriteria memberSubQuery = QueryFactory.newReportQuery(GroupMemberImpl.class, memberSubCrit);
 202  0
                                         crit.addExists(memberSubQuery);
 203  0
                                         }
 204  
                                 }
 205  
                         }
 206  
                 }
 207  
         }
 208  0
         Query q = QueryFactory.newQuery(GroupImpl.class, crit);
 209  
 
 210  0
         return (List)getPersistenceBrokerTemplate().getCollectionByQuery(q);
 211  
     }
 212  
 
 213  
     protected KimTypeInfoService getKimTypeInfoService() {
 214  0
             if (kimTypeInfoService == null) {
 215  0
                     kimTypeInfoService = KIMServiceLocatorWeb.getTypeInfoService();
 216  
             }
 217  0
             return kimTypeInfoService;
 218  
     }
 219  
 }