Skip to main content

Deployer Extension - Handle Binary Unpublish

In case you have written any SDL Tridion Content Delivery Deployer extensions, you have noticed there is no easy way in intercepting the unpublish/undeploy of a binary. This blog post shows how to intercept such an action and execute your custom code on it.

The reason why it is hard to intercept a binary undeploy is because in fact the binary remove does not happen at Deployer level; rather, it takes place in the storage level. So the extension point to be used in not a Deployer extension, but a storage FileSystem or JPA extension.

File System

The following code implements a storage extension that intercepts the removal of a binary from the File System Content Data Storage (fka the File system broker):

package com.tridion.storage.toolkit;

@Component("FSBinaryDAOExtension")
@Scope("prototype")
public class FSBinaryDAOExtension extends FSBinaryContentDAO implements BinaryContentDAO {

    @Override
    public void remove(int publicationId, int binaryId, String variantId,
            String relativePath) throws StorageException {
        // Your custom code goes here

        super.remove(publicationId, binaryId, variantId, relativePath);

        // or here
    }
}

Notice the package must start with com.tridion.storage. Without it, it will not be found during the storage module initialization.

Depending on the requirement, you can place your custom code before or after the call to super.remove.

Database Storage (JPA)

The code below implements a storage extension that uses the Database storage for Content Delivery:

package com.tridion.storage.toolkit;

@Component("JPABinaryDAOExtension")
@Scope("prototype")
public class JPABinaryDAOExtension extends JPABinaryContentDAO implements BinaryContentDAO {

    @Override
    public void remove(int publicationId, int binaryId, String variantId,
            String relativePath) throws StorageException {
        // your custom code goes here

        super.remove(publicationId, binaryId, variantId, relativePath);

        // or here
    }
}

Also note the package must start with com.tridion.storage.

Bundle XML Descriptor

We must configure the custom classes in a bundle XML descriptor file. Below is such a file, in my case called toolkit_dao_bundle.xml:

<?xml version="1.0" encoding="UTF-8"?>
<StorageDAOBundles>
    <!-- Filesystem mappings -->
    <StorageDAOBundle type="filesystem">
        <StorageDAO typeMapping="Binary" 
                    class="com.tridion.storage.toolkit.FSBinaryDAOExtension"/>
    </StorageDAOBundle>

    <!-- Java Persistence API mappings -->
    <StorageDAOBundle type="persistence">
        <StorageDAO typeMapping="Binary" 
                    class="com.tridion.storage.toolkit.JPABinaryDAOExtension"/>
    </StorageDAOBundle>
</StorageDAOBundles>

Place the bundle configuration XML file either on the class-path of your Deployer, or package it in the root position inside your extension JAR.

Final Configuration

The final configuration must be made in cd_storage_conf.xml of you Deployer. Add the following line inside node Global / Storages / StorageBindings:

<Storages>
    <StorageBindings>
        <Bundle src="toolkit_dao_bundle.xml"/>
    </StorageBindings>
...

Restart the Deployer.

With all these configuration and code in place, your custom binary handling code should be called when a Binary is unpublished/undeployed. Remember that in Tridion binaries are only unpublished when they are not referenced anymore by any published Component.



Comments

Popular posts from this blog

Running sp_updatestats on AWS RDS database

Part of the maintenance tasks that I perform on a MSSQL Content Manager database is to run stored procedure sp_updatestats . exec sp_updatestats However, that is not supported on an AWS RDS instance. The error message below indicates that only the sa  account can perform this: Msg 15247 , Level 16 , State 1 , Procedure sp_updatestats, Line 15 [Batch Start Line 0 ] User does not have permission to perform this action. Instead there are several posts that suggest using UPDATE STATISTICS instead: https://dba.stackexchange.com/questions/145982/sp-updatestats-vs-update-statistics I stumbled upon the following post from 2008 (!!!), https://social.msdn.microsoft.com/Forums/sqlserver/en-US/186e3db0-fe37-4c31-b017-8e7c24d19697/spupdatestats-fails-to-run-with-permission-error-under-dbopriveleged-user , which describes a way to wrap the call to sp_updatestats and execute it under a different user: create procedure dbo.sp_updstats with execute as 'dbo' as...

REL Standard Tag Library

The RSTL is a library of REL tags providing standard functionality such as iterating collections, conditionals, imports, assignments, XML XSLT transformations, formatting dates, etc. RSTL distributable is available on my Google Code page under  REL Standard Tag Library . Always use the latest JAR . This post describes each RSTL tag in the library explaining its functionality, attributes and providing examples. For understanding the way expressions are evaluated, please read my post about the  Expression Language used by REL Standard Tag Library . <c:choose> / <c:when> / <c:otherwise> Syntax:     <c:choose>         <c:when test="expr1">             Do something         </c:when>         <c:when test="expr2">             Do something else         </c:when...

Publish Binaries to Mapped Structure Groups

Today's TBB of the Week comes from the high demand in the field to publish binary assets to different mapped Structure Groups. By default SDL Tridion offers two ways of publishing binaries: All binaries publish to a folder defined in your Publication properties; All binaries rendered by a given template publish to a folder corresponding to a given Structure Group; In my view, both cases are terrible, over-simplified and not representing a real use-case. Nobody in the field wants all binaries in one folder and nobody separates binary locations by template. Instead, everybody wants a mapping mechanism that takes a binary and publishes it to a given folder, defined by a Structure Group, and this mapping is done using some kind of metadata. More often than not, the metadata is the TCM Folder location of the Multimedia Component. I have seen this implemented numerous times. So the solution to publish binaries to a given location implies finding a mapping from a TCM Folder to a...