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

I Have Gone Dark

Maybe it's the Holidays, but my mood has gone pretty dark. That is, regarding the look and feel of my computer and Tridion CME, of course. What I did was to dim the lights on the operating system, so I installed Placebo themes for Windows 7 . I went for the Ashtray look -- great name :) My VM looks now like this: But, once you change the theme on Windows, you should 'match' the theme of your applications. Some skin easily, some not. The Office suite has an in-built scheme, which can be set to Black , but it doesn't actually dim the ribbon tool bars -- it looks quite weird. Yahoo Messenger is skinnable, but you can't change the big white panels where you actually 'chat'. Skype is not skinnable at all. For Chrome, there are plenty of grey themes. Now i'm using Pro Grey . But then I got into changing the theme of websites. While very few offer skinnable interfaces (as GMail does), I had to find a way to darken the websites... Enter Stylish -- a pl

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>         <c:otherwise>             Do something otherwise         </c:otherwise>     </c:choose> Att