/** * 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.editor.configuration.internal; import com.liferay.item.selector.ItemSelector; import com.liferay.item.selector.ItemSelectorCriterion; import com.liferay.item.selector.ItemSelectorReturnType; import com.liferay.item.selector.criteria.FileEntryItemSelectorReturnType; import com.liferay.item.selector.criteria.URLItemSelectorReturnType; import com.liferay.item.selector.criteria.image.criterion.ImageItemSelectorCriterion; import com.liferay.item.selector.criteria.upload.criterion.UploadItemSelectorCriterion; import com.liferay.item.selector.criteria.url.criterion.URLItemSelectorCriterion; import com.liferay.knowledge.base.constants.KBPortletKeys; import com.liferay.knowledge.base.item.selector.criterion.KBAttachmentItemSelectorCriterion; import com.liferay.portal.kernel.editor.configuration.BaseEditorConfigContributor; import com.liferay.portal.kernel.editor.configuration.EditorConfigContributor; import com.liferay.portal.kernel.json.JSONObject; import com.liferay.portal.kernel.portlet.RequestBackedPortletURLFactory; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.AggregateResourceBundleLoader; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.ResourceBundleLoader; import com.liferay.portal.kernel.util.ResourceBundleUtil; import com.liferay.portal.language.LanguageResources; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.ResourceBundle; import javax.portlet.ActionRequest; import javax.portlet.PortletURL; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Roberto Díaz */ @Component( property = { "editor.config.key=contentEditor", "javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_ADMIN, "javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_ARTICLE, "javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_DISPLAY, "javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_SEARCH, "javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_SECTION }, service = EditorConfigContributor.class ) public class KBAttachmentEditorConfigContributor extends BaseEditorConfigContributor { @Override public void populateConfigJSONObject( JSONObject jsonObject, Map<String, Object> inputEditorTaglibAttributes, ThemeDisplay themeDisplay, RequestBackedPortletURLFactory requestBackedPortletURLFactory) { boolean allowBrowseDocuments = GetterUtil.getBoolean( inputEditorTaglibAttributes.get( "liferay-ui:input-editor:allowBrowseDocuments")); if (!allowBrowseDocuments) { return; } Map<String, String> fileBrowserParamsMap = (Map<String, String>)inputEditorTaglibAttributes.get( "liferay-ui:input-editor:fileBrowserParams"); long resourcePrimKey = 0; if (fileBrowserParamsMap != null) { resourcePrimKey = GetterUtil.getLong( fileBrowserParamsMap.get("resourcePrimKey")); } if (resourcePrimKey == 0) { return; } List<ItemSelectorReturnType> desiredItemSelectorReturnTypes = new ArrayList<>(); desiredItemSelectorReturnTypes.add( new FileEntryItemSelectorReturnType()); desiredItemSelectorReturnTypes.add(new URLItemSelectorReturnType()); ItemSelectorCriterion kbAttachmentsItemSelectorCriterion = getKBAttachmentItemSelectorCriterion( resourcePrimKey, desiredItemSelectorReturnTypes); ItemSelectorCriterion imageItemSelectorCriterion = getImageItemSelectorCriterion(desiredItemSelectorReturnTypes); ItemSelectorCriterion urlItemSelectorCriterion = getURLItemSelectorCriterion(); ItemSelectorCriterion uploadItemSelectorCriterion = getUploadItemSelectorCriterion( resourcePrimKey, themeDisplay, requestBackedPortletURLFactory); String namespace = GetterUtil.getString( inputEditorTaglibAttributes.get( "liferay-ui:input-editor:namespace")); String name = GetterUtil.getString( inputEditorTaglibAttributes.get("liferay-ui:input-editor:name")); PortletURL itemSelectorURL = _itemSelector.getItemSelectorURL( requestBackedPortletURLFactory, namespace + name + "selectItem", kbAttachmentsItemSelectorCriterion, imageItemSelectorCriterion, urlItemSelectorCriterion, uploadItemSelectorCriterion); jsonObject.put( "filebrowserImageBrowseLinkUrl", itemSelectorURL.toString()); jsonObject.put("filebrowserImageBrowseUrl", itemSelectorURL.toString()); } @Reference(unbind = "-") public void setItemSelector(ItemSelector itemSelector) { _itemSelector = itemSelector; } protected ItemSelectorCriterion getImageItemSelectorCriterion( List<ItemSelectorReturnType> desiredItemSelectorReturnTypes) { ItemSelectorCriterion imageItemSelectorCriterion = new ImageItemSelectorCriterion(); imageItemSelectorCriterion.setDesiredItemSelectorReturnTypes( desiredItemSelectorReturnTypes); return imageItemSelectorCriterion; } protected ItemSelectorCriterion getKBAttachmentItemSelectorCriterion( long resourcePrimKey, List<ItemSelectorReturnType> desiredItemSelectorReturnTypes) { ItemSelectorCriterion kbAttachmentItemSelectorCriterion = new KBAttachmentItemSelectorCriterion(resourcePrimKey); kbAttachmentItemSelectorCriterion.setDesiredItemSelectorReturnTypes( desiredItemSelectorReturnTypes); return kbAttachmentItemSelectorCriterion; } protected ItemSelectorCriterion getUploadItemSelectorCriterion( long resourcePrimKey, ThemeDisplay themeDisplay, RequestBackedPortletURLFactory requestBackedPortletURLFactory) { PortletURL portletURL = requestBackedPortletURLFactory.createActionURL( KBPortletKeys.KNOWLEDGE_BASE_ADMIN); portletURL.setParameter( ActionRequest.ACTION_NAME, "uploadKBArticleAttachments"); portletURL.setParameter( "resourcePrimKey", String.valueOf(resourcePrimKey)); ResourceBundle resourceBundle = _resourceBundleLoader.loadResourceBundle(themeDisplay.getLocale()); ItemSelectorCriterion uploadItemSelectorCriterion = new UploadItemSelectorCriterion( portletURL.toString(), ResourceBundleUtil.getString( resourceBundle, "article-attachments")); List<ItemSelectorReturnType> uploadDesiredItemSelectorReturnTypes = new ArrayList<>(); uploadDesiredItemSelectorReturnTypes.add( new FileEntryItemSelectorReturnType()); uploadItemSelectorCriterion.setDesiredItemSelectorReturnTypes( uploadDesiredItemSelectorReturnTypes); return uploadItemSelectorCriterion; } protected ItemSelectorCriterion getURLItemSelectorCriterion() { ItemSelectorCriterion urlItemSelectorCriterion = new URLItemSelectorCriterion(); List<ItemSelectorReturnType> urlDesiredItemSelectorReturnTypes = new ArrayList<>(); urlDesiredItemSelectorReturnTypes.add(new URLItemSelectorReturnType()); urlItemSelectorCriterion.setDesiredItemSelectorReturnTypes( urlDesiredItemSelectorReturnTypes); return urlItemSelectorCriterion; } @Reference( target = "(bundle.symbolic.name=com.liferay.knowledge.base.item.selector.web)", unbind = "-" ) protected void setResourceBundleLoader( ResourceBundleLoader resourceBundleLoader) { _resourceBundleLoader = new AggregateResourceBundleLoader( resourceBundleLoader, LanguageResources.RESOURCE_BUNDLE_LOADER); } private ItemSelector _itemSelector; private ResourceBundleLoader _resourceBundleLoader; }