/**
* 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.struts;
import com.liferay.portal.kernel.servlet.ServletResponseUtil;
import com.liferay.portal.kernel.util.ContentTypes;
import com.liferay.portal.kernel.util.PortalUtil;
import java.io.OutputStream;
import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import javax.portlet.PortletConfig;
import javax.portlet.PortletRequest;
import javax.portlet.ResourceRequest;
import javax.portlet.ResourceResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
/**
* @author Brian Wing Shun Chan
*/
public class RSSAction extends PortletAction {
@Override
public void processAction(
ActionMapping actionMapping, ActionForm actionForm,
PortletConfig portletConfig, ActionRequest actionRequest,
ActionResponse actionResponse)
throws Exception {
if (!isRSSFeedsEnabled(actionRequest)) {
PortalUtil.sendRSSFeedsDisabledError(actionRequest, actionResponse);
return;
}
try {
HttpServletRequest request = PortalUtil.getHttpServletRequest(
actionRequest);
HttpServletResponse response = PortalUtil.getHttpServletResponse(
actionResponse);
ServletResponseUtil.sendFile(
request, response, null, getRSS(request),
ContentTypes.TEXT_XML_UTF8);
setForward(actionRequest, ActionConstants.COMMON_NULL);
}
catch (Exception e) {
PortalUtil.sendError(e, actionRequest, actionResponse);
}
}
@Override
public void serveResource(
ActionMapping actionMapping, ActionForm actionForm,
PortletConfig portletConfig, ResourceRequest resourceRequest,
ResourceResponse resourceResponse)
throws Exception {
if (!isRSSFeedsEnabled(resourceRequest)) {
PortalUtil.sendRSSFeedsDisabledError(
resourceRequest, resourceResponse);
return;
}
resourceResponse.setContentType(ContentTypes.TEXT_XML_UTF8);
try (OutputStream outputStream =
resourceResponse.getPortletOutputStream()) {
byte[] bytes = getRSS(resourceRequest, resourceResponse);
outputStream.write(bytes);
}
}
@Override
public ActionForward strutsExecute(
ActionMapping actionMapping, ActionForm actionForm,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
if (!PortalUtil.isRSSFeedsEnabled()) {
PortalUtil.sendRSSFeedsDisabledError(request, response);
return null;
}
try {
ServletResponseUtil.sendFile(
request, response, null, getRSS(request),
ContentTypes.TEXT_XML_UTF8);
return null;
}
catch (Exception e) {
PortalUtil.sendError(e, request, response);
return null;
}
}
protected byte[] getRSS(HttpServletRequest request) throws Exception {
throw new UnsupportedOperationException();
}
protected byte[] getRSS(
ResourceRequest resourceRequest, ResourceResponse resourceResponse)
throws Exception {
HttpServletRequest request = PortalUtil.getHttpServletRequest(
resourceRequest);
return getRSS(request);
}
@Override
protected boolean isCheckMethodOnProcessAction() {
return _CHECK_METHOD_ON_PROCESS_ACTION;
}
protected boolean isRSSFeedsEnabled(PortletRequest portletRequest)
throws Exception {
return PortalUtil.isRSSFeedsEnabled();
}
private static final boolean _CHECK_METHOD_ON_PROCESS_ACTION = false;
}