NIHVIVO-161 Tweaks to guard against null arguments. Add removeThumbnail() method.
This commit is contained in:
parent
54ccd08923
commit
a39d277ca1
1 changed files with 30 additions and 3 deletions
|
@ -68,7 +68,8 @@ public class FileModelHelper {
|
||||||
|
|
||||||
if (mainFile == null) {
|
if (mainFile == null) {
|
||||||
log.debug("Entity '" + entity.getURI()
|
log.debug("Entity '" + entity.getURI()
|
||||||
+ "' had no associated main image.");
|
+ "' had no associated main image: mainImageURI="
|
||||||
|
+ entity.getMainImageUri());
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
log.debug("Entity '" + entity.getURI()
|
log.debug("Entity '" + entity.getURI()
|
||||||
|
@ -366,6 +367,25 @@ public class FileModelHelper {
|
||||||
return mainImage;
|
return mainImage;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the current thumbnail from this entity;
|
||||||
|
*
|
||||||
|
* @return the file surrogate, or <code>null</code> if there was none.
|
||||||
|
*/
|
||||||
|
public Individual removeThumbnail(Individual person) {
|
||||||
|
Individual mainImage = getMainImage(person);
|
||||||
|
Individual thumbnail = getThumbnailForImage(mainImage);
|
||||||
|
if (thumbnail == null) {
|
||||||
|
log.debug("No thumbnail to remove from '" + person.getURI() + "'");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
ObjectPropertyStatement stmt = new ObjectPropertyStatementImpl(
|
||||||
|
mainImage.getURI(), VitroVocabulary.FS_THUMBNAIL_IMAGE,
|
||||||
|
thumbnail.getURI());
|
||||||
|
objectPropertyStatementDao.deleteObjectPropertyStatement(stmt);
|
||||||
|
return thumbnail;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Store this file surrogate as the thumnail on this entity.
|
* Store this file surrogate as the thumnail on this entity.
|
||||||
*/
|
*/
|
||||||
|
@ -383,6 +403,9 @@ public class FileModelHelper {
|
||||||
* file surrogate?
|
* file surrogate?
|
||||||
*/
|
*/
|
||||||
public boolean isFileReferenced(Individual surrogate) {
|
public boolean isFileReferenced(Individual surrogate) {
|
||||||
|
if (surrogate == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
ObjectPropertyStatement opStmt = new ObjectPropertyStatementImpl(null,
|
ObjectPropertyStatement opStmt = new ObjectPropertyStatementImpl(null,
|
||||||
null, surrogate.getURI());
|
null, surrogate.getURI());
|
||||||
List<ObjectPropertyStatement> stmts = objectPropertyStatementDao
|
List<ObjectPropertyStatement> stmts = objectPropertyStatementDao
|
||||||
|
@ -405,8 +428,12 @@ public class FileModelHelper {
|
||||||
*/
|
*/
|
||||||
public void removeFileFromModel(Individual surrogate) {
|
public void removeFileFromModel(Individual surrogate) {
|
||||||
Individual bytestream = getBytestreamForFile(surrogate);
|
Individual bytestream = getBytestreamForFile(surrogate);
|
||||||
|
if (bytestream != null) {
|
||||||
individualDao.deleteIndividual(bytestream);
|
individualDao.deleteIndividual(bytestream);
|
||||||
|
}
|
||||||
|
if (surrogate != null) {
|
||||||
individualDao.deleteIndividual(surrogate);
|
individualDao.deleteIndividual(surrogate);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue