Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Personalization provides the possibility to personalize website content to specific visitor groups so that different content will be displayed to different visitors, bringing a more personalized website experience. The personalization feature is based on the visitor group criteria concept. All EPiServer products contain criteria that are ready to use, but it is also possible to develop your own criteria. This document explains the concept and describes the procedure for creating customized visitor group criteria.
Visitor group criteria are the basic building blocks of a visitor group, each criterion defines a condition that is evaluated to determine if a visitor is part of the visitor group. If a sufficient number of criteria in a visitor group are fulfilled the visitor is considered to be a member of that group. The following example shows a Time of Day criterion that is fulfilled if the current time is between 8 AM and 12 PM except on weekends:
From a development standpoint, a visitor group criterion is a combination of (at least) two classes:
Make sure that your project references and the following assemblies contain the classes you need to create criteria and models:
The model class stores and persists user input from the UI and provides the criterion class with easy access to the settings. The model class must implement ICriterionModel and, since instances of the model class will be persisted to the Dynamic Data Store, IDynamicData. The best way of implementing those interfaces is by inheriting from CriterionModelBase which contain standard implementations.
The only method you must override is CriterionModelBase.Copy, if you are working with simple value type properties it is sufficient to let your override call base.ShallowCopy. If your model has reference type properties and you want to make sure that each instance of the model has its own copy of the referenced objects you need to do extend the Copy override with more logic.
public class YourModelClass : CriterionModelBase
{
public override ICriterionModel Copy() { return base.ShallowCopy(); }
}
Add public properties to your class that correspond to the settings you wish to be available in the UI, where inputs will be created for all the public properties. Depending on the type of the property a suitable dojo widget (we use the Dojo client side framework) will be used when editing the criterion.
public string MyString { get; set; }
public int MyInt { get; set; }
If you want to use another Dojo widget than default, you can control that by decorating the properties on your model class with the DojoWidget attribute. You can also use that attribute to set things like default value and where to find translations for the label. If you want even more control over the UI you can create your own Editor Template or write a Custom Script as described below.
[DojoWidget(WidgetType = "dijit.form.FilteringSelect")]
public string MyString { get; set; }
If you want the input for a value to be a drop down list with predefined options you can do so be setting SelectionFactoryType on the DojoWidget attribute. The SelectionFactoryType should be a type that implements ISelectionFactory. The ISelectionFactory has a GetSelectListItems method that is responsible for supplying the options for the drop-down list.
[DojoWidget(
WidgetType = "dijit.form.FilteringSelect",
SelectionFactoryType = typeof(EnumSelectionFactory))]
public SomeEnum MyEnumSelector { get; set; }
You can add input validation to your properties by using the attribute classes in System.ComponentModel.DataAnnotations. The following validation rules are supported:
[Required]
[StringLength(10)]
public string MyString { get; set; }
If you want to add custom server side validation you can implement the interface IValidateCriterionModel on your model. The IValidateCriterionModel supplies a Validate method that will be called when a visitor group containing the criterion is saved.
public class YourModelClass : CriterionModelBase, IValidateCriterionModel
{
public string MyString { get; set; }
public CriterionValidationResult Validate(VisitorGroup currentGroup)
{
if (MyString.Length > 5)
{
return new CriterionValidationResult(false, "MyString is too long!", "MyString");
}
return new CriterionValidationResult(true);
}
...
}
When you have a model class it is time to create the criterion class itself. The criterion class should evaluate the context and the data stored in the model to determine if the criteria is fulfilled or not. The connection between the criterion and model classes is created via CriterionBase – the base class that must be used for the criterion class – which is a generic class that accepts ICriterionModel parameters. The only method you must override is CriterionBase.IsMatch which is the central method for a criterion, it is the method that will be called when evaluating if a user is a member of a visitor group.
The criterion class must also be decorated with VisitorGroupCriterion attribute, which identifies your class as a criterion and makes it available for use. VisitorGroupCriterion has the following settings:
[VisitorGroupCriterion(
Category = "My Criteria Category",
Description = "How the criterion works",
DisplayName = "Short Name",
LanguagePath="/xml/path/to/translations/",
ScriptUrl="javascript-that-should-be-loaded-for-the-UI.js")]
public class YourCriterionClass: CriterionBase<YourModelClass>
{
public override bool IsMatch(IPrincipal principal, HttpContextBase httpContext)
{
// Your evaluation code here.
// The model class instance is available via the Model property.
}
}
You can subscribe to specific events by overriding the Subscribe method. This allows you to gather information about events that occur prior to the call to the IsMatch method. For example, the built in Visited Page criterion needs to keep track of all pages that have been visited in the current session. You can subscribe to the following events:
If you override the Subscribe method and attach event handlers, make sure that you also override the Unsubscribe method and detach the event handlers.
public override void Subscribe(ICriterionEvents criterionEvents)
{
criterionEvents.StartRequest += criterionEvents_StartRequest;
}
public override void Unsubscribe(ICriterionEvents criterionEvents)
{ criterionEvents.StartRequest -= criterionEvents_StartRequest;
}
void criterionEvents_StartRequest(object sender, CriterionEventArgs e)
{
// Handle the event
}
If you want further control over how the UI is rendered you can add an editor template for your class. To do so create a partial MVC view, the view should be named as your model, for example, {nameOfMyModelClass}.ascx. The application may look for the view in two places:
If your criterion is part of a registered module the first search path will be
If the view was not found in the module folder or if your criterion is not part of a module the next search path will be
In your editor template you can import the EPiServer.Personalization.VisitorGroups to the DojoEditorFor method. The DojoEditorFor method will create a widget that handles loading and saving of values from/to a specified model class property. DojoWidgetFor will discover and make use of any DojoWidget attribute settings for model class properties. If you do not use DojoWidgetFor to create edit controls for your properties you need to handle the loading and saving of values yourself.
The following editor template shows an example that makes use of the DojoWidgetFor method, where two different overloads are used (The first call only specifies the name of the model class attribute, the second call uses the overload with the most number of parameters. A full range of overload exist between these two extremes.):
<%@ Control Language="C#"
Inherits="System.Web.Mvc.ViewUserControl<YourModelClass>" %>
<%@ Import Namespace="EPiServer.Personalization.VisitorGroups" %>
<div>
<span>
<%= Html.DojoEditorFor(p => p.ModelClassProperty1)%>
</span>
<span>
<%= Html.DojoEditorFor(p => p.ModelClassProperty2,
new {
@class = "WidgetCssClass",
@someOtherHtmlAttribute = "value" },
"WidgetLabelText",
"WidgetLabelCssClass",
DojoHtmlExtensions.LabelPosition.Right)%>
</span>
</div>
The VisitorGroupCriterion attribute has a ScriptUrl property where you can specify a script file that will be used when creating the settings UI. The ScriptUrl should contain a JavaScript object that overrides one or more of the following methods:
The following script shows an example where all methods described above are overridden:
(function() {
return {
// Add an extra div to the layout.
// prototype.createUI is called to make sure
// that the autogenerated elements are added too.
createUI: function(namingContainerPrefix, container, settings) {
this.prototype.createUI.apply(this, arguments);
var element = dojo.create('div', { id: namingContainer + 'MyDiv' });
element.innerHTML = "This is MyDiv";
dojo.place(element, container);
},
// Add a validation error message if the value of MyInt is > 1000.
// prototype.validate is called so that that we don't hide errors
// added by the default validators.
// See also Client Side Validation to see how you can provide
// localized strings - like error messages.
validate: function(namingContainer) {
var validationErrors = this.prototype.validate.apply(this, arguments);
var myIntWidget = dijit.byId(namingContainer + 'MyInt');
if (myIntWidget.value > 1000) {
validationErrors.Add('Error!', myIntWidget.domNode.id);
}
return validationErrors;
},
// Multiply the value of MyInt by 10 before saving.
getSettings: function(namingContainer) {
var myIntValue = dijit.byId(namingContainer + 'MyInt').value;
// Attach eventhandler for onmouseover.
// The settings parameter passed to the function contains
// the model properties and values. It is not used in this
// example but you could, for example, retrieve the current
// value of MyInt via settings.MyInt.
uiCreated: function(namingContainer, setting) {
var myIntWidget = dojo.byId(namingContainer + 'MyInt');
dojo.connect(myIntWidget, 'onmouseover', null,
function() { alert('You hovered over the MyInt field.'); });
}
}
})();
createUI: function(namingContainerPrefix, container, settings) {
this.languageKeys = [
'/xml/path/to/languageKey1',
'/xml/path/to/languageKey2' ];
this.prototype.createUI.apply(this, arguments);
}</li>
After this is done you can access the translated value by using the following syntax:
validate: function(namingContainerPrefix, validationUtil) {
...
this.translatedText['/xml/path/to/languageKey2']
...
}
If you use the EnumSelectionFactory and want the names translated you can do so by adding matching keys under the enumerators part of the language files. For an enum called EPiServer.Sample.Criteria.Answer the keys can look as follows:
<enums>
<episerver>
<sample>
<criteria>
<answer>
<yes>Oh yes!</yes>
<no>No way!</no>
</answer>
</criteria>
</sample>
</episerver>
</enums>
Last updated: Mar 25, 2013