1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kns.service.impl; |
18 | |
|
19 | |
import org.apache.commons.beanutils.PropertyUtils; |
20 | |
import org.apache.commons.lang.StringUtils; |
21 | |
import org.kuali.rice.core.api.config.property.ConfigurationService; |
22 | |
import org.kuali.rice.core.xml.dto.AttributeSet; |
23 | |
import org.kuali.rice.kim.bo.Person; |
24 | |
import org.kuali.rice.kim.service.IdentityManagementService; |
25 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
26 | |
import org.kuali.rice.kim.util.KimConstants; |
27 | |
import org.kuali.rice.kns.authorization.BusinessObjectAuthorizer; |
28 | |
import org.kuali.rice.kns.authorization.BusinessObjectRestrictions; |
29 | |
import org.kuali.rice.kns.authorization.BusinessObjectRestrictionsBase; |
30 | |
import org.kuali.rice.kns.authorization.InquiryOrMaintenanceDocumentAuthorizer; |
31 | |
import org.kuali.rice.kns.authorization.InquiryOrMaintenanceDocumentPresentationController; |
32 | |
import org.kuali.rice.kns.authorization.InquiryOrMaintenanceDocumentRestrictions; |
33 | |
import org.kuali.rice.kns.authorization.InquiryOrMaintenanceDocumentRestrictionsBase; |
34 | |
import org.kuali.rice.kns.bo.BusinessObject; |
35 | |
import org.kuali.rice.kns.datadictionary.AttributeDefinition; |
36 | |
import org.kuali.rice.kns.datadictionary.AttributeSecurity; |
37 | |
import org.kuali.rice.kns.datadictionary.BusinessObjectEntry; |
38 | |
import org.kuali.rice.kns.datadictionary.FieldDefinition; |
39 | |
import org.kuali.rice.kns.datadictionary.InquiryCollectionDefinition; |
40 | |
import org.kuali.rice.kns.datadictionary.InquirySectionDefinition; |
41 | |
import org.kuali.rice.kns.datadictionary.MaintainableCollectionDefinition; |
42 | |
import org.kuali.rice.kns.datadictionary.MaintainableItemDefinition; |
43 | |
import org.kuali.rice.kns.datadictionary.MaintainableSectionDefinition; |
44 | |
import org.kuali.rice.kns.datadictionary.MaintenanceDocumentEntry; |
45 | |
import org.kuali.rice.kns.document.Document; |
46 | |
import org.kuali.rice.kns.document.MaintenanceDocument; |
47 | |
import org.kuali.rice.kns.document.authorization.DocumentAuthorizer; |
48 | |
import org.kuali.rice.kns.document.authorization.DocumentPresentationController; |
49 | |
import org.kuali.rice.kns.document.authorization.MaintenanceDocumentAuthorizer; |
50 | |
import org.kuali.rice.kns.document.authorization.MaintenanceDocumentPresentationController; |
51 | |
import org.kuali.rice.kns.document.authorization.MaintenanceDocumentRestrictions; |
52 | |
import org.kuali.rice.kns.document.authorization.MaintenanceDocumentRestrictionsBase; |
53 | |
import org.kuali.rice.kns.inquiry.InquiryAuthorizer; |
54 | |
import org.kuali.rice.kns.inquiry.InquiryPresentationController; |
55 | |
import org.kuali.rice.kns.inquiry.InquiryRestrictions; |
56 | |
import org.kuali.rice.kns.service.BusinessObjectAuthorizationService; |
57 | |
import org.kuali.rice.kns.service.BusinessObjectDictionaryService; |
58 | |
import org.kuali.rice.kns.service.DataDictionaryService; |
59 | |
import org.kuali.rice.kns.service.DocumentHelperService; |
60 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
61 | |
import org.kuali.rice.kns.service.KNSServiceLocatorWeb; |
62 | |
import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService; |
63 | |
import org.kuali.rice.kns.util.KNSConstants; |
64 | |
import org.kuali.rice.kns.util.KNSUtils; |
65 | |
import org.kuali.rice.kns.util.ObjectUtils; |
66 | |
|
67 | |
import java.util.Collection; |
68 | |
import java.util.HashMap; |
69 | |
import java.util.Iterator; |
70 | |
import java.util.List; |
71 | |
import java.util.Map; |
72 | |
|
73 | 0 | public class BusinessObjectAuthorizationServiceImpl implements |
74 | |
BusinessObjectAuthorizationService { |
75 | |
private DataDictionaryService dataDictionaryService; |
76 | |
private IdentityManagementService identityManagementService; |
77 | |
private BusinessObjectDictionaryService businessObjectDictionaryService; |
78 | |
private DocumentHelperService documentHelperService; |
79 | |
private MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService; |
80 | |
private ConfigurationService kualiConfigurationService; |
81 | |
|
82 | |
public BusinessObjectRestrictions getLookupResultRestrictions( |
83 | |
BusinessObject businessObject, Person user) { |
84 | 0 | BusinessObjectRestrictions businessObjectRestrictions = new BusinessObjectRestrictionsBase(); |
85 | 0 | considerBusinessObjectFieldUnmaskAuthorization(businessObject, user, |
86 | |
businessObjectRestrictions, "", null); |
87 | 0 | return businessObjectRestrictions; |
88 | |
} |
89 | |
|
90 | |
public InquiryRestrictions getInquiryRestrictions( |
91 | |
BusinessObject businessObject, Person user) { |
92 | 0 | InquiryRestrictions inquiryRestrictions = new InquiryOrMaintenanceDocumentRestrictionsBase(); |
93 | 0 | BusinessObjectEntry businessObjectEntry = getDataDictionaryService() |
94 | |
.getDataDictionary().getBusinessObjectEntry( |
95 | |
businessObject.getClass().getName()); |
96 | 0 | InquiryPresentationController inquiryPresentationController = getBusinessObjectDictionaryService() |
97 | |
.getInquiryPresentationController(businessObject.getClass()); |
98 | 0 | InquiryAuthorizer inquiryAuthorizer = getBusinessObjectDictionaryService() |
99 | |
.getInquiryAuthorizer(businessObject.getClass()); |
100 | 0 | considerBusinessObjectFieldUnmaskAuthorization(businessObject, user, |
101 | |
inquiryRestrictions, "", null); |
102 | 0 | considerBusinessObjectFieldViewAuthorization(businessObjectEntry, |
103 | |
businessObject, null, user, inquiryAuthorizer, inquiryRestrictions, |
104 | |
""); |
105 | 0 | considerInquiryOrMaintenanceDocumentPresentationController( |
106 | |
inquiryPresentationController, businessObject, |
107 | |
inquiryRestrictions); |
108 | 0 | considerInquiryOrMaintenanceDocumentAuthorizer(inquiryAuthorizer, |
109 | |
businessObject, user, inquiryRestrictions); |
110 | 0 | for (InquirySectionDefinition inquirySectionDefinition : businessObjectEntry.getInquiryDefinition().getInquirySections()) { |
111 | 0 | if (inquirySectionDefinition.getInquiryCollections() != null) { |
112 | 0 | addInquirableItemRestrictions(inquirySectionDefinition.getInquiryCollections().values(), inquiryAuthorizer, |
113 | |
inquiryRestrictions, businessObject, businessObject, "", user); |
114 | |
} |
115 | |
|
116 | 0 | List<FieldDefinition> inquiryFields = inquirySectionDefinition.getInquiryFields(); |
117 | 0 | if (inquiryFields != null) { |
118 | 0 | for (FieldDefinition fieldDefinition : inquiryFields) { |
119 | 0 | addInquirableItemRestrictions(inquiryFields, inquiryAuthorizer, |
120 | |
inquiryRestrictions, businessObject, businessObject, "", user); |
121 | |
} |
122 | |
} |
123 | 0 | } |
124 | |
|
125 | 0 | return inquiryRestrictions; |
126 | |
} |
127 | |
|
128 | |
public MaintenanceDocumentRestrictions getMaintenanceDocumentRestrictions( |
129 | |
MaintenanceDocument maintenanceDocument, Person user) { |
130 | |
|
131 | 0 | MaintenanceDocumentRestrictions maintenanceDocumentRestrictions = new MaintenanceDocumentRestrictionsBase(); |
132 | 0 | BusinessObjectEntry businessObjectEntry = getDataDictionaryService() |
133 | |
.getDataDictionary().getBusinessObjectEntry( |
134 | |
maintenanceDocument.getNewMaintainableObject() |
135 | |
.getBusinessObject().getClass().getName()); |
136 | 0 | MaintenanceDocumentPresentationController maintenanceDocumentPresentationController = (MaintenanceDocumentPresentationController) getDocumentHelperService() |
137 | |
.getDocumentPresentationController(maintenanceDocument); |
138 | 0 | MaintenanceDocumentAuthorizer maintenanceDocumentAuthorizer = (MaintenanceDocumentAuthorizer) getDocumentHelperService() |
139 | |
.getDocumentAuthorizer(maintenanceDocument); |
140 | 0 | considerBusinessObjectFieldUnmaskAuthorization(maintenanceDocument |
141 | |
.getNewMaintainableObject().getBusinessObject(), user, |
142 | |
maintenanceDocumentRestrictions, "", maintenanceDocument ); |
143 | 0 | considerBusinessObjectFieldViewAuthorization(businessObjectEntry, |
144 | |
maintenanceDocument.getNewMaintainableObject().getBusinessObject(), |
145 | |
null, user, maintenanceDocumentAuthorizer, |
146 | |
maintenanceDocumentRestrictions, ""); |
147 | 0 | considerBusinessObjectFieldModifyAuthorization(businessObjectEntry, |
148 | |
maintenanceDocument.getNewMaintainableObject().getBusinessObject(), |
149 | |
null, user, maintenanceDocumentAuthorizer, |
150 | |
maintenanceDocumentRestrictions, ""); |
151 | 0 | considerCustomButtonFieldAuthorization(businessObjectEntry, |
152 | |
maintenanceDocument.getNewMaintainableObject().getBusinessObject(), |
153 | |
null, user, maintenanceDocumentAuthorizer, |
154 | |
maintenanceDocumentRestrictions, ""); |
155 | 0 | considerInquiryOrMaintenanceDocumentPresentationController( |
156 | |
maintenanceDocumentPresentationController, maintenanceDocument, |
157 | |
maintenanceDocumentRestrictions); |
158 | 0 | considerInquiryOrMaintenanceDocumentAuthorizer( |
159 | |
maintenanceDocumentAuthorizer, maintenanceDocument, user, |
160 | |
maintenanceDocumentRestrictions); |
161 | 0 | considerMaintenanceDocumentPresentationController( |
162 | |
maintenanceDocumentPresentationController, maintenanceDocument, |
163 | |
maintenanceDocumentRestrictions); |
164 | 0 | considerMaintenanceDocumentAuthorizer(maintenanceDocumentAuthorizer, |
165 | |
maintenanceDocument, user, maintenanceDocumentRestrictions); |
166 | |
|
167 | 0 | MaintenanceDocumentEntry maintenanceDocumentEntry = getMaintenanceDocumentDictionaryService().getMaintenanceDocumentEntry(maintenanceDocument |
168 | |
.getDocumentHeader().getWorkflowDocument().getDocumentType()); |
169 | 0 | for (MaintainableSectionDefinition maintainableSectionDefinition : maintenanceDocumentEntry.getMaintainableSections()) { |
170 | 0 | addMaintainableItemRestrictions(maintainableSectionDefinition.getMaintainableItems(), maintenanceDocumentAuthorizer, maintenanceDocumentRestrictions, |
171 | |
maintenanceDocument, maintenanceDocument.getNewMaintainableObject().getBusinessObject(), "", user); |
172 | |
} |
173 | 0 | return maintenanceDocumentRestrictions; |
174 | |
} |
175 | |
|
176 | |
protected void considerBusinessObjectFieldUnmaskAuthorization( |
177 | |
BusinessObject businessObject, Person user, |
178 | |
BusinessObjectRestrictions businessObjectRestrictions, |
179 | |
String propertyPrefix, Document document ) { |
180 | 0 | BusinessObjectEntry businessObjectEntry = getDataDictionaryService() |
181 | |
.getDataDictionary().getBusinessObjectEntry( |
182 | |
businessObject.getClass().getName()); |
183 | 0 | for (String attributeName : businessObjectEntry.getAttributeNames()) { |
184 | 0 | AttributeDefinition attributeDefinition = businessObjectEntry |
185 | |
.getAttributeDefinition(attributeName); |
186 | 0 | if (attributeDefinition.getAttributeSecurity() != null) { |
187 | 0 | if (attributeDefinition.getAttributeSecurity().isMask() |
188 | |
&& !canFullyUnmaskField(user, |
189 | |
businessObject.getClass(), attributeName, document)) { |
190 | 0 | businessObjectRestrictions.addFullyMaskedField( |
191 | |
propertyPrefix + attributeName, attributeDefinition |
192 | |
.getAttributeSecurity().getMaskFormatter()); |
193 | |
} |
194 | 0 | if (attributeDefinition.getAttributeSecurity().isPartialMask() |
195 | |
&& !canPartiallyUnmaskField(user, businessObject |
196 | |
.getClass(), attributeName, document)) { |
197 | 0 | businessObjectRestrictions.addPartiallyMaskedField( |
198 | |
propertyPrefix + attributeName, attributeDefinition |
199 | |
.getAttributeSecurity() |
200 | |
.getPartialMaskFormatter()); |
201 | |
} |
202 | |
} |
203 | 0 | } |
204 | 0 | } |
205 | |
|
206 | |
|
207 | |
|
208 | |
|
209 | |
|
210 | |
|
211 | |
|
212 | |
|
213 | |
|
214 | |
|
215 | |
|
216 | |
protected void considerBusinessObjectFieldViewAuthorization( |
217 | |
BusinessObjectEntry businessObjectEntry, |
218 | |
BusinessObject primaryBusinessObject, |
219 | |
BusinessObject collectionItemBusinessObject, |
220 | |
Person user, |
221 | |
BusinessObjectAuthorizer businessObjectAuthorizer, |
222 | |
InquiryOrMaintenanceDocumentRestrictions inquiryOrMaintenanceDocumentRestrictions, |
223 | |
String propertyPrefix) { |
224 | 0 | for (String attributeName : businessObjectEntry.getAttributeNames()) { |
225 | 0 | AttributeDefinition attributeDefinition = businessObjectEntry |
226 | |
.getAttributeDefinition(attributeName); |
227 | 0 | if (attributeDefinition.getAttributeSecurity() != null) { |
228 | 0 | if (attributeDefinition.getAttributeSecurity().isHide()) { |
229 | 0 | AttributeSet collectionItemPermissionDetails = new AttributeSet(); |
230 | 0 | AttributeSet collectionItemRoleQualifications = null; |
231 | 0 | if (ObjectUtils.isNotNull(collectionItemBusinessObject)) { |
232 | 0 | collectionItemPermissionDetails.putAll(getFieldPermissionDetails(collectionItemBusinessObject, attributeName)); |
233 | 0 | collectionItemPermissionDetails.putAll(businessObjectAuthorizer. |
234 | |
getCollectionItemPermissionDetails(collectionItemBusinessObject)); |
235 | 0 | collectionItemRoleQualifications = new AttributeSet(businessObjectAuthorizer. |
236 | |
getCollectionItemRoleQualifications(collectionItemBusinessObject)); |
237 | |
} |
238 | |
else { |
239 | 0 | collectionItemPermissionDetails.putAll(getFieldPermissionDetails(primaryBusinessObject, attributeName)); |
240 | |
} |
241 | 0 | if (!businessObjectAuthorizer |
242 | |
.isAuthorizedByTemplate( |
243 | |
primaryBusinessObject, |
244 | |
KNSConstants.KNS_NAMESPACE, |
245 | |
KimConstants.PermissionTemplateNames.VIEW_FIELD, |
246 | |
user.getPrincipalId(), |
247 | |
collectionItemPermissionDetails, |
248 | |
collectionItemRoleQualifications)) { |
249 | 0 | inquiryOrMaintenanceDocumentRestrictions |
250 | |
.addHiddenField(propertyPrefix + attributeName); |
251 | |
} |
252 | |
} |
253 | |
} |
254 | 0 | } |
255 | 0 | } |
256 | |
|
257 | |
|
258 | |
|
259 | |
|
260 | |
|
261 | |
|
262 | |
|
263 | |
|
264 | |
|
265 | |
|
266 | |
|
267 | |
protected void considerBusinessObjectFieldModifyAuthorization( |
268 | |
BusinessObjectEntry businessObjectEntry, |
269 | |
BusinessObject primaryBusinessObject, |
270 | |
BusinessObject collectionItemBusinessObject, Person user, |
271 | |
BusinessObjectAuthorizer businessObjectAuthorizer, |
272 | |
MaintenanceDocumentRestrictions maintenanceDocumentRestrictions, |
273 | |
String propertyPrefix) { |
274 | 0 | for (String attributeName : businessObjectEntry.getAttributeNames()) { |
275 | 0 | AttributeDefinition attributeDefinition = businessObjectEntry |
276 | |
.getAttributeDefinition(attributeName); |
277 | 0 | if (attributeDefinition.getAttributeSecurity() != null) { |
278 | 0 | AttributeSet collectionItemPermissionDetails = new AttributeSet(); |
279 | 0 | AttributeSet collectionItemRoleQualifications = null; |
280 | 0 | if (ObjectUtils.isNotNull(collectionItemBusinessObject)) { |
281 | 0 | collectionItemPermissionDetails.putAll(getFieldPermissionDetails(collectionItemBusinessObject, attributeName)); |
282 | 0 | collectionItemPermissionDetails.putAll(businessObjectAuthorizer. |
283 | |
getCollectionItemPermissionDetails(collectionItemBusinessObject)); |
284 | 0 | collectionItemRoleQualifications = new AttributeSet(businessObjectAuthorizer. |
285 | |
getCollectionItemRoleQualifications(collectionItemBusinessObject)); |
286 | |
} |
287 | |
else { |
288 | 0 | collectionItemPermissionDetails.putAll(getFieldPermissionDetails(primaryBusinessObject, attributeName)); |
289 | |
} |
290 | 0 | if (attributeDefinition.getAttributeSecurity().isReadOnly()) { |
291 | 0 | if (!businessObjectAuthorizer |
292 | |
.isAuthorizedByTemplate( |
293 | |
primaryBusinessObject, |
294 | |
KNSConstants.KNS_NAMESPACE, |
295 | |
KimConstants.PermissionTemplateNames.MODIFY_FIELD, |
296 | |
user.getPrincipalId(), |
297 | |
collectionItemPermissionDetails, |
298 | |
collectionItemRoleQualifications)) { |
299 | 0 | maintenanceDocumentRestrictions |
300 | |
.addReadOnlyField(propertyPrefix + attributeName); |
301 | |
} |
302 | |
} |
303 | |
} |
304 | 0 | } |
305 | 0 | } |
306 | |
|
307 | |
|
308 | |
|
309 | |
|
310 | |
|
311 | |
|
312 | |
|
313 | |
|
314 | |
|
315 | |
|
316 | |
|
317 | |
protected void considerCustomButtonFieldAuthorization( |
318 | |
BusinessObjectEntry businessObjectEntry, |
319 | |
BusinessObject primaryBusinessObject, |
320 | |
BusinessObject collectionItemBusinessObject, |
321 | |
Person user, |
322 | |
BusinessObjectAuthorizer businessObjectAuthorizer, |
323 | |
MaintenanceDocumentRestrictions maintenanceDocumentRestrictions, |
324 | |
String propertyPrefix) { |
325 | 0 | for (String attributeName : businessObjectEntry.getAttributeNames()) { |
326 | 0 | AttributeDefinition attributeDefinition = businessObjectEntry |
327 | |
.getAttributeDefinition(attributeName); |
328 | 0 | if (attributeDefinition.getControl().isButton()) { |
329 | 0 | AttributeSet collectionItemPermissionDetails = new AttributeSet(); |
330 | 0 | AttributeSet collectionItemRoleQualifications = null; |
331 | 0 | if (ObjectUtils.isNotNull(collectionItemBusinessObject)) { |
332 | 0 | collectionItemPermissionDetails.putAll(getButtonFieldPermissionDetails(collectionItemBusinessObject, attributeName)); |
333 | 0 | collectionItemPermissionDetails.putAll(businessObjectAuthorizer. |
334 | |
getCollectionItemPermissionDetails(collectionItemBusinessObject)); |
335 | 0 | collectionItemRoleQualifications = new AttributeSet(businessObjectAuthorizer. |
336 | |
getCollectionItemRoleQualifications(collectionItemBusinessObject)); |
337 | |
} |
338 | |
else { |
339 | 0 | getButtonFieldPermissionDetails(primaryBusinessObject, attributeName); |
340 | |
} |
341 | |
|
342 | 0 | if (!businessObjectAuthorizer |
343 | |
.isAuthorizedByTemplate( |
344 | |
primaryBusinessObject, |
345 | |
KNSConstants.KNS_NAMESPACE, |
346 | |
KimConstants.PermissionTemplateNames.PERFORM_CUSTOM_MAINTENANCE_DOCUMENT_FUNCTION, |
347 | |
user.getPrincipalId(), |
348 | |
collectionItemPermissionDetails, |
349 | |
collectionItemRoleQualifications)) { |
350 | 0 | maintenanceDocumentRestrictions |
351 | |
.addHiddenField(propertyPrefix + attributeName); |
352 | |
} |
353 | |
} |
354 | 0 | } |
355 | 0 | } |
356 | |
|
357 | |
protected void considerInquiryOrMaintenanceDocumentPresentationController( |
358 | |
InquiryOrMaintenanceDocumentPresentationController businessObjectPresentationController, |
359 | |
BusinessObject businessObject, |
360 | |
InquiryOrMaintenanceDocumentRestrictions inquiryOrMaintenanceDocumentRestrictions) { |
361 | 0 | for (String attributeName : businessObjectPresentationController |
362 | |
.getConditionallyHiddenPropertyNames(businessObject)) { |
363 | 0 | inquiryOrMaintenanceDocumentRestrictions |
364 | |
.addHiddenField(attributeName); |
365 | |
} |
366 | 0 | for (String sectionId : businessObjectPresentationController |
367 | |
.getConditionallyHiddenSectionIds(businessObject)) { |
368 | 0 | inquiryOrMaintenanceDocumentRestrictions |
369 | |
.addHiddenSectionId(sectionId); |
370 | |
} |
371 | 0 | } |
372 | |
|
373 | |
protected void considerInquiryOrMaintenanceDocumentAuthorizer( |
374 | |
InquiryOrMaintenanceDocumentAuthorizer authorizer, |
375 | |
BusinessObject businessObject, Person user, |
376 | |
InquiryOrMaintenanceDocumentRestrictions restrictions) { |
377 | 0 | for (String sectionId : authorizer |
378 | |
.getSecurePotentiallyHiddenSectionIds()) { |
379 | 0 | Map<String, String> additionalPermissionDetails = new HashMap<String, String>(); |
380 | 0 | additionalPermissionDetails |
381 | |
.put(KimConstants.AttributeConstants.SECTION_ID, sectionId); |
382 | 0 | if (!authorizer.isAuthorizedByTemplate(businessObject, |
383 | |
KNSConstants.KNS_NAMESPACE, |
384 | |
KimConstants.PermissionTemplateNames.VIEW_SECTION, user |
385 | |
.getPrincipalId(), additionalPermissionDetails, |
386 | |
null)) { |
387 | 0 | restrictions.addHiddenSectionId(sectionId); |
388 | |
} |
389 | 0 | } |
390 | 0 | } |
391 | |
|
392 | |
protected void considerMaintenanceDocumentPresentationController( |
393 | |
MaintenanceDocumentPresentationController presentationController, |
394 | |
MaintenanceDocument document, |
395 | |
MaintenanceDocumentRestrictions restrictions) { |
396 | 0 | for (String attributeName : presentationController |
397 | |
.getConditionallyReadOnlyPropertyNames(document)) { |
398 | 0 | restrictions.addReadOnlyField(attributeName); |
399 | |
} |
400 | 0 | for (String sectionId : presentationController |
401 | |
.getConditionallyReadOnlySectionIds(document)) { |
402 | 0 | restrictions.addReadOnlySectionId(sectionId); |
403 | |
} |
404 | 0 | } |
405 | |
|
406 | |
protected void considerMaintenanceDocumentAuthorizer( |
407 | |
MaintenanceDocumentAuthorizer authorizer, |
408 | |
MaintenanceDocument document, Person user, |
409 | |
MaintenanceDocumentRestrictions restrictions) { |
410 | 0 | for (String sectionId : authorizer |
411 | |
.getSecurePotentiallyReadOnlySectionIds()) { |
412 | 0 | Map<String, String> additionalPermissionDetails = new HashMap<String, String>(); |
413 | 0 | additionalPermissionDetails |
414 | |
.put(KimConstants.AttributeConstants.SECTION_ID, sectionId); |
415 | 0 | if (!authorizer.isAuthorizedByTemplate(document, |
416 | |
KNSConstants.KNS_NAMESPACE, |
417 | |
KimConstants.PermissionTemplateNames.MODIFY_SECTION, user |
418 | |
.getPrincipalId(), additionalPermissionDetails, |
419 | |
null)) { |
420 | 0 | restrictions.addReadOnlySectionId(sectionId); |
421 | |
} |
422 | 0 | } |
423 | 0 | } |
424 | |
|
425 | |
@SuppressWarnings("unchecked") |
426 | |
protected void addInquirableItemRestrictions(Collection sectionDefinitions, |
427 | |
InquiryAuthorizer authorizer, InquiryRestrictions restrictions, |
428 | |
BusinessObject primaryBusinessObject, |
429 | |
BusinessObject businessObject, String propertyPrefix, Person user) { |
430 | 0 | for (Object inquirableItemDefinition : sectionDefinitions) { |
431 | 0 | if (inquirableItemDefinition instanceof InquiryCollectionDefinition) { |
432 | 0 | InquiryCollectionDefinition inquiryCollectionDefinition = (InquiryCollectionDefinition) inquirableItemDefinition; |
433 | 0 | BusinessObjectEntry collectionBusinessObjectEntry = getDataDictionaryService() |
434 | |
.getDataDictionary().getBusinessObjectEntry( |
435 | |
inquiryCollectionDefinition.getBusinessObjectClass().getName()); |
436 | |
|
437 | |
try { |
438 | 0 | Collection<BusinessObject> collection = (Collection<BusinessObject>) PropertyUtils |
439 | |
.getProperty(businessObject, |
440 | |
inquiryCollectionDefinition.getName()); |
441 | 0 | int i = 0; |
442 | 0 | for (Iterator<BusinessObject> iterator = collection.iterator(); iterator |
443 | 0 | .hasNext();) { |
444 | 0 | String newPropertyPrefix = propertyPrefix + inquiryCollectionDefinition.getName() + "[" + i + "]."; |
445 | 0 | BusinessObject collectionItemBusinessObject = iterator.next(); |
446 | 0 | considerBusinessObjectFieldUnmaskAuthorization( |
447 | |
collectionItemBusinessObject, user, restrictions, |
448 | |
newPropertyPrefix, null); |
449 | 0 | considerBusinessObjectFieldViewAuthorization( |
450 | |
collectionBusinessObjectEntry, primaryBusinessObject, collectionItemBusinessObject, |
451 | |
user, authorizer, restrictions, newPropertyPrefix); |
452 | 0 | addInquirableItemRestrictions( |
453 | |
inquiryCollectionDefinition |
454 | |
.getInquiryCollections(), |
455 | |
authorizer, |
456 | |
restrictions, |
457 | |
primaryBusinessObject, |
458 | |
collectionItemBusinessObject, |
459 | |
newPropertyPrefix, |
460 | |
user); |
461 | 0 | i++; |
462 | 0 | } |
463 | 0 | } catch (Exception e) { |
464 | 0 | throw new RuntimeException( |
465 | |
"Unable to resolve collection property: " |
466 | |
+ businessObject.getClass() + ":" |
467 | |
+ inquiryCollectionDefinition.getName(), e); |
468 | 0 | } |
469 | 0 | } |
470 | |
} |
471 | 0 | } |
472 | |
|
473 | |
@SuppressWarnings("unchecked") |
474 | |
protected void addMaintainableItemRestrictions(List<? extends MaintainableItemDefinition> itemDefinitions, |
475 | |
MaintenanceDocumentAuthorizer authorizer, |
476 | |
MaintenanceDocumentRestrictions restrictions, |
477 | |
MaintenanceDocument maintenanceDocument, |
478 | |
BusinessObject businessObject, String propertyPrefix, Person user) { |
479 | 0 | for (MaintainableItemDefinition maintainableItemDefinition : itemDefinitions) { |
480 | 0 | if (maintainableItemDefinition instanceof MaintainableCollectionDefinition) { |
481 | |
try { |
482 | 0 | MaintainableCollectionDefinition maintainableCollectionDefinition = (MaintainableCollectionDefinition) maintainableItemDefinition; |
483 | |
|
484 | 0 | Collection<BusinessObject> collection = (Collection<BusinessObject>) ObjectUtils |
485 | |
.getNestedValue(businessObject, |
486 | |
maintainableItemDefinition.getName()); |
487 | 0 | BusinessObjectEntry collectionBusinessObjectEntry = getDataDictionaryService() |
488 | |
.getDataDictionary().getBusinessObjectEntry( |
489 | |
maintainableCollectionDefinition.getBusinessObjectClass().getName()); |
490 | 0 | if (collection != null) { |
491 | 0 | int i = 0; |
492 | 0 | for (Iterator<BusinessObject> iterator = collection.iterator(); iterator |
493 | 0 | .hasNext();) { |
494 | 0 | String newPropertyPrefix = propertyPrefix + maintainableItemDefinition.getName() + "[" + i + "]."; |
495 | 0 | BusinessObject collectionBusinessObject = iterator.next(); |
496 | 0 | considerBusinessObjectFieldUnmaskAuthorization( |
497 | |
collectionBusinessObject, user, restrictions, |
498 | |
newPropertyPrefix, maintenanceDocument); |
499 | 0 | considerBusinessObjectFieldViewAuthorization( |
500 | |
collectionBusinessObjectEntry, maintenanceDocument, collectionBusinessObject, user, |
501 | |
authorizer, restrictions, newPropertyPrefix); |
502 | 0 | considerBusinessObjectFieldModifyAuthorization( |
503 | |
collectionBusinessObjectEntry, maintenanceDocument, collectionBusinessObject, user, |
504 | |
authorizer, restrictions, newPropertyPrefix); |
505 | 0 | addMaintainableItemRestrictions( |
506 | |
((MaintainableCollectionDefinition) maintainableItemDefinition) |
507 | |
.getMaintainableCollections(), |
508 | |
authorizer, restrictions, maintenanceDocument, |
509 | |
collectionBusinessObject, newPropertyPrefix, |
510 | |
user); |
511 | 0 | addMaintainableItemRestrictions( |
512 | |
((MaintainableCollectionDefinition) maintainableItemDefinition) |
513 | |
.getMaintainableFields(), authorizer, |
514 | |
restrictions, maintenanceDocument, |
515 | |
collectionBusinessObject, newPropertyPrefix, |
516 | |
user); |
517 | 0 | i++; |
518 | 0 | } |
519 | |
} |
520 | 0 | } catch (Exception e) { |
521 | 0 | throw new RuntimeException( |
522 | |
"Unable to resolve collection property: " |
523 | |
+ businessObject.getClass() + ":" |
524 | |
+ maintainableItemDefinition.getName(), e); |
525 | 0 | } |
526 | |
} |
527 | |
} |
528 | 0 | } |
529 | |
|
530 | |
public <T extends BusinessObject> boolean canFullyUnmaskField(Person user, |
531 | |
Class<T> businessObjectClass, String fieldName, Document document) { |
532 | |
|
533 | 0 | if(isNonProductionEnvAndUnmaskingTurnedOff()) |
534 | 0 | return false; |
535 | |
|
536 | 0 | if(user==null || StringUtils.isEmpty(user.getPrincipalId())) |
537 | 0 | return false; |
538 | 0 | Boolean result = null; |
539 | 0 | if (document != null) { |
540 | |
try { |
541 | 0 | result = getDocumentHelperService().getDocumentAuthorizer( document ) |
542 | |
.isAuthorizedByTemplate( document, |
543 | |
KNSConstants.KNS_NAMESPACE, |
544 | |
KimConstants.PermissionTemplateNames.FULL_UNMASK_FIELD, |
545 | |
user.getPrincipalId(), getFieldPermissionDetails(businessObjectClass, fieldName), null ); |
546 | 0 | } catch (IllegalArgumentException e) { |
547 | |
|
548 | |
|
549 | 0 | } |
550 | |
} |
551 | 0 | if (result == null) { |
552 | 0 | result = getIdentityManagementService().isAuthorizedByTemplateName( |
553 | |
user.getPrincipalId(), |
554 | |
KNSConstants.KNS_NAMESPACE, |
555 | |
KimConstants.PermissionTemplateNames.FULL_UNMASK_FIELD, |
556 | |
new AttributeSet(getFieldPermissionDetails(businessObjectClass, fieldName)), |
557 | |
null); |
558 | |
} |
559 | 0 | return result; |
560 | |
|
561 | |
} |
562 | |
|
563 | |
public <T extends BusinessObject> boolean canPartiallyUnmaskField( |
564 | |
Person user, Class<T> businessObjectClass, String fieldName, Document document) { |
565 | |
|
566 | 0 | if(isNonProductionEnvAndUnmaskingTurnedOff()) |
567 | 0 | return false; |
568 | |
|
569 | 0 | if(user==null || StringUtils.isEmpty(user.getPrincipalId())) |
570 | 0 | return false; |
571 | |
|
572 | 0 | if ( document == null ) { |
573 | 0 | return getIdentityManagementService().isAuthorizedByTemplateName( |
574 | |
user.getPrincipalId(), |
575 | |
KNSConstants.KNS_NAMESPACE, |
576 | |
KimConstants.PermissionTemplateNames.PARTIAL_UNMASK_FIELD, |
577 | |
new AttributeSet(getFieldPermissionDetails(businessObjectClass,fieldName)), |
578 | |
null); |
579 | |
} else { |
580 | 0 | return getDocumentHelperService().getDocumentAuthorizer( document ) |
581 | |
.isAuthorizedByTemplate( document, |
582 | |
KNSConstants.KNS_NAMESPACE, |
583 | |
KimConstants.PermissionTemplateNames.PARTIAL_UNMASK_FIELD, |
584 | |
user.getPrincipalId(), getFieldPermissionDetails(businessObjectClass, fieldName), null ); |
585 | |
} |
586 | |
} |
587 | |
|
588 | |
public <T extends BusinessObject> boolean canCreate(Class<T> boClass, Person user, String docTypeName){ |
589 | 0 | DocumentPresentationController documentPresentationController = getDocumentHelperService().getDocumentPresentationController(docTypeName); |
590 | 0 | boolean canCreate = ((MaintenanceDocumentPresentationController) documentPresentationController).canCreate(boClass); |
591 | 0 | if(canCreate){ |
592 | 0 | DocumentAuthorizer documentAuthorizer = getDocumentHelperService().getDocumentAuthorizer(docTypeName); |
593 | 0 | canCreate = ((MaintenanceDocumentAuthorizer) documentAuthorizer).canCreate(boClass, user); |
594 | |
} |
595 | 0 | return canCreate; |
596 | |
} |
597 | |
|
598 | |
public boolean canMaintain(BusinessObject businessObject, Person user, |
599 | |
String docTypeName) { |
600 | 0 | return ((MaintenanceDocumentAuthorizer) getDocumentHelperService() |
601 | |
.getDocumentAuthorizer(docTypeName)).canMaintain( |
602 | |
businessObject, user); |
603 | |
} |
604 | |
|
605 | |
protected <T extends BusinessObject> Map<String, String> getFieldPermissionDetails( |
606 | |
Class<T> businessObjectClass, String attributeName) { |
607 | |
try { |
608 | 0 | return getFieldPermissionDetails(businessObjectClass.newInstance(), |
609 | |
attributeName); |
610 | 0 | } catch (Exception e) { |
611 | 0 | throw new RuntimeException( |
612 | |
"The getPermissionDetails method of BusinessObjectAuthorizationServiceImpl was unable to instantiate the businessObjectClass" |
613 | |
+ businessObjectClass, e); |
614 | |
} |
615 | |
} |
616 | |
|
617 | |
protected Map<String, String> getFieldPermissionDetails( |
618 | |
BusinessObject businessObject, String attributeName) { |
619 | 0 | Map<String, String> permissionDetails = null; |
620 | 0 | String namespaceCode = null; |
621 | 0 | String componentName = null; |
622 | 0 | String propertyName = null; |
623 | |
|
624 | |
|
625 | |
|
626 | |
|
627 | |
|
628 | |
|
629 | |
|
630 | |
|
631 | |
|
632 | |
|
633 | |
|
634 | |
|
635 | |
|
636 | |
|
637 | |
|
638 | |
|
639 | |
|
640 | |
|
641 | |
|
642 | 0 | permissionDetails = KNSUtils |
643 | |
.getNamespaceAndComponentSimpleName(businessObject |
644 | |
.getClass()); |
645 | 0 | permissionDetails.put(KimConstants.AttributeConstants.PROPERTY_NAME, attributeName); |
646 | |
|
647 | 0 | return permissionDetails; |
648 | |
} |
649 | |
|
650 | |
protected Map<String, String> getButtonFieldPermissionDetails( |
651 | |
BusinessObject businessObject, String attributeName) { |
652 | 0 | Map<String, String> permissionDetails = new AttributeSet(); |
653 | 0 | if (attributeName.contains(".")) { |
654 | 0 | permissionDetails.put(KimConstants.AttributeConstants.BUTTON_NAME, attributeName); |
655 | |
} else { |
656 | 0 | permissionDetails.put(KimConstants.AttributeConstants.BUTTON_NAME, attributeName); |
657 | |
} |
658 | 0 | return permissionDetails; |
659 | |
} |
660 | |
|
661 | |
private DataDictionaryService getDataDictionaryService() { |
662 | 0 | if (dataDictionaryService == null) { |
663 | 0 | dataDictionaryService = KNSServiceLocatorWeb |
664 | |
.getDataDictionaryService(); |
665 | |
} |
666 | 0 | return dataDictionaryService; |
667 | |
} |
668 | |
|
669 | |
private IdentityManagementService getIdentityManagementService() { |
670 | 0 | if (identityManagementService == null) { |
671 | 0 | identityManagementService = KIMServiceLocator |
672 | |
.getIdentityManagementService(); |
673 | |
} |
674 | 0 | return identityManagementService; |
675 | |
} |
676 | |
|
677 | |
private BusinessObjectDictionaryService getBusinessObjectDictionaryService() { |
678 | 0 | if (businessObjectDictionaryService == null) { |
679 | 0 | businessObjectDictionaryService = KNSServiceLocatorWeb |
680 | |
.getBusinessObjectDictionaryService(); |
681 | |
} |
682 | 0 | return businessObjectDictionaryService; |
683 | |
} |
684 | |
|
685 | |
private DocumentHelperService getDocumentHelperService() { |
686 | 0 | if (documentHelperService == null) { |
687 | 0 | documentHelperService = KNSServiceLocatorWeb.getDocumentHelperService(); |
688 | |
} |
689 | 0 | return documentHelperService; |
690 | |
} |
691 | |
|
692 | |
private MaintenanceDocumentDictionaryService getMaintenanceDocumentDictionaryService() { |
693 | 0 | if (maintenanceDocumentDictionaryService == null) { |
694 | 0 | maintenanceDocumentDictionaryService = KNSServiceLocatorWeb |
695 | |
.getMaintenanceDocumentDictionaryService(); |
696 | |
} |
697 | 0 | return maintenanceDocumentDictionaryService; |
698 | |
} |
699 | |
|
700 | |
private ConfigurationService getKualiConfigurationService() { |
701 | 0 | if (kualiConfigurationService == null) { |
702 | 0 | kualiConfigurationService = KNSServiceLocator.getKualiConfigurationService(); |
703 | |
} |
704 | 0 | return kualiConfigurationService; |
705 | |
} |
706 | |
|
707 | |
|
708 | |
|
709 | |
|
710 | |
public boolean attributeValueNeedsToBeEncryptedOnFormsAndLinks( |
711 | |
Class<? extends BusinessObject> businessObjectClass, |
712 | |
String attributeName) { |
713 | 0 | AttributeSecurity attributeSecurity = getDataDictionaryService().getAttributeSecurity(businessObjectClass.getName(), attributeName); |
714 | 0 | return attributeSecurity != null && attributeSecurity.hasRestrictionThatRemovesValueFromUI(); |
715 | |
} |
716 | |
|
717 | |
private boolean isNonProductionEnvAndUnmaskingTurnedOff(){ |
718 | 0 | return !getKualiConfigurationService().isProductionEnvironment() && |
719 | |
!getKualiConfigurationService().getPropertyAsBoolean(KNSConstants.ENABLE_NONPRODUCTION_UNMASKING); |
720 | |
} |
721 | |
|
722 | |
} |