All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.liferay.journal.web.internal.util.ExportArticleHelperImpl Maven / Gradle / Ivy
/**
* 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.journal.web.internal.util;
import com.liferay.document.library.kernel.document.conversion.DocumentConversionUtil;
import com.liferay.document.library.kernel.util.DLUtil;
import com.liferay.journal.model.JournalArticle;
import com.liferay.journal.model.JournalArticleDisplay;
import com.liferay.journal.service.JournalArticleLocalService;
import com.liferay.journal.util.ExportArticleHelper;
import com.liferay.journal.util.JournalContent;
import com.liferay.petra.string.StringBundler;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.io.unsync.UnsyncByteArrayInputStream;
import com.liferay.portal.kernel.language.Language;
import com.liferay.portal.kernel.portlet.PortletRequestModel;
import com.liferay.portal.kernel.security.auth.PrincipalThreadLocal;
import com.liferay.portal.kernel.servlet.ServletResponseUtil;
import com.liferay.portal.kernel.theme.ThemeDisplay;
import com.liferay.portal.kernel.util.ContentTypes;
import com.liferay.portal.kernel.util.MimeTypesUtil;
import com.liferay.portal.kernel.util.ParamUtil;
import com.liferay.portal.kernel.util.Portal;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.kernel.util.WebKeys;
import com.liferay.portal.kernel.workflow.WorkflowConstants;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import javax.portlet.PortletRequest;
import javax.portlet.PortletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Eudaldo Alonso
*/
@Component(service = ExportArticleHelper.class)
public class ExportArticleHelperImpl implements ExportArticleHelper {
@Override
public void sendFile(
String targetExtension, PortletRequest portletRequest,
PortletResponse portletResponse)
throws IOException {
if (Validator.isNull(targetExtension)) {
return;
}
HttpServletRequest httpServletRequest = _portal.getHttpServletRequest(
portletRequest);
HttpServletResponse httpServletResponse =
_portal.getHttpServletResponse(portletResponse);
ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
long groupId = ParamUtil.getLong(portletRequest, "groupId");
String articleId = ParamUtil.getString(portletRequest, "articleId");
String languageId = _language.getLanguageId(portletRequest);
PortletRequestModel portletRequestModel = new PortletRequestModel(
portletRequest, portletResponse);
JournalArticle article = _journalArticleLocalService.fetchLatestArticle(
groupId, articleId, WorkflowConstants.STATUS_APPROVED);
JournalArticleDisplay articleDisplay = _journalContent.getDisplay(
groupId, articleId, article.getVersion(), null, "export",
languageId, 1, portletRequestModel, themeDisplay);
int pages = articleDisplay.getNumberOfPages();
StringBundler sb = new StringBundler(pages + 12);
sb.append("");
sb.append("");
sb.append(" ");
sb.append(" ");
sb.append("");
sb.append("");
sb.append(articleDisplay.getContent());
for (int i = 2; i <= pages; i++) {
articleDisplay = _journalContent.getDisplay(
groupId, articleId, "export", languageId, i, themeDisplay);
sb.append(articleDisplay.getContent());
}
sb.append("");
sb.append("");
String s = sb.toString();
InputStream inputStream = new UnsyncByteArrayInputStream(
s.getBytes(StringPool.UTF8));
String title = articleDisplay.getTitle();
String sourceExtension = "html";
String fileName = StringBundler.concat(
title, StringPool.PERIOD, sourceExtension);
String contentType = ContentTypes.TEXT_HTML;
sb = new StringBundler(3);
sb.append(PrincipalThreadLocal.getUserId());
sb.append(StringPool.UNDERLINE);
sb.append(
DLUtil.getTempFileId(
articleDisplay.getId(),
String.valueOf(articleDisplay.getVersion()), languageId));
File convertedFile = DocumentConversionUtil.convert(
sb.toString(), inputStream, sourceExtension, targetExtension);
if (convertedFile != null) {
targetExtension = StringUtil.toLowerCase(targetExtension);
fileName = StringBundler.concat(
title, StringPool.PERIOD, targetExtension);
contentType = MimeTypesUtil.getContentType(fileName);
inputStream = new FileInputStream(convertedFile);
}
ServletResponseUtil.sendFile(
httpServletRequest, httpServletResponse, fileName, inputStream,
contentType);
}
@Reference
private JournalArticleLocalService _journalArticleLocalService;
@Reference
private JournalContent _journalContent;
@Reference
private Language _language;
@Reference
private Portal _portal;
}