/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.workflow.instance.web.internal.portlet; import com.liferay.portal.configuration.metatype.bnd.util.ConfigurableUtil; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet; import com.liferay.portal.kernel.servlet.SessionErrors; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.ParamUtil; import com.liferay.portal.kernel.util.StringUtil; import com.liferay.portal.kernel.util.WebKeys; import com.liferay.portal.kernel.workflow.WorkflowException; import com.liferay.portal.kernel.workflow.WorkflowInstance; import com.liferay.portal.kernel.workflow.WorkflowInstanceManagerUtil; import com.liferay.portal.workflow.instance.web.configuration.WorkflowInstanceWebConfiguration; import com.liferay.portal.workflow.instance.web.internal.constants.WorkflowInstancePortletKeys; import java.io.IOException; import java.util.Map; import javax.portlet.ActionRequest; import javax.portlet.ActionResponse; import javax.portlet.Portlet; import javax.portlet.PortletException; import javax.portlet.RenderRequest; import javax.portlet.RenderResponse; import org.osgi.service.component.annotations.Activate; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Modified; /** * @author Leonardo Barros */ @Component( configurationPid = "com.liferay.portal.workflow.instance.web.configuration.WorkflowInstanceWebConfiguration", immediate = true, property = { "com.liferay.portlet.css-class-wrapper=portlet-workflow-instance", "com.liferay.portlet.display-category=category.hidden", "com.liferay.portlet.friendly-url-mapping=workflow_instance", "com.liferay.portlet.header-portlet-css=/css/main.css", "com.liferay.portlet.icon=/icons/workflow_instance.png", "com.liferay.portlet.preferences-owned-by-group=true", "com.liferay.portlet.private-request-attributes=false", "com.liferay.portlet.private-session-attributes=false", "com.liferay.portlet.render-weight=50", "com.liferay.portlet.use-default-template=true", "javax.portlet.display-name=Workflow Instance", "javax.portlet.expiration-cache=0", "javax.portlet.init-param.template-path=/", "javax.portlet.init-param.view-template=/view.jsp", "javax.portlet.name=" + WorkflowInstancePortletKeys.WORKFLOW_INSTANCE, "javax.portlet.resource-bundle=content.Language", "javax.portlet.security-role-ref=administrator", "javax.portlet.supports.mime-type=text/html" }, service = Portlet.class ) public class WorkflowInstancePortlet extends MVCPortlet { @Override public void processAction( ActionRequest actionRequest, ActionResponse actionResponse) throws IOException, PortletException { String actionName = ParamUtil.getString( actionRequest, ActionRequest.ACTION_NAME); if (StringUtil.equalsIgnoreCase(actionName, "invokeTaglibDiscussion")) { hideDefaultSuccessMessage(actionRequest); } super.processAction(actionRequest, actionResponse); } @Override public void render( RenderRequest renderRequest, RenderResponse renderResponse) throws IOException, PortletException { try { setWorkflowInstanceRenderRequestAttribute(renderRequest); } catch (Exception e) { if (isSessionErrorException(e)) { if (_log.isWarnEnabled()) { _log.warn(e, e); } hideDefaultErrorMessage(renderRequest); SessionErrors.add(renderRequest, e.getClass()); } else { throw new PortletException(e); } } super.render(renderRequest, renderResponse); } @Activate @Modified protected void activate(Map<String, Object> properties) { workflowInstanceWebConfiguration = ConfigurableUtil.createConfigurable( WorkflowInstanceWebConfiguration.class, properties); } @Override protected void doDispatch( RenderRequest renderRequest, RenderResponse renderResponse) throws IOException, PortletException { if (SessionErrors.contains( renderRequest, WorkflowException.class.getName())) { include("/error.jsp", renderRequest, renderResponse); } else { renderRequest.setAttribute( WorkflowInstanceWebConfiguration.class.getName(), workflowInstanceWebConfiguration); super.doDispatch(renderRequest, renderResponse); } } @Override protected boolean isSessionErrorException(Throwable cause) { if (cause instanceof WorkflowException) { return true; } return false; } protected void setWorkflowInstanceRenderRequestAttribute( RenderRequest renderRequest) throws PortalException { ThemeDisplay themeDisplay = (ThemeDisplay)renderRequest.getAttribute( WebKeys.THEME_DISPLAY); long workflowInstanceId = ParamUtil.getLong( renderRequest, "workflowInstanceId"); WorkflowInstance workflowInstance = null; if (workflowInstanceId != 0) { workflowInstance = WorkflowInstanceManagerUtil.getWorkflowInstance( themeDisplay.getCompanyId(), workflowInstanceId); } renderRequest.setAttribute(WebKeys.WORKFLOW_INSTANCE, workflowInstance); } protected volatile WorkflowInstanceWebConfiguration workflowInstanceWebConfiguration; private static final Log _log = LogFactoryUtil.getLog( WorkflowInstancePortlet.class); }