1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.service.impl; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.kuali.rice.core.api.namespace.Namespace; |
20 | |
import org.kuali.rice.core.api.services.CoreApiServiceLocator; |
21 | |
import org.kuali.rice.core.xml.dto.AttributeSet; |
22 | |
import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo; |
23 | |
import org.kuali.rice.kim.bo.types.dto.KimTypeInfo; |
24 | |
import org.kuali.rice.kim.util.KimConstants; |
25 | |
|
26 | |
import java.util.ArrayList; |
27 | |
import java.util.HashMap; |
28 | |
import java.util.List; |
29 | |
import java.util.Map; |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | 0 | public class NamespaceWildcardAllowedAndOrStringExactMatchPermissionTypeServiceImpl |
35 | |
extends NamespacePermissionTypeServiceImpl { |
36 | |
protected static final String NAMESPACE_CODE = KimConstants.UniqueKeyConstants.NAMESPACE_CODE; |
37 | |
|
38 | |
protected String exactMatchStringAttributeName; |
39 | |
protected boolean namespaceRequiredOnStoredAttributeSet; |
40 | |
|
41 | |
@Override |
42 | |
protected List<KimPermissionInfo> performPermissionMatches(AttributeSet requestedDetails, List<KimPermissionInfo> permissionsList) { |
43 | 0 | List<KimPermissionInfo> matchingPermissions = new ArrayList<KimPermissionInfo>(); |
44 | 0 | List<KimPermissionInfo> matchingBlankPermissions = new ArrayList<KimPermissionInfo>(); |
45 | 0 | String requestedAttributeValue = requestedDetails.get(exactMatchStringAttributeName); |
46 | 0 | for ( KimPermissionInfo kpi : permissionsList ) { |
47 | 0 | String permissionAttributeValue = kpi.getDetails().get(exactMatchStringAttributeName); |
48 | 0 | if ( StringUtils.equals(requestedAttributeValue, permissionAttributeValue) ) { |
49 | 0 | matchingPermissions.add(kpi); |
50 | 0 | } else if ( StringUtils.isBlank(permissionAttributeValue) ) { |
51 | 0 | matchingBlankPermissions.add(kpi); |
52 | |
} |
53 | 0 | } |
54 | |
|
55 | |
|
56 | 0 | if ( !matchingPermissions.isEmpty() ) { |
57 | 0 | List<KimPermissionInfo> matchingWithNamespace = super.performPermissionMatches(requestedDetails, matchingPermissions); |
58 | 0 | if ( !namespaceRequiredOnStoredAttributeSet ) { |
59 | |
|
60 | |
|
61 | 0 | if ( matchingWithNamespace.isEmpty() ) { |
62 | 0 | return matchingPermissions; |
63 | |
} |
64 | |
} |
65 | 0 | return matchingWithNamespace; |
66 | 0 | } else if ( !matchingBlankPermissions.isEmpty() ) { |
67 | 0 | List<KimPermissionInfo> matchingWithNamespace = super.performPermissionMatches(requestedDetails, matchingBlankPermissions); |
68 | 0 | if ( !namespaceRequiredOnStoredAttributeSet ) { |
69 | |
|
70 | |
|
71 | 0 | if ( matchingWithNamespace.isEmpty() ) { |
72 | 0 | return matchingBlankPermissions; |
73 | |
} |
74 | |
} |
75 | 0 | return matchingWithNamespace; |
76 | |
} |
77 | 0 | return matchingPermissions; |
78 | |
} |
79 | |
|
80 | |
public void setExactMatchStringAttributeName( |
81 | |
String exactMatchStringAttributeName) { |
82 | 0 | this.exactMatchStringAttributeName = exactMatchStringAttributeName; |
83 | 0 | requiredAttributes.add(exactMatchStringAttributeName); |
84 | 0 | } |
85 | |
|
86 | |
public void setNamespaceRequiredOnStoredAttributeSet( |
87 | |
boolean namespaceRequiredOnStoredAttributeSet) { |
88 | 0 | this.namespaceRequiredOnStoredAttributeSet = namespaceRequiredOnStoredAttributeSet; |
89 | 0 | } |
90 | |
|
91 | |
|
92 | |
|
93 | |
|
94 | |
@Override |
95 | |
protected Map<String, List<String>> validateReferencesExistAndActive(KimTypeInfo kimType, AttributeSet attributes, Map<String, String> previousValidationErrors) { |
96 | 0 | Map<String,List<String>> errors = new HashMap<String,List<String>>(); |
97 | 0 | AttributeSet nonNamespaceCodeAttributes = new AttributeSet(attributes); |
98 | |
|
99 | 0 | if (attributes.containsKey(NAMESPACE_CODE)) { |
100 | 0 | nonNamespaceCodeAttributes.remove(NAMESPACE_CODE); |
101 | 0 | final Namespace namespace = CoreApiServiceLocator.getNamespaceService().getNamespace(attributes.get(NAMESPACE_CODE)); |
102 | 0 | if (namespace != null) { |
103 | 0 | errors.putAll(super.validateReferencesExistAndActive(kimType, new AttributeSet(NAMESPACE_CODE, namespace.getCode()), previousValidationErrors)); |
104 | |
} else { |
105 | |
|
106 | 0 | errors.putAll(super.validateReferencesExistAndActive(kimType, new AttributeSet(NAMESPACE_CODE, attributes.get(NAMESPACE_CODE)), previousValidationErrors)); |
107 | |
} |
108 | |
} |
109 | |
|
110 | 0 | errors.putAll(super.validateReferencesExistAndActive(kimType, nonNamespaceCodeAttributes, previousValidationErrors)); |
111 | 0 | return errors; |
112 | |
} |
113 | |
} |