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

Get Asset version related to image change -color/size

Avatar

Community Advisor

Hi All, 

 

We are having a use case to get an asset version related to change in the asset birany (image itself such as image color, size change, not in metadata), not related to metadata change.

AEM creates an asset version for metadata and binary changes and stores into /jcr:system/jcr:versionStorage.

Can you guys please suggest an approach to get asset version related to binary change only, not metadata change?

 

Thanks in advance. 

 

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hello,

One way you could do this is by looking at the dam:size property of the asset, which is the size of the image in bytes. It does not change if you add or edit metadata (eg: Title), but it will change if authors edit the image. You won't be able to tell what changed specifically (could be flip, rotate or complete image change for example), but you'll be able to tell which revisions include image modifications.

Here is a quick-and-dirty servlet that does this comparison:

theop76211228_1-1585992770129.png

 

And here is the code:

@component(service = Servlet.class,
        property = {
                "sling.servlet.methods=" + HttpConstants.METHOD_GET,
                "sling.servlet.paths=" + "/bin/metadata"
        })
@ServiceDescription("Simple Demo Servlet")
@Slf4j
public class SimpleServlet extends SlingSafeMethodsServlet {

    private static final long serialVersionUID = 1L;

    private SlingHttpServletResponse response;

    @Override
    protected void doGet(final SlingHttpServletRequest req,
                         final SlingHttpServletResponse resp) throws ServletException, IOException {
        response = resp;
        resp.setContentType("text/plain");

        final Asset asset = req.getResourceResolver().getResource("/content/dam/demo/image.jpg").adaptTo(Asset.class);
        output(asset.getPath());

        final long currentSize = (long) asset.getMetadata().get(com.day.cq.dam.api.DamConstants.DAM_SIZE);

        final Collection<Revision> revisions;
        try {
            // Get all revisions
            final AssetManager assetManager = asset.adaptTo(AssetManager.class);
            revisions = assetManager.getRevisions(asset.getPath(), null);
            output("Revisions: " + revisions.size());

            // Sort by date
            final ArrayList<Revision> list = new ArrayList<>(revisions);
            list.sort(this::sortRevisionsByDateDesc);

            long latestSize = currentSize;
            for (final Revision revision : revisions) {
                final ValueMap metadata = revision.getMetadataProperties();
                final GregorianCalendar calendar = (GregorianCalendar) metadata.get(com.day.cq.dam.api.DamConstants.DC_MODIFIED);
                final DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");

                // Determine if the image was changed
                final long revisionSize = (long) revision.getMetadataProperties().get(com.day.cq.dam.api.DamConstants.DAM_SIZE);
                final boolean imageChanged = revisionSize != latestSize;

                if (imageChanged) {
                    latestSize = revisionSize;
                }

                // Output result
                output(formatter.format(calendar.getTime()) + " | Image changed: " + imageChanged);
            }
        } catch (final Exception e) {
            log.error("Unexpected error", e);
        }
    }

    private int sortRevisionsByDateDesc(final Revision a, final Revision b) {
        final GregorianCalendar calendarA = (GregorianCalendar) a.getMetadataProperties().get("dc:modified");
        final GregorianCalendar calendarB = (GregorianCalendar) b.getMetadataProperties().get("dc:modified");
        return calendarA.compareTo(calendarB) * -1;
    }

    private void output(final String string) throws IOException {
        response.getWriter().println(string);
    }
}

 

View solution in original post

3 Replies

Avatar

Correct answer by
Level 10

Hello,

One way you could do this is by looking at the dam:size property of the asset, which is the size of the image in bytes. It does not change if you add or edit metadata (eg: Title), but it will change if authors edit the image. You won't be able to tell what changed specifically (could be flip, rotate or complete image change for example), but you'll be able to tell which revisions include image modifications.

Here is a quick-and-dirty servlet that does this comparison:

theop76211228_1-1585992770129.png

 

And here is the code:

@component(service = Servlet.class,
        property = {
                "sling.servlet.methods=" + HttpConstants.METHOD_GET,
                "sling.servlet.paths=" + "/bin/metadata"
        })
@ServiceDescription("Simple Demo Servlet")
@Slf4j
public class SimpleServlet extends SlingSafeMethodsServlet {

    private static final long serialVersionUID = 1L;

    private SlingHttpServletResponse response;

    @Override
    protected void doGet(final SlingHttpServletRequest req,
                         final SlingHttpServletResponse resp) throws ServletException, IOException {
        response = resp;
        resp.setContentType("text/plain");

        final Asset asset = req.getResourceResolver().getResource("/content/dam/demo/image.jpg").adaptTo(Asset.class);
        output(asset.getPath());

        final long currentSize = (long) asset.getMetadata().get(com.day.cq.dam.api.DamConstants.DAM_SIZE);

        final Collection<Revision> revisions;
        try {
            // Get all revisions
            final AssetManager assetManager = asset.adaptTo(AssetManager.class);
            revisions = assetManager.getRevisions(asset.getPath(), null);
            output("Revisions: " + revisions.size());

            // Sort by date
            final ArrayList<Revision> list = new ArrayList<>(revisions);
            list.sort(this::sortRevisionsByDateDesc);

            long latestSize = currentSize;
            for (final Revision revision : revisions) {
                final ValueMap metadata = revision.getMetadataProperties();
                final GregorianCalendar calendar = (GregorianCalendar) metadata.get(com.day.cq.dam.api.DamConstants.DC_MODIFIED);
                final DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");

                // Determine if the image was changed
                final long revisionSize = (long) revision.getMetadataProperties().get(com.day.cq.dam.api.DamConstants.DAM_SIZE);
                final boolean imageChanged = revisionSize != latestSize;

                if (imageChanged) {
                    latestSize = revisionSize;
                }

                // Output result
                output(formatter.format(calendar.getTime()) + " | Image changed: " + imageChanged);
            }
        } catch (final Exception e) {
            log.error("Unexpected error", e);
        }
    }

    private int sortRevisionsByDateDesc(final Revision a, final Revision b) {
        final GregorianCalendar calendarA = (GregorianCalendar) a.getMetadataProperties().get("dc:modified");
        final GregorianCalendar calendarB = (GregorianCalendar) b.getMetadataProperties().get("dc:modified");
        return calendarA.compareTo(calendarB) * -1;
    }

    private void output(final String string) throws IOException {
        response.getWriter().println(string);
    }
}

 

Avatar

Community Advisor
Thank You theop76211228 for your time and sharing the solution. I was looking into lastModified properties at original asset level and metadata level but no luck.

Avatar

Community Advisor
Is there any way to filter out versioned binaries at query level ?