Coverage Report - org.kuali.rice.kim.service.impl.GroupInternalServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
GroupInternalServiceImpl
0%
0/35
0%
0/12
2
GroupInternalServiceImpl$MembersDiff
0%
0/6
N/A
2
 
 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.service.impl;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.HashSet;
 20  
 import java.util.List;
 21  
 import java.util.Set;
 22  
 
 23  
 import javax.xml.namespace.QName;
 24  
 
 25  
 import org.apache.commons.collections.ListUtils;
 26  
 import org.kuali.rice.kew.exception.WorkflowRuntimeException;
 27  
 import org.kuali.rice.kew.messaging.MessageServiceNames;
 28  
 import org.kuali.rice.kew.workgroup.WorkgroupMembershipChangeProcessor;
 29  
 import org.kuali.rice.kim.bo.impl.GroupImpl;
 30  
 import org.kuali.rice.kim.service.GroupInternalService;
 31  
 import org.kuali.rice.kim.service.GroupService;
 32  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 33  
 import org.kuali.rice.kns.service.BusinessObjectService;
 34  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 35  
 import org.kuali.rice.ksb.messaging.service.KSBXMLService;
 36  
 import org.kuali.rice.ksb.service.KSBServiceLocator;
 37  
 
 38  
 /**
 39  
  * Concrete Implementation of {@link GroupInternalService}
 40  
  *
 41  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 42  
  *
 43  
  */
 44  0
 public class GroupInternalServiceImpl implements GroupInternalService {
 45  
     protected BusinessObjectService getBusinessObjectService() {
 46  0
             return KNSServiceLocator.getBusinessObjectService();
 47  
     }
 48  
 
 49  
 
 50  
     public GroupService getGroupService(){
 51  0
             return KIMServiceLocator.getGroupService();
 52  
     }
 53  
 
 54  
     public GroupImpl saveWorkgroup(GroupImpl group) {
 55  0
             GroupService ims = getGroupService();
 56  0
             List<String> oldIds = ims.getMemberPrincipalIds(group.getGroupId());
 57  0
         group = (GroupImpl)getBusinessObjectService().save( group );
 58  0
         List<String> newIds = ims.getMemberPrincipalIds(group.getGroupId());
 59  0
         updateForWorkgroupChange(group.getGroupId(), oldIds, newIds);
 60  0
         return group;
 61  
     }
 62  
 
 63  
     public void updateForWorkgroupChange(String groupId,
 64  
                     List<String> oldPrincipalIds, List<String> newPrincipalIds) {
 65  0
         MembersDiff membersDiff = getMembersDiff(oldPrincipalIds, newPrincipalIds);
 66  0
         for (String removedPrincipalId : membersDiff.getRemovedPrincipalIds()) {
 67  0
                 updateForUserRemovedFromGroup(removedPrincipalId, groupId);
 68  
         }
 69  0
         for (String addedPrincipalId : membersDiff.getAddedPrincipalIds()) {
 70  0
                 updateForUserAddedToGroup(addedPrincipalId, groupId);
 71  
         }
 72  0
     }
 73  
 
 74  
     public void updateForUserAddedToGroup(String principalId, String groupId) {
 75  
         // first verify that the user is still a member of the workgroup
 76  0
             if(getGroupService().isMemberOfGroup(principalId, groupId))
 77  
             {
 78  0
             KSBXMLService workgroupMembershipChangeProcessor = (KSBXMLService) KSBServiceLocator.getMessageHelper()
 79  
             .getServiceAsynchronously(new QName(MessageServiceNames.WORKGROUP_MEMBERSHIP_CHANGE_SERVICE));
 80  
             try {
 81  0
                 workgroupMembershipChangeProcessor.invoke(WorkgroupMembershipChangeProcessor
 82  
                         .getMemberAddedMessageContents(principalId, groupId));
 83  0
             } catch (Exception e) {
 84  0
                 throw new WorkflowRuntimeException(e);
 85  0
             }
 86  
             }
 87  0
     }
 88  
 
 89  
     public void updateForUserRemovedFromGroup(String principalId, String groupId) {
 90  
         // first verify that the user is no longer a member of the workgroup
 91  0
             if(!getGroupService().isMemberOfGroup(principalId, groupId))
 92  
             {
 93  0
             KSBXMLService workgroupMembershipChangeProcessor = (KSBXMLService) KSBServiceLocator.getMessageHelper()
 94  
             .getServiceAsynchronously(new QName(MessageServiceNames.WORKGROUP_MEMBERSHIP_CHANGE_SERVICE));
 95  
             try {
 96  0
                 workgroupMembershipChangeProcessor.invoke(WorkgroupMembershipChangeProcessor
 97  
                         .getMemberRemovedMessageContents(principalId, groupId));
 98  0
             } catch (Exception e) {
 99  0
                 throw new WorkflowRuntimeException(e);
 100  0
             }
 101  
             }
 102  
 
 103  0
     }
 104  
 
 105  
     private MembersDiff getMembersDiff(List<String> oldMemberPrincipalIds, List<String> newMemberPrincipalIds) {
 106  
 
 107  
             // ListUtils does not check the null case.  Which can happen when adding a new group
 108  
             // so, if they're null make them empty lists.
 109  0
             if(oldMemberPrincipalIds == null) oldMemberPrincipalIds = new ArrayList<String>();
 110  0
             if(newMemberPrincipalIds == null) newMemberPrincipalIds = new ArrayList<String>();
 111  
 
 112  0
         Set<String> addedPrincipalIds = new HashSet<String>(ListUtils.subtract(newMemberPrincipalIds, oldMemberPrincipalIds));
 113  0
         Set<String> removedPrincipalIds = new HashSet<String>(ListUtils.subtract(oldMemberPrincipalIds, newMemberPrincipalIds));
 114  0
         return new MembersDiff(addedPrincipalIds, removedPrincipalIds);
 115  
     }
 116  
 
 117  0
     private class MembersDiff {
 118  
         private final Set<String> addedPrincipalIds;
 119  
 
 120  
         private final Set<String> removedPrincipalIds;
 121  
 
 122  0
         public MembersDiff(Set<String> addedPrincipalIds, Set<String>removedPrincipalIds) {
 123  0
             this.addedPrincipalIds = addedPrincipalIds;
 124  0
             this.removedPrincipalIds = removedPrincipalIds;
 125  0
         }
 126  
 
 127  
         public Set<String> getAddedPrincipalIds() {
 128  0
             return addedPrincipalIds;
 129  
         }
 130  
 
 131  
         public Set<String> getRemovedPrincipalIds() {
 132  0
             return removedPrincipalIds;
 133  
         }
 134  
     }
 135  
 
 136  
 }