1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.authorization; |
17 | |
|
18 | |
import java.util.HashMap; |
19 | |
import java.util.Map; |
20 | |
|
21 | |
import org.kuali.rice.core.xml.dto.AttributeSet; |
22 | |
|
23 | |
import org.kuali.rice.kim.service.IdentityManagementService; |
24 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
25 | |
import org.kuali.rice.kim.service.PersonService; |
26 | |
import org.kuali.rice.kim.util.KimConstants; |
27 | |
import org.kuali.rice.kns.bo.BusinessObject; |
28 | |
import org.kuali.rice.kns.service.DataDictionaryService; |
29 | |
import org.kuali.rice.kns.service.KNSServiceLocatorWeb; |
30 | |
import org.kuali.rice.kns.service.KualiModuleService; |
31 | |
import org.kuali.rice.kns.service.PersistenceStructureService; |
32 | |
import org.kuali.rice.kns.util.GlobalVariables; |
33 | |
import org.kuali.rice.kns.util.KNSUtils; |
34 | |
|
35 | 0 | public class BusinessObjectAuthorizerBase implements BusinessObjectAuthorizer { |
36 | |
|
37 | |
|
38 | |
|
39 | |
private static IdentityManagementService identityManagementService; |
40 | |
private static PersonService personService; |
41 | |
private static KualiModuleService kualiModuleService; |
42 | |
private static DataDictionaryService dataDictionaryService; |
43 | |
private static PersistenceStructureService persistenceStructureService; |
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
|
55 | |
protected void addRoleQualification( |
56 | |
BusinessObject primaryBusinessObjectOrDocument, |
57 | |
Map<String, String> attributes) { |
58 | 0 | addStandardAttributes(primaryBusinessObjectOrDocument, attributes); |
59 | 0 | } |
60 | |
|
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | |
protected void addPermissionDetails( |
71 | |
BusinessObject primaryBusinessObjectOrDocument, |
72 | |
Map<String, String> attributes) { |
73 | 0 | addStandardAttributes(primaryBusinessObjectOrDocument, attributes); |
74 | 0 | } |
75 | |
|
76 | |
|
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
private void addStandardAttributes( |
84 | |
BusinessObject primaryBusinessObjectOrDocument, |
85 | |
Map<String, String> attributes) { |
86 | 0 | attributes |
87 | |
.putAll(KNSUtils |
88 | |
.getNamespaceAndComponentSimpleName(primaryBusinessObjectOrDocument |
89 | |
.getClass())); |
90 | 0 | } |
91 | |
|
92 | |
protected final boolean permissionExistsByTemplate( |
93 | |
BusinessObject businessObject, String namespaceCode, |
94 | |
String permissionTemplateName) { |
95 | 0 | return getIdentityManagementService() |
96 | |
.isPermissionDefinedForTemplateName( |
97 | |
namespaceCode, |
98 | |
permissionTemplateName, |
99 | |
new AttributeSet( |
100 | |
getPermissionDetailValues(businessObject))); |
101 | |
} |
102 | |
|
103 | |
protected final boolean permissionExistsByTemplate(String namespaceCode, |
104 | |
String permissionTemplateName, Map<String, String> permissionDetails) { |
105 | 0 | return getIdentityManagementService() |
106 | |
.isPermissionDefinedForTemplateName(namespaceCode, |
107 | |
permissionTemplateName, |
108 | |
new AttributeSet(permissionDetails)); |
109 | |
} |
110 | |
|
111 | |
protected final boolean permissionExistsByTemplate( |
112 | |
BusinessObject businessObject, String namespaceCode, |
113 | |
String permissionTemplateName, Map<String, String> permissionDetails) { |
114 | 0 | AttributeSet combinedPermissionDetails = new AttributeSet( |
115 | |
getPermissionDetailValues(businessObject)); |
116 | 0 | combinedPermissionDetails.putAll(permissionDetails); |
117 | 0 | return getIdentityManagementService() |
118 | |
.isPermissionDefinedForTemplateName(namespaceCode, |
119 | |
permissionTemplateName, combinedPermissionDetails); |
120 | |
} |
121 | |
|
122 | |
public final boolean isAuthorized(BusinessObject businessObject, |
123 | |
String namespaceCode, String permissionName, String principalId) { |
124 | 0 | return getIdentityManagementService().isAuthorized(principalId, |
125 | |
namespaceCode, permissionName, |
126 | |
new AttributeSet(getPermissionDetailValues(businessObject)), |
127 | |
new AttributeSet(getRoleQualification(businessObject, principalId))); |
128 | |
} |
129 | |
|
130 | |
public final boolean isAuthorizedByTemplate(BusinessObject businessObject, |
131 | |
String namespaceCode, String permissionTemplateName, |
132 | |
String principalId) { |
133 | 0 | return getIdentityManagementService().isAuthorizedByTemplateName( |
134 | |
principalId, namespaceCode, permissionTemplateName, |
135 | |
new AttributeSet(getPermissionDetailValues(businessObject)), |
136 | |
new AttributeSet(getRoleQualification(businessObject, principalId))); |
137 | |
} |
138 | |
|
139 | |
public final boolean isAuthorized(BusinessObject businessObject, |
140 | |
String namespaceCode, String permissionName, String principalId, |
141 | |
Map<String, String> collectionOrFieldLevelPermissionDetails, |
142 | |
Map<String, String> collectionOrFieldLevelRoleQualification) { |
143 | 0 | AttributeSet roleQualifiers = null; |
144 | 0 | AttributeSet permissionDetails = null; |
145 | 0 | if (collectionOrFieldLevelRoleQualification != null) { |
146 | 0 | roleQualifiers = new AttributeSet( |
147 | |
getRoleQualification(businessObject, principalId)); |
148 | 0 | roleQualifiers.putAll(collectionOrFieldLevelRoleQualification); |
149 | |
} else { |
150 | 0 | roleQualifiers = new AttributeSet( |
151 | |
getRoleQualification(businessObject, principalId)); |
152 | |
} |
153 | 0 | if (collectionOrFieldLevelPermissionDetails != null) { |
154 | 0 | permissionDetails = new AttributeSet( |
155 | |
getPermissionDetailValues(businessObject)); |
156 | 0 | permissionDetails.putAll(collectionOrFieldLevelPermissionDetails); |
157 | |
} else { |
158 | 0 | permissionDetails = new AttributeSet( |
159 | |
getPermissionDetailValues(businessObject)); |
160 | |
} |
161 | 0 | return getIdentityManagementService().isAuthorized(principalId, |
162 | |
namespaceCode, permissionName, permissionDetails, |
163 | |
roleQualifiers); |
164 | |
} |
165 | |
|
166 | |
public final boolean isAuthorizedByTemplate(BusinessObject businessObject, |
167 | |
String namespaceCode, String permissionTemplateName, |
168 | |
String principalId, |
169 | |
Map<String, String> collectionOrFieldLevelPermissionDetails, |
170 | |
Map<String, String> collectionOrFieldLevelRoleQualification) { |
171 | 0 | AttributeSet roleQualifiers = new AttributeSet( |
172 | |
getRoleQualification(businessObject, principalId)); |
173 | 0 | AttributeSet permissionDetails = new AttributeSet( |
174 | |
getPermissionDetailValues(businessObject)); |
175 | 0 | if (collectionOrFieldLevelRoleQualification != null) { |
176 | 0 | roleQualifiers.putAll(collectionOrFieldLevelRoleQualification); |
177 | |
} |
178 | 0 | if (collectionOrFieldLevelPermissionDetails != null) { |
179 | 0 | permissionDetails.putAll(collectionOrFieldLevelPermissionDetails); |
180 | |
} |
181 | 0 | return getIdentityManagementService().isAuthorizedByTemplateName( |
182 | |
principalId, namespaceCode, permissionTemplateName, |
183 | |
permissionDetails, roleQualifiers); |
184 | |
} |
185 | |
|
186 | |
|
187 | |
|
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
|
193 | |
|
194 | |
|
195 | |
protected final Map<String, String> getRoleQualification( |
196 | |
BusinessObject primaryBusinessObjectOrDocument) { |
197 | 0 | return getRoleQualification(primaryBusinessObjectOrDocument, GlobalVariables |
198 | |
.getUserSession().getPerson().getPrincipalId()); |
199 | |
} |
200 | |
|
201 | |
protected final Map<String, String> getRoleQualification( |
202 | |
BusinessObject primaryBusinessObjectOrDocument, String principalId) { |
203 | 0 | Map<String, String> roleQualification = new HashMap<String, String>(); |
204 | 0 | addRoleQualification(primaryBusinessObjectOrDocument, |
205 | |
roleQualification); |
206 | 0 | roleQualification.put(KimConstants.AttributeConstants.PRINCIPAL_ID, principalId); |
207 | 0 | return roleQualification; |
208 | |
} |
209 | |
|
210 | |
|
211 | |
|
212 | |
|
213 | |
|
214 | |
public Map<String, String> getCollectionItemPermissionDetails( |
215 | |
BusinessObject collectionItemBusinessObject) { |
216 | 0 | return new AttributeSet(); |
217 | |
} |
218 | |
|
219 | |
|
220 | |
|
221 | |
|
222 | |
public Map<String, String> getCollectionItemRoleQualifications( |
223 | |
BusinessObject collectionItemBusinessObject) { |
224 | 0 | return new AttributeSet(); |
225 | |
} |
226 | |
|
227 | |
|
228 | |
|
229 | |
|
230 | |
|
231 | |
|
232 | |
|
233 | |
|
234 | |
|
235 | |
|
236 | |
protected final Map<String, String> getPermissionDetailValues( |
237 | |
BusinessObject businessObject) { |
238 | 0 | Map<String, String> permissionDetails = new HashMap<String, String>(); |
239 | 0 | addPermissionDetails(businessObject, permissionDetails); |
240 | 0 | return permissionDetails; |
241 | |
} |
242 | |
|
243 | |
protected static final IdentityManagementService getIdentityManagementService() { |
244 | 0 | if (identityManagementService == null) { |
245 | 0 | identityManagementService = KIMServiceLocator.getIdentityManagementService(); |
246 | |
|
247 | |
} |
248 | 0 | return identityManagementService; |
249 | |
} |
250 | |
|
251 | |
protected static final PersonService getPersonService() { |
252 | 0 | if (personService == null) { |
253 | 0 | personService = KIMServiceLocator.getPersonService(); |
254 | |
} |
255 | 0 | return personService; |
256 | |
} |
257 | |
|
258 | |
protected static final KualiModuleService getKualiModuleService() { |
259 | 0 | if (kualiModuleService == null) { |
260 | 0 | kualiModuleService = KNSServiceLocatorWeb.getKualiModuleService(); |
261 | |
} |
262 | 0 | return kualiModuleService; |
263 | |
} |
264 | |
|
265 | |
protected static final DataDictionaryService getDataDictionaryService() { |
266 | 0 | if (dataDictionaryService == null) { |
267 | 0 | dataDictionaryService = KNSServiceLocatorWeb.getDataDictionaryService(); |
268 | |
|
269 | |
} |
270 | 0 | return dataDictionaryService; |
271 | |
} |
272 | |
} |