The Audience Targeting application is designed as a framework to be extended by other developers easily.
They have a set of extension points that can be easily hooked using other plugins that can be hot deployed into your Liferay installation.
These extension points include:
- Rule Types
- Rules Engine
- Reports
- Tracking Actions
In the Audience Targeting application, a User Segment is defined as a group of users that matches a set of rules. Out of the box, Liferay provides several types of rules such as age range, gender, location...
Developers will be able to extend the set of available types of rules by creating and deploying their own OSGi plugins which contain a class implementing the Rule Interface.
OSGi plugins can be quickly hot deployed and undeployed, managing their own dependencies and providing new services that other OSGi plugins can consume. In the case of a rule OSGi plugin, it will be consumed by the Audience Targeting application.
Adding a new type of rule to the Audience Targeting application is easy.
For example, let's see how to create a very simple rule called Time Zone
.
- In the root of the Audience Targeting project, run the create_rule command
(depending on your OS):
./create_rule.sh time-zone "Time Zone" create_rule.bat time-zone "Time Zone"
- Move to the newly generated folder
rule-time-zone
. Notice that all the necessary files have been added by the create_rule command. If you now run theant deploy
command in the root of therule-time-zone
folder, you'll find this new rule listed when creating or editing a User Segment in the Audience Targeting application. - Of course you still need to make some changes to define how your rule works.
Open the
TimezoneRule.java
file. Some of the methods that you can implement to modify your rule behavior are:processRule
: This method will handle the information provided by the administrator when configuring this rule through the Rule GUI. For example, to store the selected time zone in the typeSettings field in the database from a select.evaluate
: This method determines whether a given user matches the rule with the information that has been stored. For example, it checks the time zone in the user profile and compares with the one stored in the database by the processRule method. If they match, it will return true.getFormHtml
: This method will return the HTML displayed to administrators when configuring a Rule through the Rule GUI. The BaseRule class already implements this method including a freemarker template placed in templates/ct_fields.ftl. For example, for the Time Zone Rule, you may add a selector with the available time zones.getIcon
: Configure the icon displayed in the Rule GUI. You should use the name of a FontAwesome icon. For example: "icon-coffee" or "icon-globe" (See Font Awesome documentation)getName
: The name of your Rule. (It can be localized)getSummary
: A description of the Rule once it is configured. This will be used to help administrators. For example, if the Time Zone Rule has been configured to GMT Zone, then the summary may be "Users who are in Timezone GMT".
- Finally, deploy the rule plugin in the Liferay server. The new rule will be available in the add/edit User Segment form. When the User Segment admin selects it, the piece of GUI defined by the developer (eg. the time zone selector) is added to the add/edit User Segment form so that the admin can set a value for that specific user segment.
In the Audience Targeting application, a report is a tool that allow administrators to analyze the behavior of users belonging to specific user segments or in the context of a campaign.
Developers will be able to extend the set of available reports by creating and deploying their own OSGi plugins which contain a class implementing the Report Interface.
OSGi plugins can be quickly hot deployed and undeployed, managing their own dependencies and providing new services that other OSGi plugins can consume. In the case of a report OSGi plugin, it will be consumed by the Audience Targeting application.
Adding a new report to the Audience Targeting application is easy. For example,
let's see how to create a very simple report for campaigns called
Hits by country
.
- In the root of the Audience Targeting project, run the create_report command
(depending on your OS):
./create_report.sh hits-by-country "Hits by Country" create_report.bat hits-by-country "Hits by Country"
- Move to the newly generated folder
report-hits-by-country
. Notice that all the necessary files have been added by the create_report command. If you now run theant deploy
command in the root of thereport-hits-by-country
folder, you'll find this new report listed when you select the Reports action in the action menu of an specific campaign in the Audience Targeting application. - Of course you still need to make some changes to define how your report
works. Open the
HitsByCountryReport.java
file. Some of the methods that you can implement to modify your report behavior are:getReportType
: This method determines which resource the report is associated to. By default that is a resource of the type Campaign, but you can change it to User Segment to create a report for this type of resources.updateReport
: This method will be called by the report UI to generate or update the report. Therefore it should process the available information (e.g. from the Analytics service) and persist it so that it can begetHtml
: This method will return the HTML displayed to administrators when accessing this report from a campaign. The BaseReport class already implements this method including a freemarker template placed in templates/ct_report.ftl. For example, for the Hits By Country Report, you may display a the country flag and the number of hits for each country.getIcon
: Configure the icon displayed in the Report GUI. You should use the name of a FontAwesome icon. For example: "icon-coffee" or "icon-globe" (See Font Awesome documentation)getName
: The name of your Report. (It can be localized)
- Finally, deploy the report plugin in the Liferay server. The new report will be listed when you select the Reports action in the action menu of an specific campaign in the Audience Targeting application. Click the Update Report button to force your report to obtain and display the latest information.
In the Audience Targeting application, a Campaign defines a set of content targeted to specific user segments in a time period. Tracking Actions allow campaign administrators to learn how users behave in the context of a campaign by monitoring their interaction over different elements of the portal.
Developers will be able to extend the set of available tracking actions by creating and deploying their own OSGi plugins which contain a class implementing the Tracking Action Interface.
OSGi plugins can be quickly hot deployed and undeployed, managing their own dependencies and providing new services that other OSGi plugins can consume. In the case of a report OSGi plugin, it will be consumed by the Audience Targeting application.
Adding a new tracking action to the Audience Targeting application is easy.
For example, let's see how to create a very simple tracking action called
Forum Subscription
.
- In the root of the Audience Targeting project, run the create_tracking_action
command (depending on your OS):
./create_tracking_action.sh forum-subscription "Forum Subscription" create_tracking_action.bat forum-subscription "Forum Subscription"
- Move to the newly generated folder
tracking-action-forum-subscription
. Notice that all the necessary files have been added by the create_tracking_action command. If you now run theant deploy
command in the root of thetracking-action-forum-subscription
folder, you'll find this new tracking action listed when creating or editing a Campaign in the Audience Targeting application. - Of course you still need to make some changes to define how your tracking
action works. Open the
ForumSubscriptionTrackingAction.java
file. Some of the methods that you can implement to modify your tracking action behavior are:processTrackingAction
: This method will handle the information provided by the administrator when configuring this tracking action through the tracking action GUI. For example, to store the selected time zone in the typeSettings field in the database from a select.getEventTypes
: This method returns a list of events that can be tracked by this tracking action.getFormHtml
: This method will return the HTML displayed to administrators when configuring a tracking action through the tracking action GUI. The BaseTrackingAction class already implements this method including a freemarker template placed in templates/ct_tracking_action.ftl. For example, for the Forum Subscription Tracking Action, you may add a selector with the available forums and categories.getIcon
: Configure the icon displayed in the Tracking Action GUI. You should use the name of a FontAwesome icon. For example: "icon-coffee" or "icon-globe" (See Font Awesome documentation)getName
: The name of your Tracking Action. (It can be localized)getSummary
: A description of the Tracking Action once it is configured. This will be used to help administrators. For example, if the Forum Subscription Tracking Action has been configured to track the Sports Forum, then the summary may be "Tracking visits to content in the Sports Forum"
- Finally, deploy the tracking action plugin in the Liferay server. The new tracking action will be available in the add/edit Campaign form. When the Campaign admin selects it, the piece of GUI defined by the developer (eg. the forums and categories selector) is added to the add/edit Campaign form so that the admin can set a value for that specific campaign.
If the plugin has been successfully deployed but the changes are not visible, check that the generated .jar in the /dist folder of the plugins SDK actually contains the latest modifications.
Also se this property to 0 to always retrieve the freemarker code from the template instead of the cache:
freemarker.engine.resource.modification.check.interval=0
In the liferay-plugins repository, plugins are laid out in a software development kit (SDK) -- the Liferay Plugins SDK. All Liferay plugin types, including portlets, themes, layout templates, hooks, and EXT plugins, can be created and maintained in the SDK. [The Plugins SDK] (http://www.liferay.com/documentation/liferay-portal/6.2/development/-/ai/leveraging-the-plugins-sdk-liferay-portal-6-2-dev-guide-02-en) chapter of Liferay's [Development Guide] (http://www.liferay.com/documentation/liferay-portal/6.2/development) explains how to create, build, and deploy your plugins.
There are many other options for developing new Liferay plugins using the Plugins SDK. Consult the Liferay Development Guide for indispensable explanations, examples, and reference material on the Liferay Plugins SDK and surrounding technologies.
Also, check out Liferay IDE. The Liferay IDE project provides an Eclipse-based Liferay development environment to help you build and maintain Liferay projects easily.
Finally, consider using Maven to build Liferay Plugins. For excellent overviews of Maven support for Liferay, check out Mika Koivisto's presentation and Getting Started with Liferay Maven SDK.