Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

How can I programatically create a new version of an asset with new content?

Avatar

Level 2

I have 2 assets in the dam, lets call them A and B.

How can I programatically make a new version of A, and use the content of B as that new version?

 

AssetManager. createRevision makes a new version of A just fine, and I tried AssetManager.createAsset on the path of A using the stream I grabbed from asset B, but it doesnt go through.

 

A new version gets created but I'm having trouble adding B's content. It doesn't matter what happens to B as it will be deleted afterwards.

 

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 8

Hi @peter-g 

 

Yes, as you mentioned we need to use assetManager.createRevision() to create initial version of asset before replacing content of Asset A by Asset B. please check below code which will create version & replace content as expected.

 

try (ResourceResolver resourceResolver = request.getResourceResolver()){
AssetManager assetManager = resourceResolver.adaptTo(AssetManager.class);
Resource resourceAssetA = resourceResolver.getResource("/content/dam/test/jane_doe.jpg");
Resource resourceAssetB = resourceResolver.getResource("/content/dam/test/larry_spiller.jpg");

if(resourceAssetA!= null && resourceAssetB!= null) {
Asset assetA = resourceAssetA.adaptTo(Asset.class);
Asset assetB = resourceAssetB.adaptTo(Asset.class);
assetManager.createRevision(assetA, "message to create initial version of asset", assetA.getName());
Rendition renditionAssetB = assetB.getOriginal();
assetManager.createAsset(assetA.getPath(), renditionAssetB.getStream(), renditionAssetB.getMimeType(), false);
}

if(resourceResolver.hasChanges()){
resourceResolver.commit();
}
} catch (Exception e) {
e.printStackTrace();
}

 

 

Before creating version & replacing asset content :

 

before-version.PNG

 

 

 

After creating version & replacing asset content :

 

after-version.png

 

 

After deleting original asset(Asset B) from which content is copied from , it will not affect to asset(Asset A) which has copied content.

 

delete-version.PNG

 

 

-Manjunath

 

 

View solution in original post

6 Replies

Avatar

Correct answer by
Level 8

Hi @peter-g 

 

Yes, as you mentioned we need to use assetManager.createRevision() to create initial version of asset before replacing content of Asset A by Asset B. please check below code which will create version & replace content as expected.

 

try (ResourceResolver resourceResolver = request.getResourceResolver()){
AssetManager assetManager = resourceResolver.adaptTo(AssetManager.class);
Resource resourceAssetA = resourceResolver.getResource("/content/dam/test/jane_doe.jpg");
Resource resourceAssetB = resourceResolver.getResource("/content/dam/test/larry_spiller.jpg");

if(resourceAssetA!= null && resourceAssetB!= null) {
Asset assetA = resourceAssetA.adaptTo(Asset.class);
Asset assetB = resourceAssetB.adaptTo(Asset.class);
assetManager.createRevision(assetA, "message to create initial version of asset", assetA.getName());
Rendition renditionAssetB = assetB.getOriginal();
assetManager.createAsset(assetA.getPath(), renditionAssetB.getStream(), renditionAssetB.getMimeType(), false);
}

if(resourceResolver.hasChanges()){
resourceResolver.commit();
}
} catch (Exception e) {
e.printStackTrace();
}

 

 

Before creating version & replacing asset content :

 

before-version.PNG

 

 

 

After creating version & replacing asset content :

 

after-version.png

 

 

After deleting original asset(Asset B) from which content is copied from , it will not affect to asset(Asset A) which has copied content.

 

delete-version.PNG

 

 

-Manjunath

 

 

Avatar

Level 2
Hi Manjunath, I'm not sure why, but when I try the same steps, the content is still not copied over to the asset. The revision is created, but it has no new content. Do you know what might be the issue? Thanks

Avatar

Level 8

@peter-g

 please cross check below 2 things in your code & if these 2 are taken care then please share code snippet.

 

1. whether you have added resourceResolver.commit(); after version & asset creation line of code.

2. do you have required permission to created asset if you are using service resource resolver or not logged-in with admin credentials. it will throw error when you don't have required permission.

 

 

 

Avatar

Level 2
@Manjunath_K I checked both those things and no issues. It seems after more investigation that the "original" rendition of asset A is correctly showing the new content, but not the thumbnails. Is there some reason why my thumbnails are not being generated despite me using am.createAsset the same way you did?

Avatar

Level 8

@peter-g 

Check whether "DAM Update Asset" workflow is enabled or not? if it is in disabled state then that will be the reason thumbnails are not getting created on Asset modification.

 

Access http://localhost:4502/libs/cq/workflow/content/console.html , go to Launcher tab & check status of "DAM Update Asset"(with description "Update Asset - Modification"), it should be "true" if its enabled.

Avatar

Employee

Each time a page/asset is modified cq creates a version of the same. This modified resource modification time is set in jcr:lastModified property of the page/asset. Manipulation of this property can be done to save future date and activate page on that date though its not preferred way. You can store the future date as a property in the page/asset. Then you could write a workflow or a scheduled job which activates pages/assets with a future date.