use of ddf.catalog.plugin.PolicyResponse in project ddf by codice.
the class QueryOperations method populateQueryRequestPolicyMap.
private QueryRequest populateQueryRequestPolicyMap(QueryRequest queryReq) throws FederationException {
HashMap<String, Set<String>> requestPolicyMap = new HashMap<>();
Map<String, Serializable> unmodifiableProperties = Collections.unmodifiableMap(queryReq.getProperties());
for (PolicyPlugin plugin : frameworkProperties.getPolicyPlugins()) {
try {
PolicyResponse policyResponse = plugin.processPreQuery(queryReq.getQuery(), unmodifiableProperties);
opsSecuritySupport.buildPolicyMap(requestPolicyMap, policyResponse.operationPolicy().entrySet());
} catch (StopProcessingException e) {
throw new FederationException("Query could not be executed.", e);
}
}
queryReq.getProperties().put(PolicyPlugin.OPERATION_SECURITY, requestPolicyMap);
return queryReq;
}
use of ddf.catalog.plugin.PolicyResponse in project ddf by codice.
the class UpdateOperations method populateUpdateRequestPolicyMap.
private UpdateRequest populateUpdateRequestPolicyMap(UpdateRequest updateRequest) throws StopProcessingException {
Map<String, Metacard> metacardMap = getUpdateMap(updateRequest);
HashMap<String, Set<String>> requestPolicyMap = new HashMap<>();
for (Map.Entry<Serializable, Metacard> update : updateRequest.getUpdates()) {
HashMap<String, Set<String>> itemPolicyMap = new HashMap<>();
HashMap<String, Set<String>> oldItemPolicyMap = new HashMap<>();
Metacard oldMetacard = metacardMap.get(update.getKey().toString());
for (PolicyPlugin plugin : frameworkProperties.getPolicyPlugins()) {
PolicyResponse updatePolicyResponse = plugin.processPreUpdate(update.getValue(), Collections.unmodifiableMap(updateRequest.getProperties()));
PolicyResponse oldPolicyResponse = plugin.processPreUpdate(oldMetacard, Collections.unmodifiableMap(updateRequest.getProperties()));
opsSecuritySupport.buildPolicyMap(itemPolicyMap, updatePolicyResponse.itemPolicy().entrySet());
opsSecuritySupport.buildPolicyMap(oldItemPolicyMap, oldPolicyResponse.itemPolicy().entrySet());
opsSecuritySupport.buildPolicyMap(requestPolicyMap, updatePolicyResponse.operationPolicy().entrySet());
}
update.getValue().setAttribute(new AttributeImpl(Metacard.SECURITY, itemPolicyMap));
if (oldMetacard != null) {
oldMetacard.setAttribute(new AttributeImpl(Metacard.SECURITY, oldItemPolicyMap));
}
}
updateRequest.getProperties().put(PolicyPlugin.OPERATION_SECURITY, requestPolicyMap);
return updateRequest;
}
use of ddf.catalog.plugin.PolicyResponse in project ddf by codice.
the class ResourceOperations method processPreResourcePolicyPlugins.
private ResourceRequest processPreResourcePolicyPlugins(ResourceRequest resourceReq) throws StopProcessingException {
HashMap<String, Set<String>> requestPolicyMap = new HashMap<>();
for (PolicyPlugin plugin : frameworkProperties.getPolicyPlugins()) {
PolicyResponse policyResponse = plugin.processPreResource(resourceReq);
opsSecuritySupport.buildPolicyMap(requestPolicyMap, policyResponse.operationPolicy().entrySet());
}
resourceReq.getProperties().put(PolicyPlugin.OPERATION_SECURITY, requestPolicyMap);
return resourceReq;
}
use of ddf.catalog.plugin.PolicyResponse in project ddf by codice.
the class PointOfContactPolicyPluginTest method processPreUpdateReturnsPolicyWhenNewPointOfContactIsNull.
@Test
public void processPreUpdateReturnsPolicyWhenNewPointOfContactIsNull() throws java.lang.Exception {
MetacardImpl oldMetacard = getMetacardWithPointOfContact(TEST_POINT_OF_CONTACT);
PolicyResponse response = pointOfContactPolicyPlugin.processPreUpdate(getMetacardWithPointOfContact(null), setupAndGetInputProperties(oldMetacard));
responseHasPolicy(response);
}
use of ddf.catalog.plugin.PolicyResponse in project ddf by codice.
the class PointOfContactPolicyPluginTest method processPostResourceDoesNothing.
@Test
public void processPostResourceDoesNothing() throws java.lang.Exception {
PolicyResponse response = pointOfContactPolicyPlugin.processPostResource(mock(ResourceResponse.class), new MetacardImpl());
responseIsEmpty(response);
}
Aggregations