Coverage Report - org.kuali.rice.kim.lookup.KimDocumentRoleMemberLookupableHelperServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
KimDocumentRoleMemberLookupableHelperServiceImpl
0%
0/47
0%
0/72
8.4
 
 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.lookup;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 import java.util.Map;
 21  
 
 22  
 import org.apache.commons.lang.StringUtils;
 23  
 import org.kuali.rice.kim.bo.role.dto.KimRoleInfo;
 24  
 import org.kuali.rice.kim.bo.types.dto.KimTypeInfo;
 25  
 import org.kuali.rice.kim.bo.ui.KimDocumentRoleMember;
 26  
 import org.kuali.rice.kim.bo.ui.KimDocumentRoleQualifier;
 27  
 import org.kuali.rice.kim.document.IdentityManagementRoleDocument;
 28  
 import org.kuali.rice.kim.document.KimTypeAttributesHelper;
 29  
 import org.kuali.rice.kim.service.*;
 30  
 import org.kuali.rice.kim.util.KIMPropertyConstants;
 31  
 import org.kuali.rice.kim.util.KimCommonUtilsInternal;
 32  
 import org.kuali.rice.kim.util.KimConstants;
 33  
 import org.kuali.rice.kns.bo.BusinessObject;
 34  
 import org.kuali.rice.kns.datadictionary.AttributeDefinition;
 35  
 import org.kuali.rice.kns.lookup.KualiLookupableHelperServiceImpl;
 36  
 import org.kuali.rice.kns.util.GlobalVariables;
 37  
 
 38  
 /**
 39  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 40  
  *
 41  
  */
 42  0
 public class KimDocumentRoleMemberLookupableHelperServiceImpl extends KualiLookupableHelperServiceImpl {
 43  
 
 44  
         private static final long serialVersionUID = 1L;
 45  
         private transient UiDocumentService uiDocumentService;
 46  
         private transient RoleService roleService;
 47  
         private transient KimTypeInfoService kimTypeInfoService;
 48  
         
 49  
         @SuppressWarnings("unchecked")
 50  
         protected List<? extends BusinessObject> getSearchResultsHelper(Map<String, String> fieldValues, boolean unbounded) {
 51  0
                 List<KimDocumentRoleMember> searchResults = new ArrayList<KimDocumentRoleMember>();
 52  0
                 IdentityManagementRoleDocument roleDocument = (IdentityManagementRoleDocument)GlobalVariables.getUserSession().retrieveObject(KimConstants.KimUIConstants.KIM_ROLE_DOCUMENT_SHORT_KEY);
 53  0
                 if(roleDocument!=null){
 54  0
                         String memberId = fieldValues.get(KimConstants.PrimaryKeyConstants.MEMBER_ID);
 55  0
                         String memberTypeCode = fieldValues.get(KIMPropertyConstants.KimMember.MEMBER_TYPE_CODE);
 56  0
                         String memberName = fieldValues.get(KimConstants.KimUIConstants.MEMBER_NAME);
 57  0
                         String memberNamespaceCode = fieldValues.get(KimConstants.KimUIConstants.MEMBER_NAMESPACE_CODE);
 58  0
                         String activeFromDate = fieldValues.get(KIMPropertyConstants.KimMember.ACTIVE_FROM_DATE);
 59  0
                         String activeToDate = fieldValues.get(KIMPropertyConstants.KimMember.ACTIVE_TO_DATE);
 60  0
                         List<KimDocumentRoleMember> currentRoleMembers = roleDocument.getMembers();
 61  0
                         if(currentRoleMembers!=null && !currentRoleMembers.isEmpty()){
 62  0
                                 for(KimDocumentRoleMember currentRoleMember: currentRoleMembers){
 63  0
                                         if((StringUtils.isEmpty(memberId) || (StringUtils.isNotEmpty(memberId) && memberId.equals(currentRoleMember.getMemberId())))
 64  
                                                         && (StringUtils.isEmpty(memberTypeCode) || (StringUtils.isNotEmpty(memberTypeCode) && memberTypeCode.equals(currentRoleMember.getMemberTypeCode())))
 65  
                                                         && (StringUtils.isEmpty(memberName) || (StringUtils.isNotEmpty(memberName) && memberName.equals(currentRoleMember.getMemberName())))
 66  
                                                         && (StringUtils.isEmpty(memberNamespaceCode) || (StringUtils.isNotEmpty(memberNamespaceCode) && memberNamespaceCode.equals(currentRoleMember.getMemberNamespaceCode())))
 67  
                                                         && (StringUtils.isEmpty(activeFromDate) || (StringUtils.isNotEmpty(activeFromDate) && activeFromDate.equals(currentRoleMember.getActiveFromDate())))
 68  
                                                         && (StringUtils.isEmpty(activeToDate) || (StringUtils.isNotEmpty(activeToDate) && activeToDate.equals(currentRoleMember.getActiveToDate())))){
 69  0
                                                 searchResults.add(currentRoleMember);
 70  
                                         }
 71  
                                 }
 72  
                         }
 73  0
                 } else{
 74  0
                         searchResults = getUiDocumentService().getRoleMembers(fieldValues);
 75  
                 }
 76  0
                 if(searchResults!=null){
 77  0
                         for(KimDocumentRoleMember roleMember: searchResults)
 78  0
                                 roleMember.setQualifiersToDisplay(getQualifiersToDisplay(roleMember));
 79  
                 }
 80  0
                 return searchResults;
 81  
         }
 82  
 
 83  
         public String getQualifiersToDisplay(KimDocumentRoleMember roleMember) {
 84  0
                 if(roleMember!=null && StringUtils.isNotEmpty(roleMember.getRoleId()) && 
 85  
                                 roleMember.getQualifiers()!=null && !roleMember.getQualifiers().isEmpty()){
 86  0
                         KimRoleInfo roleInfo = getRoleService().getRole(roleMember.getRoleId());
 87  0
                         KimTypeInfo kimType = null;
 88  0
                         if(roleInfo!=null)
 89  0
                                 kimType = getKimTypeInfoService().getKimType(roleInfo.getKimTypeId());
 90  0
                         if(kimType!=null){
 91  0
                                 KimTypeAttributesHelper attributesHelper = new KimTypeAttributesHelper(kimType);
 92  0
                                 StringBuffer attributesToDisplay = new StringBuffer();
 93  
                                 AttributeDefinition attribDefn;
 94  0
                                 for(KimDocumentRoleQualifier attribute: roleMember.getQualifiers()){
 95  0
                                         if(attribute.getKimAttribute()!=null){
 96  0
                                                 attribDefn = attributesHelper.getAttributeDefinition(attribute.getKimAttribute().getAttributeName());
 97  0
                                                 attributesToDisplay.append(attribDefn!=null?attribDefn.getLabel():"");
 98  0
                                                 attributesToDisplay.append(KimConstants.KimUIConstants.NAME_VALUE_SEPARATOR );
 99  0
                                                 attributesToDisplay.append(attribute.getAttrVal());
 100  0
                                                 attributesToDisplay.append(KimConstants.KimUIConstants.COMMA_SEPARATOR);
 101  
                                         }
 102  
                                 }
 103  0
                                 return KimCommonUtilsInternal.stripEnd(attributesToDisplay.toString(), KimConstants.KimUIConstants.COMMA_SEPARATOR);
 104  
                         }
 105  
                 }
 106  0
                 return "";
 107  
         }
 108  
 
 109  
         public RoleService getRoleService() {
 110  0
                 if ( roleService == null ) {
 111  0
                         roleService = KIMServiceLocator.getRoleService();
 112  
                 }
 113  0
                 return roleService;
 114  
         }
 115  
 
 116  
         public KimTypeInfoService getKimTypeInfoService() {
 117  0
                 if ( kimTypeInfoService == null ) {
 118  0
                         kimTypeInfoService = KIMServiceLocatorWeb.getTypeInfoService();
 119  
                 }
 120  0
                 return kimTypeInfoService;
 121  
         }
 122  
         
 123  
         public UiDocumentService getUiDocumentService() {
 124  0
                 if ( uiDocumentService == null ) {
 125  0
                         uiDocumentService = KIMServiceLocatorInternal.getUiDocumentService();
 126  
                 }
 127  0
                 return uiDocumentService;
 128  
         }
 129  
 }