ContentService Notifications Example
Find out more about ContentService Notifications and explore some example of how to use it
The ContentService class is the most commonly used type when extending Umbraco using notifications. ContentService implements IContentService. It provides access to operations involving IContent.
Usage
Example usage of the ContentPublishingNotification:
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Notifications;
namespace Umbraco.Docs.Samples.Web.Notifications
{
public class DontShout : INotificationHandler<ContentPublishingNotification>
{
public void Handle(ContentPublishingNotification notification)
{
foreach (var node in notification.PublishedEntities)
{
if (node.ContentType.Alias.Equals("announcement"))
{
var newsArticleTitle = node.GetValue<string>("title");
if (newsArticleTitle.Equals(newsArticleTitle.ToUpper()))
{
notification.CancelOperation(new EventMessage("Corporate style guideline infringement",
"Don't put the announcement title in upper case, no need to shout!",
EventMessageType.Error));
}
}
}
}
}
}
The handler will also need to be registered. See the Notifications article for specifics on how to do this.
Variants and Notifications
Umbraco V8 introduced the concept of Variants for Document Types, initially to allow different language variants of particular properties within a Document Type to be edited/translated based on the languages configured in your instance of Umbraco.
These variants can be saved, published, and unpublished independently of each other. (Unpublishing a 'mandatory language' variant of a content item - will trigger all culture variants to be unpublished).
This poses a problem when handling notifications from the ContentService - eg which culture got published? Do I want to run my 'custom' code that fires on save if it's only the Spanish version that's been published? Also, if only the Spanish variant is 'unpublished' - that feels like a different situation than if 'all the variants' have been 'unpublished'. Depending on which event you are handling there are helper methods you can call to find out.
Saving
When handling the ContentSavingNotification which will be published whenever a variant is saved. You can tell 'which' variant has triggered the save using an extension method on the ContentSavingNotification called 'IsSavingCulture'
public bool IsSavingCulture(IContent content, string culture);
As an example, you could check which cultures are being saved (it could be multiple if multiple checkboxes are checked)
public void Handle(ContentSavingNotification notification)
{
foreach (var entity in notification.SavedEntities)
{
// Cultures being saved
var savingCultures = entity.AvailableCultures
.Where(culture => notification.IsSavingCulture(entity, culture)).ToList();
// or
if (notification.IsSavingCulture(entity, "en-GB"))
{
// Do things differently if the UK version of the page is being saved.
}
}
}
Saved
With the Saved notification you can similarly use the 'HasSavedCulture' method of the 'ContentSavedNotification' to detect which culture caused the Save.
public bool HasSavedCulture(IContent content, string culture);
Unpublishing
When handling the Unpublishing notification, it might not work how you would expect. If 'all the variants' are being unpublished at the same time (or the mandatory language is being unpublished, which forces this to occur) then the Unpublishing notification will be published as expected.
public void Handle(ContentUnpublishingNotification notification)
{
foreach (var unPublishedEntity in notification.UnpublishedEntities)
{
// complete unpublishing of entity, all cultures
}
}
However, if only one variant is being unpublished, the Unpublishing event will not be triggered. This is because the content item itself is not fully 'unpublished' by the action. Instead, what occurs is a 'publish' action 'without' the unpublished variant.
You can therefore detect the Unpublishing of a variant in the publishing notification - using the IsUnpublishingCulture extension method of the ContentPublishingNotification
public void Handle(ContentPublishingNotification notification)
{
foreach (var node in notification.PublishedEntities)
{
if (notification.IsUnpublishingCulture(node, "da-DK"))
{
// Bye bye DK!
}
}
}
Unpublished
Again, the Unpublished notification does not get published when a single variant is Unpublished, instead, the Published notification can be used, and the 'HasUnpublishedCulture' extension method of the ContentPublishedNotification can determine which variant being unpublished triggered the publish.
public bool HasUnpublishedCulture(IContent content, string culture);
Publishing
When handling the ContentPublishingNotification which will be triggered whenever a variant is published (or unpublished - see note in the Unpublishing section above).
You can tell 'which' variant has triggered the publish using a helper method on the ContentPublishingNotification called IsPublishingCulture.
public bool IsPublishingCulture(IContent content, string culture);
For example, you could check which cultures are being published and act accordingly (it could be multiple if multiple checkboxes are checked).
public void Handle(ContentPublishingNotification notification)
{
foreach (var node in notification.PublishedEntities)
{
var publishingCultures = node.AvailableCultures
.Where(culture => notification.IsPublishingCulture(node, culture)).ToList();
var unPublishingCultures = node.AvailableCultures
.Where(culture => notification.IsUnpublishingCulture(node, culture)).ToList();
// or
if (notification.IsPublishingCulture(node, "da-DK"))
{
// Welcome back DK!
}
}
}
Published
In the Published notification you can similarly use the HasPublishedCulture and HasUnpublishedCulture methods of the 'ContentPublishedEventArgs' to detect which culture caused the Publish or the UnPublish if it was only a single non-mandatory variant that was unpublished.
public bool HasPublishedCulture(IContent content, string culture);
public bool HasUnpublishedCulture(ICotnent content, string culture);
IContent Helpers
In each of these notifications, the entities being Saved, Published, and Unpublished are IContent
entities. There are some useful helper methods on IContent to discover the status of the content item's variant cultures:
bool IsCultureAvailable(string culture);
bool IsCultureEdited(string culture);
bool IsCulturePublished(string culture);
Last updated