Coverage Report - org.kuali.rice.kim.workflow.attribute.KimTypeQualifierResolver
 
Classes in this File Line Coverage Branch Coverage Complexity
KimTypeQualifierResolver
0%
0/106
0%
0/68
4.091
 
 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.workflow.attribute;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.Collections;
 20  
 import java.util.HashMap;
 21  
 import java.util.List;
 22  
 import java.util.Map;
 23  
 
 24  
 import org.apache.commons.lang.StringUtils;
 25  
 import org.apache.log4j.Logger;
 26  
 import org.kuali.rice.core.xml.dto.AttributeSet;
 27  
 import org.kuali.rice.kew.engine.RouteContext;
 28  
 import org.kuali.rice.kim.bo.group.dto.GroupInfo;
 29  
 import org.kuali.rice.kim.bo.role.dto.RoleMembershipInfo;
 30  
 import org.kuali.rice.kim.bo.types.dto.KimTypeInfo;
 31  
 import org.kuali.rice.kim.bo.ui.KimDocumentRoleMember;
 32  
 import org.kuali.rice.kim.bo.ui.PersonDocumentGroup;
 33  
 import org.kuali.rice.kim.bo.ui.PersonDocumentRole;
 34  
 import org.kuali.rice.kim.document.IdentityManagementGroupDocument;
 35  
 import org.kuali.rice.kim.document.IdentityManagementPersonDocument;
 36  
 import org.kuali.rice.kim.document.IdentityManagementRoleDocument;
 37  
 import org.kuali.rice.kim.service.*;
 38  
 import org.kuali.rice.kim.service.support.KimTypeService;
 39  
 import org.kuali.rice.kim.util.KimConstants;
 40  
 import org.kuali.rice.kns.document.Document;
 41  
 import org.kuali.rice.kns.workflow.attribute.QualifierResolverBase;
 42  
 
 43  
 /**
 44  
  * This is a description of what this class does - kellerj don't forget to fill this in. 
 45  
  * 
 46  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 47  
  *
 48  
  */
 49  0
 public class KimTypeQualifierResolver extends QualifierResolverBase {
 50  0
         private static final Logger LOG = Logger.getLogger(KimTypeQualifierResolver.class);
 51  
         
 52  
         protected static final String GROUP_ROUTE_LEVEL = "GroupType";
 53  
         protected static final String ROLE_ROUTE_LEVEL = "RoleType";
 54  
 
 55  
         private static KimTypeInfoService kimTypeInfoService;
 56  
         private static GroupService groupService;
 57  
         private static RoleService roleService;
 58  
         
 59  0
         protected static Map<String,KimTypeService> typeServices = new HashMap<String, KimTypeService>();
 60  
         
 61  
         /**
 62  
          * This overridden method ...
 63  
          * 
 64  
          * @see org.kuali.rice.kew.role.QualifierResolver#resolve(org.kuali.rice.kew.engine.RouteContext)
 65  
          */
 66  
         public List<AttributeSet> resolve(RouteContext context) {
 67  0
         String routeLevel = context.getNodeInstance().getName();
 68  0
         Document document = getDocument(context);
 69  0
         List<AttributeSet> qualifiers = new ArrayList<AttributeSet>();
 70  0
         String customDocTypeName = null;
 71  
         
 72  0
         if ( document instanceof IdentityManagementGroupDocument ) {
 73  0
                 customDocTypeName = handleGroupDocument(qualifiers, (IdentityManagementGroupDocument)document, routeLevel);
 74  0
         } else if ( document instanceof IdentityManagementRoleDocument ) {
 75  0
                 customDocTypeName = handleRoleDocument(qualifiers, (IdentityManagementRoleDocument)document, routeLevel);
 76  0
         } else if ( document instanceof IdentityManagementPersonDocument ) {
 77  0
                 customDocTypeName = handlePersonDocument(qualifiers, (IdentityManagementPersonDocument)document, routeLevel);
 78  
         }
 79  
             // add standard components
 80  0
         decorateWithCommonQualifiers(qualifiers, context, customDocTypeName);
 81  
             // return the resulting list of AttributeSets
 82  0
                 return qualifiers;
 83  
         }
 84  
 
 85  
         protected KimTypeService getTypeService( String typeId ) {
 86  0
             KimTypeService typeService = typeServices.get(typeId);
 87  0
             if ( typeService == null ) {                       
 88  0
                 KimTypeInfo typeInfo = getKimTypeInfoService().getKimType(typeId);
 89  0
                 if ( typeInfo != null ) {
 90  0
                         typeService = KIMServiceLocatorWeb.getKimTypeService(typeInfo);
 91  0
                         typeServices.put(typeId, typeService);
 92  
                 } else {
 93  0
                         LOG.warn( "Unable to retrieve KIM Type Info object for id: " + typeId );
 94  
                 }
 95  
             }
 96  0
             return typeService;
 97  
         }
 98  
         
 99  
         protected void putMatchingAttributesIntoQualifier( AttributeSet qualifier, AttributeSet itemAttributes, List<String> routingAttributes ) {
 100  0
                 if ( routingAttributes != null && !routingAttributes.isEmpty() ) {
 101  
                 // pull the qualifiers off the document object (group or role member)
 102  0
                     for ( String attribName : routingAttributes ) {
 103  0
                             qualifier.put( attribName, itemAttributes.get(attribName));
 104  
                     }
 105  
                 }
 106  0
         }
 107  
         
 108  
         protected String handleGroupDocument( List<AttributeSet> qualifiers, IdentityManagementGroupDocument groupDoc, String routeLevel ) {
 109  
             // get the appropriate type service for the group being edited
 110  0
             String typeId = groupDoc.getGroupTypeId();
 111  0
             qualifiers.add( getGroupQualifier(groupDoc.getGroupId(), typeId, groupDoc.getQualifiersAsAttributeSet(), routeLevel) );
 112  
             
 113  0
         return null;
 114  
         }
 115  
 
 116  
         protected String handleRoleDocument( List<AttributeSet> qualifiers, IdentityManagementRoleDocument roleDoc, String routeLevel ) {
 117  0
         String customDocTypeName = null;
 118  
 
 119  
 //        LOG.warn( "Role member data routing not implemented for the Role document yet!" );
 120  
             // get the appropriate type service for the group being edited
 121  0
             String typeId = roleDoc.getRoleTypeId();
 122  0
             KimTypeService typeService = getTypeService(typeId);
 123  0
             if ( typeService != null ) {
 124  
                     // QUESTION: can roles be modified in a way which requires routing?
 125  
                     // get the existing role members
 126  0
                     List<RoleMembershipInfo> currentRoleMembers = KIMServiceLocator.getRoleService().getRoleMembers( Collections.singletonList( roleDoc.getRoleId() ), null );
 127  
                     // loop over the role members on the document, check  if added or removed
 128  0
                     for ( KimDocumentRoleMember rm : roleDoc.getMembers() ) {
 129  0
                             boolean foundMember = false;
 130  0
                             for ( RoleMembershipInfo rmi : currentRoleMembers ) {
 131  0
                                     if ( rmi.getRoleMemberId().equals( rm.getRoleMemberId() ) ) {
 132  0
                                             foundMember = true;
 133  0
                                             if ( !rm.isActive() ) { // don't need to check the role member information 
 134  
                                                                                             // - only active members are returned
 135  
                                                     // inactivated member, add a qualifier
 136  0
                                                     qualifiers.add( getRoleQualifier(rm.getRoleId(), typeId, typeService, rm.getQualifierAsAttributeSet(), routeLevel) );
 137  
                                             }
 138  
                                             break;
 139  
                                     }
 140  
                             }
 141  0
                             if ( !foundMember ) {
 142  0
                                     qualifiers.add( getRoleQualifier(rm.getRoleId(), typeId, typeService, rm.getQualifierAsAttributeSet(), routeLevel) );
 143  
                             }
 144  0
                     }
 145  
                     
 146  0
                     customDocTypeName = typeService.getWorkflowDocumentTypeName();
 147  
             }                
 148  0
             return customDocTypeName;
 149  
         }
 150  
         
 151  
         protected String handlePersonDocument( List<AttributeSet> qualifiers, IdentityManagementPersonDocument personDoc, String routeLevel ) {
 152  
             // check the route level - see if we are doing groups or roles at the moment
 153  0
         String principalId = personDoc.getPrincipalId();
 154  0
         if ( GROUP_ROUTE_LEVEL.equals(routeLevel) ) {
 155  
                 // if groups, find any groups to which the user was added or removed
 156  
                 // get the type and service for each group
 157  
                 // handle as per the group document, a qualifier for each group
 158  0
                 List<String> currentGroups = getGroupService().getDirectGroupIdsForPrincipal(principalId);
 159  0
                 List<PersonDocumentGroup> groups = personDoc.getGroups();
 160  0
                 for ( PersonDocumentGroup group : groups ) {
 161  
                         // if they are being added to the group, add a qualifier set
 162  0
                         if ( group.isActive() && !currentGroups.contains( group.getGroupId() ) ) {
 163  
                             // pull the group to get its attributes for adding to the qualifier 
 164  0
                             GroupInfo kimGroup = getGroupService().getGroupInfo(group.getGroupId());
 165  0
                                 qualifiers.add( getGroupQualifier( group.getGroupId(), kimGroup.getKimTypeId(), kimGroup.getAttributes(), routeLevel ) );
 166  0
                         }
 167  
                 }
 168  
                 // detect removed groups
 169  
                 // get the existing directly assigned groups for the person
 170  0
                 for ( String groupId : currentGroups ) {
 171  0
                         for ( PersonDocumentGroup group : groups ) {
 172  0
                                 if ( !group.isActive() ) {
 173  0
                                 GroupInfo kimGroup = getGroupService().getGroupInfo(groupId);
 174  0
                                     qualifiers.add( getGroupQualifier( groupId, kimGroup.getKimTypeId(), kimGroup.getAttributes(), routeLevel ) );
 175  0
                                 }
 176  
                         }
 177  
                 }
 178  0
         } else if ( ROLE_ROUTE_LEVEL.equals(routeLevel) ) {
 179  
 //                getRoleService().get
 180  0
                 for ( PersonDocumentRole pdr : personDoc.getRoles() ) {
 181  0
                     KimTypeService typeService = getTypeService(pdr.getKimTypeId());
 182  0
                         for ( KimDocumentRoleMember rm : pdr.getRolePrncpls() ) {
 183  0
                                 boolean foundMember = false;
 184  0
                             for ( RoleMembershipInfo rmi : getRoleService().getRoleMembers( Collections.singletonList( rm.getRoleId() ), null ) ) {
 185  0
                                     if ( StringUtils.equals( rmi.getRoleMemberId(), rm.getRoleMemberId() ) ) {
 186  0
                                             foundMember = true;
 187  0
                                                 if ( !rm.isActive() ) { // don't need to check the role member information 
 188  
                                                                 // - only active members are returned
 189  
                                                         // inactivated member, add a qualifier
 190  0
                                                                 qualifiers.add( getRoleQualifier(rm.getRoleId(), pdr.getKimRoleType().getKimTypeId(), typeService, rm.getQualifierAsAttributeSet(), routeLevel) );
 191  
                                                         }
 192  
                                                         break;
 193  
                                     }
 194  
                             }
 195  0
                                 if ( !foundMember ) {
 196  0
                                         qualifiers.add( getRoleQualifier(rm.getRoleId(), pdr.getKimRoleType().getKimTypeId(), typeService, rm.getQualifierAsAttributeSet(), routeLevel) );
 197  
                                 }
 198  0
                         }
 199  0
                 }
 200  
                 // if roles, check the role member data for any roles added
 201  
                 // get the type and service for each role
 202  
                 // handle as for the role document, a qualifier for each role membership added
 203  
 //                LOG.warn( "Role-based data routing on the person document not implemented!" );
 204  
         }
 205  
         
 206  0
             return null;
 207  
         }
 208  
 
 209  
     protected AttributeSet getGroupQualifier( String groupId, String kimTypeId, AttributeSet groupAttributes, String routeLevel ) {
 210  0
                 AttributeSet qualifier = new AttributeSet();                                
 211  
                 // pull the group to get its attributes for adding to the qualifier 
 212  0
         qualifier.put(KimConstants.PrimaryKeyConstants.KIM_TYPE_ID, kimTypeId);
 213  0
         qualifier.put(KimConstants.AttributeConstants.QUALIFIER_RESOLVER_PROVIDED_IDENTIFIER, kimTypeId);
 214  0
         qualifier.put(KimConstants.PrimaryKeyConstants.GROUP_ID, groupId);
 215  0
             KimTypeService typeService = getTypeService(kimTypeId);
 216  0
             if ( typeService != null ) {
 217  
                     // check for the custom document type for the group
 218  0
                     String customDocTypeName = typeService.getWorkflowDocumentTypeName();
 219  0
                     if ( StringUtils.isNotBlank(customDocTypeName)) {
 220  0
                             qualifier.put(KIM_ATTRIBUTE_DOCUMENT_TYPE_NAME, customDocTypeName );
 221  
                     }
 222  0
                     putMatchingAttributesIntoQualifier(qualifier, groupAttributes, typeService.getWorkflowRoutingAttributes(routeLevel) );
 223  
             }
 224  0
             return qualifier;
 225  
     }
 226  
     
 227  
     protected AttributeSet getRoleQualifier( String roleId, String kimTypeId, KimTypeService typeService, AttributeSet roleAttributes, String routeLevel ) {
 228  0
                 AttributeSet qualifier = new AttributeSet();                                
 229  
                 // pull the group to get its attributes for adding to the qualifier 
 230  0
         qualifier.put(KimConstants.PrimaryKeyConstants.KIM_TYPE_ID, kimTypeId);
 231  0
         qualifier.put(KimConstants.AttributeConstants.QUALIFIER_RESOLVER_PROVIDED_IDENTIFIER, kimTypeId);
 232  0
         qualifier.put(KimConstants.PrimaryKeyConstants.ROLE_ID, roleId);
 233  
                 // check for the custom document type for the group
 234  0
                 String customDocTypeName = typeService.getWorkflowDocumentTypeName();
 235  0
                 if ( StringUtils.isNotBlank(customDocTypeName)) {
 236  0
                         qualifier.put(KIM_ATTRIBUTE_DOCUMENT_TYPE_NAME, customDocTypeName );
 237  
                 }
 238  0
                 putMatchingAttributesIntoQualifier(qualifier, roleAttributes, typeService.getWorkflowRoutingAttributes(routeLevel) );
 239  0
             return qualifier;
 240  
     }
 241  
         
 242  
         public KimTypeInfoService getKimTypeInfoService() {
 243  0
                 if ( kimTypeInfoService == null ) {
 244  0
                         kimTypeInfoService = KIMServiceLocatorWeb.getTypeInfoService();
 245  
                 }
 246  0
                 return kimTypeInfoService;
 247  
         }
 248  
 
 249  
         public static GroupService getGroupService() {
 250  0
                 if ( groupService == null ) {
 251  0
                         groupService = KIMServiceLocator.getGroupService();
 252  
                 }
 253  0
                 return groupService;
 254  
         }
 255  
 
 256  
         public static RoleService getRoleService() {
 257  0
                 if ( roleService == null ) {
 258  0
                         roleService = KIMServiceLocator.getRoleService();
 259  
                 }
 260  0
                 return roleService;
 261  
         }
 262  
 }