« Torna a Wiki - Pending...

Rules based portlet rendering

This is "Work in Progress"#

This article has been moved to the Proposals wiki, and is pending deletion on the Main wiki.

Requirement LPS-2909#

Portlets can be configured to have various permissions, like view, configure etc. , based on a role. But there is no way to control when the portlet will be rendered/displayed based on arbitrary rules using user attributes and date/time. Some examples are shown below:

  1. Display a promotion portlet during first 7 days of every month.
  2. Display a portlet to users who login from IP address that matches 19.168..
  3. Display a voter registration portlet to users who are 18 or older.

Solution#

A basic rules engine is provided, which can be enabled using portal.properties.

##

    1. Portlet Render Rules
  1. Specify comma separated render rules evaluator chain.
  2. The evaluator chain executes in the specified order and returns
  3. false when any one of them returns false.
  4. BasicRenderRulesEvaluator is a built-in evaluator which allows one to
  5. specify render rules based on user attributes, day, date and time.
  6. portlet.render.rules.evaluators=com.liferay.portal.security.permission.BasicRenderRulesEvaluator }}}

When the rules evaluator is enabled by uncommenting the above property, a new tab "Render Rules" shows up for each portlet under configuration.

The UI has a text field where you can enter rules as explained later below. This is a primitive UI which will be fixed soon to make it more intuitive and user friendly. LPS-2910

When a custom rules evaluator is plugged in, another row shows the text field where the rules can be entered for your rules evaluator.
The label for the text field can be localized by adding a key to Language.properties. The key should be of this format,
render.rules.evaluator.com.example.MyRulesEvaluator=My Render Rules

To hide the portlet completely, this property needs to be set.
layout.show.portlet.access.denied=false

To plugin you own rules evaluator, write a class that implements com.liferay.portal.security.permission.RenderRulesEvaluator interface.

public interface RenderRulesEvaluator {
public boolean isRenderable(long userId, long groupId, String renderRule); } }}}

Basic Rules Evaluator#

BasicRenderRulesEvaluator is the built-in evaluator that uses the basic rules engine.

Examples#

Now lets see how the sample requirements can be fulfilled.
1. Display a promotion portlet during first 7 days of every month but only on weekends.
Rule: date>=/1/&&date<=/7/&&(day==1||day==7)

2. Display a portlet to female users who login from IP address that matches 192.168..
Rule: user.attr.loginIP=192.168..&&user.attr.male!=true

3. Display a voter registration portlet to users who are 17 years and 6 months or older.
Rule: user.attr.age>=17.6

1 Allegato
23337 Visualizzazioni
Media (1 Voto)
La media del punteggio è 5.0 stelle su 5.
Commenti
Commenti Autore Data
Great work ! Another useful feature :... Arnaud Deslandes 15 aprile 2009 8.42
Really great work ! Sharana Basavaraj Ballari 16 aprile 2009 7.43
This is a good feature Looking forward to it... Anand Abhyankar 16 settembre 2009 0.13
hi. i am using liferay 5.2.3 bundle.I am not... ankit yakkundi 29 dicembre 2010 1.12

Great work ! Another useful feature : displaying this portlet to x% of the guest or the authenticated users.
Inviato il 15/04/09 8.42.
Really great work !
Inviato il 16/04/09 7.43 in risposta a Arnaud Deslandes.
This is a good feature
Looking forward to it
Can we implement following scenario using it?
-- After 'x' number of successive approvals for the content, next 'y' number of contents will be auto approved. This approval may be for web-content, Blogs, Message Boards, any uploads etc.
Inviato il 16/09/09 0.13.
hi.
i am using liferay 5.2.3 bundle.I am not able to find " Portlet Render Rules" under portal.properties stored under portal-impl.jar under \tomcat-5.5.27\webapps\ROOT\WEB-INF\lib directory.
Can you help from where i can get the above specified code?
Inviato il 29/12/10 1.12 in risposta a Anand Abhyankar.