Skip to main content

A DD4T.net Implementation - Everything's a Label

In my past couple of DD4T implementations, I came to realize that I am making heavy usage of a Label mechanism.

Naturally, I do this in order to internationalize my views. All strings that are not coming from Tridion (as content fields or metadata) and need to appear on the page, must come from a label.

In order to achieve this, I used Rob's excellent approach to Labels In Dynamic Delivery For Tridion, but that's not what I want to blog about here. In short, there are System Components in Tridion that are published as models and contain many key-value pairs representing each label. These Label Components are localized and translated, thus making your website/application internationalized.

But what I want to blog about here is much more than that. Namely, I noticed that besides the models published for Page/Component, DD4T is lacking many of the metadata that is useful for building models, rendering views, or simply getting information about items in Tridion, such as:
  • mapping names to TcmUris -- this simple feature would allow access to configuration values in DD4T in a unified way and in a context aware (i.e. Publication aware) situation. Example: being able to refer to a Component Template TcmUri by simply mentioning the View name;
  • retrieving arbitrary object metadata -- for example reading Publication metadata fields in DD4T;
To achieve this capability, I came up with a set of templates that are to be placed on the Label Page Template in the Tridion CM. Their goal is to create additional labels -- next to those already explicitly specified by the Label Components on the page -- adding information about mapping between names and TcmUris or Publication metadata.

I devised Template Building Blocks that look for Tridion items inside Publication container that are then used to create labels. I am looking for the following:
  • Schemas -- creates mapping labels from RootElement (the label key) to TcmUri of Schema (the label value);
  • Component Templates -- maps View Name metadata field to CT TcmUri;
  • Categories -- maps XmlName to Category TcmUri;
  • Publication metadata -- maps field names to field values;
Since the labels are a very flat structure, a dictionary actually, I need to prefix each of the generated label keys somehow and try make it unique so it doesn't collide with a user-specified label key. For example, for View name mappings I use key "VIEW-" + the name of the view, for Schemas "SCHEMA-" + RootElement names, etc.

In DD4T, I added additional utility methods to Rob's DD4TResourceProvider, which allow retrieval of normal and 'special' labels:

public static string GetLabel(string key)
{
    string publicationUrl = UriHelper.GetPublicationUrl(HttpContext.Current);
    IDictionary resources = GetResourceCache(publicationUrl);
    if (!resources.Contains(key))
    {
        return key;
    }

    return (string)resources[key];
}

public static string GetViewLabel(string viewOrTcmUri)
{
    if (UriHelper.IsValidTcmUri(viewOrTcmUri))
    {
        return viewOrTcmUri;
    }

    string templateUri = GetLabel("VIEW-" + viewOrTcmUri);
    return UriHelper.IsValidTcmUri(templateUri) ? templateUri : viewOrTcmUri;
}

public static string GetTaxonomyLabel(string categoryName)
{
    if (UriHelper.IsValidTcmUri(categoryName))
    {
        return categoryName;
    }

    string taxonomyUri = GetLabel("CATEGORY-" + categoryName);
    return UriHelper.IsValidTcmUri(taxonomyUri) ? taxonomyUri : categoryName;
}

The general idea is that if a label for the requested key is not available, the key itself will be returned.

Moreover, the viewOrTcmUri can be either a view name, and then it will be resolved and the mapped TcmUri will be retrieved (if found), or the viewOrTcmUri representing a TcmUri is returned.

The helper method UriHelper.GetPublicationUrl simply looks at the first one or two directory levels in the current request path and returns that as PublicationUrl identifier.

The other helper method UriHelper.IsValidTcmUri checks whether the parameter matches a RegularExpression identifying a TcmUri pattern.


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...

Toolkit - Performance

This post if part of a series about the File System Toolkit  - a custom content delivery API for SDL Tridion. This post presents performance data that was captured for each major functionality with and without caching Linking, CP Assembler, Component Presentation Factory, Dynamic Content Queries, Model Factory. The data was captured on a 2014 Macbook Pro 15", 16 GB RAM, 2.6 GHz Intel Core i7 running OS X El Capitan. Test methodology: each test was run for 3 minutes and the total number of successful Toolkit API calls was measured. Then the number of calls per second was computed 'with cache' and 'without cache' test runs. Then a cache boost factor was calculated by diving (the number of API calls with cache) / (number of API calls without cache). Each cache test was executed 3 times, with different cache time-to-live values of 1 second, 5 seconds and 0 seconds (eternal cache, no expiration). The rationale is to see what impact different cache expiration/evi...

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...