use of org.broadleafcommerce.openadmin.server.service.artifact.image.ImageMetadata in project BroadleafCommerce by BroadleafCommerce.
the class StaticAssetServiceImpl method createStaticAsset.
@Override
@Transactional(TransactionUtils.DEFAULT_TRANSACTION_MANAGER)
public StaticAsset createStaticAsset(InputStream inputStream, String fileName, long fileSize, Map<String, String> properties) {
if (properties == null) {
properties = new HashMap<String, String>();
}
String fullUrl = buildAssetURL(properties, fileName);
StringBuilder urlBuilder = new StringBuilder();
urlBuilder.append(fullUrl);
ExtensionResultStatusType resultStatusType = staticAssetExtensionManager.getProxy().modifyDuplicateAssetURL(urlBuilder);
fullUrl = urlBuilder.toString();
StaticAsset newAsset = staticAssetDao.readStaticAssetByFullUrl(fullUrl);
// logic for handling duplicate files.
if (resultStatusType != ExtensionResultStatusType.HANDLED) {
int count = 0;
while (newAsset != null) {
count++;
// try the new format first, then the old
newAsset = staticAssetDao.readStaticAssetByFullUrl(getCountUrl(fullUrl, count, false));
if (newAsset == null) {
newAsset = staticAssetDao.readStaticAssetByFullUrl(getCountUrl(fullUrl, count, true));
}
}
if (count > 0) {
fullUrl = getCountUrl(fullUrl, count, false);
}
}
try {
ImageMetadata metadata = imageArtifactProcessor.getImageMetadata(inputStream);
newAsset = new ImageStaticAssetImpl();
((ImageStaticAsset) newAsset).setWidth(metadata.getWidth());
((ImageStaticAsset) newAsset).setHeight(metadata.getHeight());
} catch (Exception e) {
// must not be an image stream
LOG.warn("unable to convert asset:" + fileName + " into Image");
LOG.debug(e);
if (getShouldAcceptNonImageAsset()) {
newAsset = createNonImageAsset(inputStream, fileName, properties);
} else {
throw new RuntimeException("Selected Asset/File was not valid image.");
}
}
if (storeAssetsOnFileSystem) {
newAsset.setStorageType(StorageType.FILESYSTEM);
} else {
newAsset.setStorageType(StorageType.DATABASE);
}
newAsset.setName(fileName);
getMimeType(inputStream, fileName, newAsset);
newAsset.setFileExtension(getFileExtension(fileName));
newAsset.setFileSize(fileSize);
newAsset.setFullUrl(fullUrl);
return staticAssetDao.addOrUpdateStaticAsset(newAsset, false);
}
Aggregations