Restore file deleted on last commit
This commit is contained in:
parent
f9f93ac44a
commit
58ff4864e1
1 changed files with 114 additions and 0 deletions
|
@ -0,0 +1,114 @@
|
||||||
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
||||||
|
package edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
import edu.cornell.mannlib.vitro.webapp.beans.Individual;
|
||||||
|
import edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory;
|
||||||
|
|
||||||
|
public abstract class BaseObjectPropertyDataPostProcessor implements
|
||||||
|
ObjectPropertyDataPostProcessor {
|
||||||
|
|
||||||
|
private static final Log log = LogFactory.getLog(BaseObjectPropertyDataPostProcessor.class);
|
||||||
|
|
||||||
|
private static String KEY_SUBJECT = "subject";
|
||||||
|
private static final String KEY_PROPERTY = "property";
|
||||||
|
|
||||||
|
private static final Pattern QUERY_PATTERN = Pattern.compile("\\?" + KEY_SUBJECT + "\\s+\\?" + KEY_PROPERTY + "\\s+\\?(\\w+)");
|
||||||
|
|
||||||
|
protected ObjectPropertyTemplateModel objectPropertyTemplateModel;
|
||||||
|
protected WebappDaoFactory wdf;
|
||||||
|
|
||||||
|
public BaseObjectPropertyDataPostProcessor(ObjectPropertyTemplateModel optm, WebappDaoFactory wdf) {
|
||||||
|
this.objectPropertyTemplateModel = optm;
|
||||||
|
this.wdf = wdf;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void process(List<Map<String, String>> data) {
|
||||||
|
removeDuplicates(data);
|
||||||
|
for (Map<String, String> map : data) {
|
||||||
|
process(map);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected abstract void process(Map<String, String> map);
|
||||||
|
|
||||||
|
/** The SPARQL query results may contain duplicate rows for a single object, if there are multiple assertions for some of the
|
||||||
|
* other query variables. Remove duplicates here by arbitrarily selecting only the first row returned.
|
||||||
|
* @param List<Map<String, String>> data
|
||||||
|
*/
|
||||||
|
protected void removeDuplicates(List<Map<String, String>> data) {
|
||||||
|
String objectVariableName = getQueryObjectVariableName();
|
||||||
|
if (objectVariableName == null) {
|
||||||
|
log.error("Cannot remove duplicate statements for property " + objectPropertyTemplateModel.getName() + " because no object found to dedupe.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
List<String> foundObjects = new ArrayList<String>();
|
||||||
|
for (Map<String, String> map : data) {
|
||||||
|
String objectValue = map.get(objectVariableName);
|
||||||
|
// We arbitrarily remove all but the first. Not sure what selection criteria could be brought to bear on this.
|
||||||
|
if (foundObjects.contains(objectValue)) {
|
||||||
|
data.remove(map);
|
||||||
|
} else {
|
||||||
|
foundObjects.add(objectValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Return the name of the primary object variable of the query by inspecting the query string.
|
||||||
|
* The primary object is the X in the assertion "?subject ?property ?X".
|
||||||
|
*/
|
||||||
|
private String getQueryObjectVariableName() {
|
||||||
|
|
||||||
|
String object = null;
|
||||||
|
|
||||||
|
if (objectPropertyTemplateModel.hasDefaultListView()) {
|
||||||
|
object = ObjectPropertyTemplateModel.DEFAULT_LIST_VIEW_QUERY_OBJECT_VARIABLE_NAME;
|
||||||
|
log.debug("Using default list view for property " + objectPropertyTemplateModel.getUri() +
|
||||||
|
", so query object = '" + object + "'");
|
||||||
|
} else {
|
||||||
|
String queryString = objectPropertyTemplateModel.getQueryString();
|
||||||
|
Matcher m = QUERY_PATTERN.matcher(queryString);
|
||||||
|
if (m.find()) {
|
||||||
|
object = m.group(1);
|
||||||
|
log.debug("Query object for property " + objectPropertyTemplateModel.getUri() + " = '" + object + "'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return object;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Postprocessor helper methods callable from any postprocessor */
|
||||||
|
|
||||||
|
protected void addName(Map<String, String> map, String nameKey, String objectKey) {
|
||||||
|
String name = map.get(nameKey);
|
||||||
|
if (name == null) {
|
||||||
|
map.put(nameKey, getIndividual(map.get(objectKey)).getName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* This is a temporary measure to handle the fact that the current Individual.getMoniker()
|
||||||
|
* method returns the individual's VClass if moniker is null. We want to replicate that
|
||||||
|
* behavior here, but in future the moniker property (along with other Vitro namespace
|
||||||
|
* properties) will be removed. In addition, this type of logic (display x if it exists, otherwise y)
|
||||||
|
* will be moved into the display modules (Editing and Display Configuration Improvements).
|
||||||
|
*/
|
||||||
|
protected void addMoniker(Map<String, String> map, String monikerKey, String objectKey) {
|
||||||
|
String moniker = map.get(monikerKey);
|
||||||
|
if (moniker == null) {
|
||||||
|
map.put(monikerKey, getIndividual(map.get(objectKey)).getMoniker());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Individual getIndividual(String uri) {
|
||||||
|
return wdf.getIndividualDao().getIndividualByURI(uri);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue