1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.service.impl; |
17 | |
|
18 | |
import org.kuali.rice.kim.bo.group.dto.GroupInfo; |
19 | |
import org.kuali.rice.kim.bo.group.impl.GroupMemberImpl; |
20 | |
import org.kuali.rice.kim.bo.impl.GroupImpl; |
21 | |
import org.kuali.rice.kim.service.IdentityManagementNotificationService; |
22 | |
import org.kuali.rice.kim.util.KIMPropertyConstants; |
23 | |
import org.kuali.rice.kim.util.KimConstants; |
24 | |
import org.kuali.rice.kim.util.KimConstants.KimGroupMemberTypes; |
25 | |
import org.kuali.rice.kns.service.BusinessObjectService; |
26 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
27 | |
import org.kuali.rice.kns.service.LookupService; |
28 | |
import org.kuali.rice.ksb.service.KSBServiceLocator; |
29 | |
|
30 | |
import javax.xml.namespace.QName; |
31 | |
import java.util.*; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | 0 | public abstract class GroupServiceBase { |
40 | |
private BusinessObjectService businessObjectService; |
41 | |
private LookupService lookupService; |
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
public GroupInfo getGroupInfo(String groupId) { |
47 | 0 | GroupImpl group = getGroupImpl(groupId); |
48 | 0 | return toGroupInfo(group); |
49 | |
} |
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | |
public boolean isGroupMemberOfGroup(String groupMemberId, String groupId) { |
57 | 0 | if( groupId == null || groupMemberId == null) { |
58 | 0 | return false; |
59 | |
} |
60 | |
|
61 | |
|
62 | |
|
63 | 0 | return isGroupMemberOfGroupInternal(groupMemberId, groupId); |
64 | |
} |
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
public GroupInfo getGroupInfoByName(String namespaceCode, String groupName) { |
70 | 0 | return toGroupInfo(getGroupByName(namespaceCode, groupName)); |
71 | |
} |
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | |
public Map<String, GroupInfo> getGroupInfos(Collection<String> groupIds) { |
77 | 0 | Map<String, GroupInfo> result = new HashMap<String, GroupInfo>(); |
78 | |
|
79 | |
|
80 | 0 | for (String s : groupIds) { |
81 | 0 | GroupImpl group = getGroupImpl(s); |
82 | 0 | if (group != null) { |
83 | 0 | result.put(s, toGroupInfo(group)); |
84 | |
} |
85 | 0 | } |
86 | |
|
87 | 0 | return result; |
88 | |
} |
89 | |
|
90 | |
protected GroupImpl getGroupImpl(String groupId) { |
91 | 0 | if ( groupId == null ) { |
92 | 0 | return null; |
93 | |
} |
94 | 0 | Map<String,String> criteria = new HashMap<String,String>(); |
95 | 0 | criteria.put(KIMPropertyConstants.Group.GROUP_ID, groupId); |
96 | 0 | return (GroupImpl) getBusinessObjectService().findByPrimaryKey(GroupImpl.class, criteria); |
97 | |
} |
98 | |
|
99 | |
@SuppressWarnings("unchecked") |
100 | |
protected GroupImpl getGroupByName(String namespaceCode, String groupName) { |
101 | 0 | if ( namespaceCode == null || groupName == null ) { |
102 | 0 | return null; |
103 | |
} |
104 | 0 | Map<String,String> criteria = new HashMap<String,String>(); |
105 | 0 | criteria.put(KimConstants.UniqueKeyConstants.NAMESPACE_CODE, namespaceCode); |
106 | 0 | criteria.put(KimConstants.UniqueKeyConstants.GROUP_NAME, groupName); |
107 | 0 | Collection<GroupImpl> groups = getBusinessObjectService().findMatching(GroupImpl.class, criteria); |
108 | 0 | if ( groups.size() > 0 ) { |
109 | 0 | return groups.iterator().next(); |
110 | |
} |
111 | 0 | return null; |
112 | |
} |
113 | |
|
114 | |
protected GroupInfo toGroupInfo(GroupImpl kimGroup) { |
115 | 0 | GroupInfo info = null; |
116 | |
|
117 | 0 | if (kimGroup != null) { |
118 | 0 | info = new GroupInfo(); |
119 | |
|
120 | 0 | info.setActive(kimGroup.isActive()); |
121 | 0 | info.setGroupDescription(kimGroup.getGroupDescription()); |
122 | 0 | info.setGroupId(kimGroup.getGroupId()); |
123 | 0 | info.setGroupName(kimGroup.getGroupName()); |
124 | 0 | info.setKimTypeId(kimGroup.getKimTypeId()); |
125 | 0 | info.setNamespaceCode(kimGroup.getNamespaceCode()); |
126 | |
|
127 | 0 | info.setAttributes(kimGroup.getAttributes()); |
128 | |
} |
129 | |
|
130 | 0 | return info; |
131 | |
} |
132 | |
|
133 | |
protected List<GroupInfo> toGroupInfo(List<GroupImpl> kimGroups){ |
134 | 0 | List<GroupInfo> lRet = null; |
135 | |
|
136 | 0 | if(kimGroups != null){ |
137 | 0 | lRet = new ArrayList<GroupInfo>(); |
138 | |
|
139 | 0 | for(GroupImpl gi: kimGroups){ |
140 | 0 | lRet.add(this.toGroupInfo(gi)); |
141 | |
} |
142 | |
} |
143 | |
|
144 | 0 | return lRet; |
145 | |
} |
146 | |
|
147 | |
protected boolean isGroupMemberOfGroupInternal(String groupMemberId, String groupId) { |
148 | |
|
149 | 0 | GroupImpl group = getGroupImpl(groupId); |
150 | 0 | if (group == null) { |
151 | 0 | return false; |
152 | |
} |
153 | 0 | if( !group.isActive() ) { |
154 | 0 | return false; |
155 | |
} |
156 | |
|
157 | 0 | for( String memberGroupId : group.getMemberGroupIds()) { |
158 | 0 | if(memberGroupId.equals(groupMemberId)) { |
159 | 0 | return true; |
160 | |
} |
161 | 0 | else if(isGroupMemberOfGroup(groupMemberId, memberGroupId)) { |
162 | 0 | return true; |
163 | |
} |
164 | |
} |
165 | |
|
166 | 0 | return false; |
167 | |
} |
168 | |
|
169 | |
@SuppressWarnings("unchecked") |
170 | |
protected Map<String,GroupInfo> getDirectParentGroups(String groupId) { |
171 | 0 | if ( groupId == null ) { |
172 | 0 | return Collections.emptyMap(); |
173 | |
} |
174 | 0 | Map<String,String> criteria = new HashMap<String,String>(); |
175 | 0 | criteria.put(KIMPropertyConstants.GroupMember.MEMBER_ID, groupId); |
176 | 0 | criteria.put(KIMPropertyConstants.GroupMember.MEMBER_TYPE_CODE, KimGroupMemberTypes.GROUP_MEMBER_TYPE); |
177 | |
|
178 | 0 | List<GroupMemberImpl> groupMembers = (List<GroupMemberImpl>)getBusinessObjectService().findMatching(GroupMemberImpl.class, criteria); |
179 | 0 | Set<String> matchingGroupIds = new HashSet<String>(); |
180 | |
|
181 | 0 | for ( GroupMemberImpl gm : groupMembers ) { |
182 | 0 | if ( gm.isActive() ) { |
183 | 0 | matchingGroupIds.add(gm.getGroupId()); |
184 | |
} |
185 | |
} |
186 | 0 | return getGroupInfos(matchingGroupIds); |
187 | |
} |
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
protected List<GroupInfo> getParentGroups(String groupId) { |
193 | 0 | if ( groupId == null ) { |
194 | 0 | return Collections.emptyList(); |
195 | |
} |
196 | 0 | Set<GroupInfo> groups = new HashSet<GroupInfo>(); |
197 | 0 | getParentGroupsInternal( groupId, groups ); |
198 | 0 | return new ArrayList<GroupInfo>( groups ); |
199 | |
} |
200 | |
|
201 | |
protected void getParentGroupsInternal( String groupId, Set<GroupInfo> groups ) { |
202 | 0 | Map<String,GroupInfo> parentGroups = getDirectParentGroups( groupId ); |
203 | 0 | for ( GroupInfo group : parentGroups.values() ) { |
204 | 0 | if ( !groups.contains( group ) ) { |
205 | 0 | groups.add( group ); |
206 | 0 | getParentGroupsInternal( group.getGroupId(), groups ); |
207 | |
} |
208 | |
} |
209 | 0 | } |
210 | |
|
211 | |
public List<String> getMemberPrincipalIds(String groupId) { |
212 | 0 | if ( groupId == null ) { |
213 | 0 | return Collections.emptyList(); |
214 | |
} |
215 | 0 | Set<String> ids = new HashSet<String>(); |
216 | 0 | Set<String> groupIds = new HashSet<String>(); |
217 | |
|
218 | 0 | GroupImpl group = getGroupImpl(groupId); |
219 | 0 | if ( group == null ) { |
220 | 0 | return Collections.emptyList(); |
221 | |
} |
222 | |
|
223 | 0 | ids.addAll( group.getMemberPrincipalIds() ); |
224 | 0 | groupIds.add(group.getGroupId()); |
225 | |
|
226 | 0 | for (String memberGroupId : group.getMemberGroupIds()) { |
227 | 0 | if (!groupIds.contains(memberGroupId)){ |
228 | 0 | ids.addAll(getMemberPrincipalIds(memberGroupId)); |
229 | |
} |
230 | |
} |
231 | |
|
232 | 0 | return new ArrayList<String>(ids); |
233 | |
} |
234 | |
|
235 | |
protected List<String> getMemberPrincipalIdsInternal(String groupId, Set<String> visitedGroupIds) { |
236 | 0 | if ( groupId == null ) { |
237 | 0 | return Collections.emptyList(); |
238 | |
} |
239 | 0 | Set<String> ids = new HashSet<String>(); |
240 | 0 | GroupImpl group = getGroupImpl(groupId); |
241 | 0 | if ( group == null ) { |
242 | 0 | return Collections.emptyList(); |
243 | |
} |
244 | |
|
245 | 0 | ids.addAll( group.getMemberPrincipalIds() ); |
246 | 0 | visitedGroupIds.add(group.getGroupId()); |
247 | |
|
248 | 0 | for (String memberGroupId : group.getMemberGroupIds()) { |
249 | 0 | if (!visitedGroupIds.contains(memberGroupId)){ |
250 | 0 | ids.addAll(getMemberPrincipalIdsInternal(memberGroupId, visitedGroupIds)); |
251 | |
} |
252 | |
} |
253 | |
|
254 | 0 | return new ArrayList<String>(ids); |
255 | |
} |
256 | |
|
257 | |
public boolean isMemberOfGroupInternal(String principalId, String groupId, Set<String> visitedGroupIds) { |
258 | 0 | if ( principalId == null || groupId == null ) { |
259 | 0 | return false; |
260 | |
} |
261 | |
|
262 | |
|
263 | 0 | GroupImpl group = getGroupImpl(groupId); |
264 | 0 | if ( group == null || !group.isActive() ) { |
265 | 0 | return false; |
266 | |
} |
267 | |
|
268 | 0 | for (String groupPrincipalId : group.getMemberPrincipalIds() ) { |
269 | 0 | if (groupPrincipalId.equals(principalId)) { |
270 | 0 | return true; |
271 | |
} |
272 | |
} |
273 | |
|
274 | |
|
275 | 0 | for ( String memberGroupId : group.getMemberGroupIds() ) { |
276 | 0 | if (!visitedGroupIds.contains(memberGroupId)){ |
277 | 0 | visitedGroupIds.add(memberGroupId); |
278 | 0 | if ( isMemberOfGroupInternal( principalId, memberGroupId, visitedGroupIds ) ) { |
279 | 0 | return true; |
280 | |
} |
281 | |
} |
282 | |
} |
283 | |
|
284 | |
|
285 | 0 | return false; |
286 | |
} |
287 | |
|
288 | |
protected IdentityManagementNotificationService getIdentityManagementNotificationService() { |
289 | 0 | return (IdentityManagementNotificationService)KSBServiceLocator.getMessageHelper().getServiceAsynchronously(new QName("KIM", "kimIdentityManagementNotificationService")); |
290 | |
} |
291 | |
|
292 | |
protected BusinessObjectService getBusinessObjectService() { |
293 | 0 | if ( businessObjectService == null ) { |
294 | 0 | businessObjectService = KNSServiceLocator.getBusinessObjectService(); |
295 | |
} |
296 | 0 | return businessObjectService; |
297 | |
} |
298 | |
|
299 | |
|
300 | |
|
301 | |
|
302 | |
protected LookupService getLookupService() { |
303 | 0 | if(lookupService == null) { |
304 | 0 | lookupService = KNSServiceLocator.getLookupService(); |
305 | |
} |
306 | 0 | return lookupService; |
307 | |
} |
308 | |
} |