Friday, November 29, 2013

Kaleo Workflow Configuration for Custom Portlet in Liferay 6.1

1. Make sure you have deployed kaleo workflow war in your liferay portal.

2. Create the service.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE service-builder PUBLIC "-//Liferay//DTD Service Builder 6.1.0//EN" "http://www.liferay.com/dtd/liferay-service-builder_6_1_0.dtd">
<service-builder package-path="com.sample.harish">
<author>harish.kumar</author>
<namespace>harish</namespace>
<entity name="Feedback" uuid="true" local-service="true" remote-service="false">
<column name="feedbackId" type="long" primary="true" />
<column name="feedbackDate" type="Date" />
<column name="feedbackText" type="String" />
<column name="status" type="int" />
<column name="statusByUserId" type="long" />
<column name="statusByUserName" type="String" />
<column name="statusDate" type="Date" />
<column name="companyId" type="long" />
<column name="groupId" type="long" />
<column name="userId" type="long" />
<order>
<order-column name="feedbackId" order-by="asc" />
<order-column name="feedbackDate" order-by="desc" />
</order>
<finder name="GroupId" return-type="Collection">
<finder-column name="groupId" />
</finder>
<finder name="CompanyId" return-type="Collection">
<finder-column name="companyId" />
</finder>
<finder name="feedbackText" return-type="Collection">
<finder-column name="feedbackText" />
</finder>
<finder name="G_S" return-type="Collection">
<finder-column name="groupId" />
<finder-column name="status" />
</finder>
<reference package-path="com.liferay.portal" entity="User" />
<reference package-path="com.liferay.portlet.asset" entity="AssetEntry" />
<reference package-path="com.liferay.portlet.ratings" entity="RatingsStats" />
</entity>
</service-builder>
view raw service.xml hosted with ❤ by GitHub

3. Build the service

4. Edit the FeedbackLocalServiceImpl class and add the following methods:


public Feedback addFeedback(Feedback newFeedback, long userId,
ServiceContext serviceContext) throws SystemException,
PortalException {
Feedback feedback = feedbackPersistence.create(counterLocalService
.increment(Feedback.class.getName()));
feedback.setCompanyId(newFeedback.getCompanyId());
feedback.setGroupId(newFeedback.getGroupId());
feedback.setUserId(serviceContext.getUserId());
feedback.setFeedbackDate(newFeedback.getFeedbackDate());
feedback.setFeedbackText(newFeedback.getFeedbackText());
feedback.setStatus(WorkflowConstants.STATUS_DRAFT);
feedbackPersistence.update(feedback, false);
assetEntryLocalService.updateEntry(userId, feedback.getGroupId(),
Feedback.class.getName(), feedback.getFeedbackId(),
serviceContext.getAssetCategoryIds(),
serviceContext.getAssetTagNames());
WorkflowHandlerRegistryUtil.startWorkflowInstance(
feedback.getCompanyId(), feedback.getGroupId(), userId,
Feedback.class.getName(), feedback.getPrimaryKey(), feedback,
serviceContext);
return feedback;
}
public void deleteFeedbacks(Feedback feedback) throws SystemException,
PortalException {
assetEntryLocalService.deleteEntry(Feedback.class.getName(),
feedback.getFeedbackId());
feedbackPersistence.remove(feedback);
}
public Feedback updateStatus(long userId, long resourcePrimKey, int status,
ServiceContext serviceContext) throws PortalException,
SystemException {
User user = userLocalService.getUser(userId);
Feedback feedback = getFeedback(resourcePrimKey);
feedback.setStatus(status);
feedback.setStatusByUserId(userId);
feedback.setStatusByUserName(user.getFullName());
feedback.setStatusDate(serviceContext.getModifiedDate());
feedbackPersistence.update(feedback, false);
if (status == WorkflowConstants.STATUS_APPROVED) {
assetEntryLocalService.updateVisible(Feedback.class.getName(),
resourcePrimKey, true);
} else {
assetEntryLocalService.updateVisible(Feedback.class.getName(),
resourcePrimKey, false);
}
return feedback;
}

5. Make the following entries in liferay-portlet.xml file


<asset-renderer-factory>com.sample.harish.portlet.asset.FeedbackAssetRendererFactory</asset-renderer-factory>
<workflow-handler>com.sample.harish.portlet.workflow.FeedbackWorkflowHandler</workflow-handler>

6. create the FeedbackAssetRendererFactory class


public class FeedbackAssetRendererFactory extends BaseAssetRendererFactory {
@Override
public AssetRenderer getAssetRenderer(long classPK, int type)
throws PortalException, SystemException {
Feedback feedback = FeedbackLocalServiceUtil.getFeedback(classPK);
return new FeedbackAssetRenderer(feedback);
}
@Override
public String getClassName() {
return Feedback.class.getName();
}
@Override
public String getType() {
return "article";
}
}

7. create the FeedbackAssetRenderer class-


public class FeedbackAssetRenderer extends BaseAssetRenderer{
private Feedback _feedback;
public FeedbackAssetRenderer(Feedback feedback) {
_feedback = feedback;
}
public long getClassPK() {
return _feedback.getFeedbackId();
}
public long getGroupId() {
return _feedback.getGroupId();
}
public String getSummary(Locale arg0) {
return _feedback.getFeedbackText();
}
public String getTitle(Locale arg0) {
return "Feedback Contest Entry";
}
public long getUserId() {
return _feedback.getUserId();
}
public String getUuid() {
return _feedback.getUuid();
}
public String render(RenderRequest request, RenderResponse response, String template)
throws Exception
{
if (template.equals(TEMPLATE_FULL_CONTENT)) {
return "/html/feedback.jsp";
}
else
{
return null;
}
}
@Override
public String getUserName() {
// TODO Auto-generated method stub
return null;
}
}

8. create the /html/feedback.jsp file.


9. create the FeedbackWorkflowHandler class -


public class FeedbackWorkflowHandler extends BaseWorkflowHandler{
public String getClassName() {
return CLASS_NAME;
}
public String getType(Locale locale) {
return LanguageUtil.get(locale, "model.resource." + CLASS_NAME);
}
public Object updateStatus(int status,
Map<String, Serializable> workflowContext) throws PortalException,
SystemException {
long userId = GetterUtil.getLong(workflowContext.get(WorkflowConstants.CONTEXT_USER_ID));
long resourcePrimKey = GetterUtil.getLong(workflowContext.get(WorkflowConstants.CONTEXT_ENTRY_CLASS_PK));
ServiceContext serviceContext = (ServiceContext) workflowContext.get("serviceContext");
return FeedbackLocalServiceUtil.updateStatus(userId, resourcePrimKey,status, serviceContext);
}
public static final String CLASS_NAME = Feedback.class.getName();
}

10. We are done with all the changes now, to see our portlet in action go to control panel → Workflow Configuration and set the workflow for your custom portlet.

Tuesday, November 19, 2013

Hiding SessionErrors Default Error Message

Whenever we make use of SessionErrors to display error message in Liferay, below default error message is also displayed by Liferay.



To get rid of this default message use the below code snippet -

PortletConfig portletConfig = (PortletConfig)renderRequest.getAttribute(JavaConstants.JAVAX_PORTLET_CONFIG);
LiferayPortletConfig liferayPortletConfig = (LiferayPortletConfig) portletConfig;
SessionMessages.add(renderRequest, liferayPortletConfig.getPortletId() + SessionMessages.KEY_SUFFIX_HIDE_DEFAULT_ERROR_MESSAGE);
NOTE: This will work for specific portlet only.

Monday, November 18, 2013

Adding Success Message in Liferay Custom Portlet Configuration Page

To add success message and page refresh in configuration page, just add the following snippet in your ConfigurationImpl class's processAction method ..


LiferayPortletConfig liferayPortletConfig = (LiferayPortletConfig) portletConfig;
String portletResource = ParamUtil.getString(actionRequest, "portletResource");
SessionMessages.add(actionRequest, liferayPortletConfig.getPortletId() + SessionMessages.KEY_SUFFIX_REFRESH_PORTLET, portletResource);
SessionMessages.add(actionRequest, liferayPortletConfig.getPortletId() + SessionMessages.KEY_SUFFIX_UPDATED_CONFIGURATION);

Configure Solr With Liferay 6

Configuring solr on standalone tomcat-

1. download solr and unzip to any directory say d:
2. set environment variable SOLR_HOME as D:\apache-solr-1.4.1\example\solr
3. Copy D:\apache-solr-1.4.1\dist\apache-solr-1.4.1.war and paste it in \Tomcat 6.0\webapps folder. make sure rename the war file to solr.war.
4. start the tomcat to unzip the war.
5. stop tomcat
6. edit the file \Tomcat 6.0\webapps\solr\WEB-INF\web.xml. Uncomment the following entry and provide path of your SOLR_HOME

<env-entry>
<env-entry-name>solr/home</env-entry-name>
<env-entry-value>D:\apache-solr-1.4.1\example\solr</env-entry-value>
<env-entry-type>java.lang.String</env-entry-type>
</env-entry>
view raw solr-web-xml hosted with ❤ by GitHub
7. Start tomcat and browse http://localhost:8080/solr/admin to verify your solr installation.

Configuring Solr plugin in Liferay-

1. download the required solr-web.war compatible with your liferay version
2. put this war in LIFERAY_HOME\deploy folder
3. After deployment shut down the Liferay server as well as solr instance.
4. Edit the file D:\liferay-portal-6.1.20-ee-ga2\tomcat-7.0.27\webapps\solr-web\WEB-INF\classes\META-INF\solr-spring.xml

<bean id="com.liferay.portal.search.solr.server.BasicAuthSolrServer" class="com.liferay.portal.search.solr.server.BasicAuthSolrServer">
<constructor-arg type="java.lang.String" value="http://localhost:8090/solr" />
</bean>
view raw solr-spring-xml hosted with ❤ by GitHub
provide your solr instance settings as above.
5. Copy D:\liferay-portal-6.1.20-ee-ga2\tomcat-7.0.27\webapps\solr-web\WEB-INF\conf\schema.xml file and paste it into D:\apache-solr-1.4.1\example\solr\conf folder.

Now start your tomcat and then Liferay server.