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

Scaling Policies

This post is part of a bigger topic Autoscaling Publishers in AWS . In a previous post we talked about the Auto Scaling Groups , but we didn't go into details on the Scaling Policies. This is the purpose of this blog post. As defined earlier, the Scaling Policies define the rules according to which the group size is increased or decreased. These rules are based on instance metrics (e.g. CPU), CloudWatch custom metrics, or even CloudWatch alarms and their states and values. We defined a Scaling Policy with Steps, called 'increase_group_size', which is triggered first by the CloudWatch Alarm 'Publish_Alarm' defined earlier. Also depending on the size of the monitored CloudWatch custom metric 'Waiting for Publish', the Scaling Policy with Steps can add a difference number of instances to the group. The scaling policy sets the number of instances in group to 1 if there are between 1000 and 2000 items Waiting for Publish in the queue. It also sets the

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 - Dynamic Content Queries

This post if part of a series about the  File System Toolkit  - a custom content delivery API for SDL Tridion. This post presents the Dynamic Content Query capability. The requirements for the Toolkit API are that it should be able to provide CustomMeta queries, pagination, and sorting -- all on the file system, without the use third party tools (database, search engines, indexers, etc). Therefore I had to implement a simple database engine and indexer -- which is described in more detail in post Writing My Own Database Engine . The querying logic does not make use of cache. This means the query logic is executed every time. When models are requested, the models are however retrieved using the ModelFactory and those are cached. Query Class This is the main class for dynamic content queries. It is the entry point into the execution logic of a query. The class takes as parameter a Criterion (presented below) which triggers the execution of query in all sub-criteria of a Criterio