/** * 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.knowledge.base.web.internal.exportimport.portlet.preferences.processor; import com.liferay.exportimport.kernel.lar.PortletDataContext; import com.liferay.exportimport.kernel.lar.PortletDataException; import com.liferay.exportimport.kernel.lar.StagedModelDataHandlerUtil; import com.liferay.exportimport.portlet.preferences.processor.Capability; import com.liferay.exportimport.portlet.preferences.processor.ExportImportPortletPreferencesProcessor; import com.liferay.exportimport.portlet.preferences.processor.capability.ReferencedStagedModelImporterCapability; import com.liferay.knowledge.base.constants.KBArticleConstants; import com.liferay.knowledge.base.constants.KBPortletKeys; import com.liferay.knowledge.base.model.KBArticle; import com.liferay.knowledge.base.service.KBArticleLocalService; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.ListUtil; import com.liferay.portal.kernel.util.MapUtil; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.workflow.WorkflowConstants; import java.util.List; import java.util.Map; import javax.portlet.PortletPreferences; import javax.portlet.ReadOnlyException; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Sorin Pop */ @Component( immediate = true, property = {"javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_ARTICLE}, service = ExportImportPortletPreferencesProcessor.class ) public class KBArticleExportImportPortletPreferencesProcessor implements ExportImportPortletPreferencesProcessor { @Override public List<Capability> getExportCapabilities() { return null; } @Override public List<Capability> getImportCapabilities() { return ListUtil.toList( new Capability[] {_referencedStagedModelImporterCapability}); } @Override public PortletPreferences processExportPortletPreferences( PortletDataContext portletDataContext, PortletPreferences portletPreferences) throws PortletDataException { long resourcePrimKey = GetterUtil.getLong( portletPreferences.getValue("resourcePrimKey", StringPool.BLANK)); if (resourcePrimKey != KBArticleConstants.DEFAULT_PARENT_RESOURCE_PRIM_KEY) { List<KBArticle> kbArticles = _kbArticleLocalService.getKBArticleAndAllDescendantKBArticles( resourcePrimKey, WorkflowConstants.STATUS_APPROVED, null); for (KBArticle kbArticle : kbArticles) { StagedModelDataHandlerUtil.exportReferenceStagedModel( portletDataContext, portletDataContext.getPortletId(), kbArticle); } } return portletPreferences; } @Override public PortletPreferences processImportPortletPreferences( PortletDataContext portletDataContext, PortletPreferences portletPreferences) throws PortletDataException { long resourcePrimKey = GetterUtil.getLong( portletPreferences.getValue("resourcePrimKey", StringPool.BLANK)); Map<Long, Long> kbArticleResourcePrimKeys = (Map<Long, Long>)portletDataContext.getNewPrimaryKeysMap( KBArticle.class); resourcePrimKey = MapUtil.getLong( kbArticleResourcePrimKeys, resourcePrimKey, resourcePrimKey); try { portletPreferences.setValue( "resourcePrimKey", String.valueOf(resourcePrimKey)); } catch (ReadOnlyException roe) { StringBundler sb = new StringBundler(8); sb.append("Unable to save converted portlet preference "); sb.append("resourcePrimKey="); sb.append(resourcePrimKey); sb.append(" (the root article) "); sb.append("while importing KB Article portlet. "); sb.append("(portletId="); sb.append(portletDataContext.getPortletId()); sb.append(")"); throw new PortletDataException(sb.toString(), roe); } return portletPreferences; } @Reference(unbind = "-") protected void seKBArticleLocalService( KBArticleLocalService kbArticleLocalService) { _kbArticleLocalService = kbArticleLocalService; } @Reference(unbind = "-") protected void setReferencedStagedModelImporterCapability( ReferencedStagedModelImporterCapability referencedStagedModelImporterCapability) { _referencedStagedModelImporterCapability = referencedStagedModelImporterCapability; } private KBArticleLocalService _kbArticleLocalService; private ReferencedStagedModelImporterCapability _referencedStagedModelImporterCapability; }