As you probably know in version 6.1 Liferay introduced the mobile device rules feature. However if you haven't followed the discussions and presentations about it, you may be under the wrong impression that is't very limited. Some people even claim it doesn't work. Judging by the number and type of questions I still get asked now days, I think I know where most of the confusion comes from - the user interface.
The first problem is that the UI will let you create rules even if there is no plug-in capable of actually detecting the device. Yes, you do need a plug-in for that. The API, data model and the UI are provided with the portal, but similarly to workflow and search (just to name a few) functionalities, the actual work of detecting the device is delegated to an external plugin. At the time of writing there is only one such plugin in Marketplace - Device Recognition Provider which internally uses WURFL. However if other providers become available in the future (or you create your own one), you will still be able to seamlessly hook them in.
Now, as I mentioned earlier, the UI will not warn you if the plugin is not installed. It will let you create a rule and the rule of course will never match as long as the plugin is missing! Of course all this is explained in the documentation but for those very few people who don't have the time to read it, in Liferay 6.2 we added a very visible warning message!
The second problem is about answering the "how much is not too much?" question properly. I guess we can have an endless discussion on this one but the fact is that at some point of time a decision was made that the only criterias that need to be available in the UI are operating system and whether the device is a tablet. In Liferay 6.2 you will be also able to specify ranges of screen resolutions and display sizes. I understand this still may be too limited for some of you, but the truth is, everyone has his needs and there is no way to make an user friendly interface that will cover all WURFL capabilities! Well, may be there is - a DSL (Domain Specific Language) on top of some rule engine will actually fit nice in here. Unfortunately there were more important things in the 6.2 road map so you'll have to wait a bit longer for this one or help us implement it!
The good news is you can use all of the capabilities in your custom portlets. You can use DeviceDetectionUtil to get the current user's Device. Once you get the Device object you can get the value of any WURFL capability by calling getCapability(java.lang.String) method. Actually you can do the same even from web content templates. Here is a simple example that will render some phone numbers as links if the device is capable of doing phone calls or sending text messages.
Structure:
<?xml version="1.0"?> <root> <dynamic-element name="phone_number" type="text" index-type="" repeatable="false"/> <dynamic-element name="sms_number" type="text" index-type="" repeatable="false"/> <dynamic-element name="email" type="text" index-type="" repeatable="false"/> </root>
Template in Velocity:
#set( $callPrefix = $device.getCapability("xhtml_make_phone_call_string") ) #set( $smsPrefix = $device.getCapability("xhtml_send_sms_string") ) #set( $canDoPhoneCalls = $callPrefix != "none" ) #set( $canSendSMS = $smsPrefix != "none")
<h3>Contact us!</h3>
You can
<ul>
<li>call us at
#if( $canDoPhoneCalls )
<a href="$callPrefix$phone_number.getData()">$phone_number.getData()</a>
#else $phone_number.getData() #end
</li>
<li>or send an SMS message to
#if( $canSendSMS )
<a href="$smsPrefix$sms_number.getData()">$sms_number.getData()</a>
#else $sms_number.getData() #end
and we'll call you back
</li>
<li>or <a href="mailto:$email.getData()">e-mail us </li>
</ul>
Template in Freemarker:
<#assign callPrefix = device.getCapability("xhtml_make_phone_call_string")> <#assign smsPrefix = device.getCapability("xhtml_send_sms_string")> <#assign canDoPhoneCalls = (callPrefix != "none")> <#assign canSendSMS = (smsPrefix != "none")> <h3>Contact us!</h3> You can <ul> <li>call us at <#if canDoPhoneCalls > <a href="${callPrefix + phone_number.getData()}">${phone_number.getData()}</a> <#else> ${phone_number.getData()} </#if> </li> <li>or send an SMS message to <#if canSendSMS > <a href="${smsPrefix + sms_number.getData()}">${sms_number.getData()}</a> <#else> ${sms_number.getData()} </#if> and we'll call you back </li> <li>or <a href="mailto:${email.getData()}">e-mail us </li> </ul>
I hope the above proved to you the device recognition functionality in Liferay is not as limited as it may seem on the first look! And I certainly hope more will come in upcoming versions.


