/** * 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.editor.configuration; import com.liferay.portal.kernel.editor.configuration.EditorConfigContributor; import com.liferay.portal.kernel.json.JSONFactoryUtil; 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.ListUtil; import com.liferay.registry.collections.ServiceReferenceMapper; import com.liferay.registry.collections.ServiceTrackerCollections; import com.liferay.registry.collections.ServiceTrackerMap; import java.util.Iterator; import java.util.List; import java.util.Map; /** * @author Sergio González */ public class EditorConfigProvider extends BaseEditorConfigurationProvider<EditorConfigContributor> { public JSONObject getConfigJSONObject( String portletName, String editorConfigKey, String editorName, Map<String, Object> inputEditorTaglibAttributes, ThemeDisplay themeDisplay, RequestBackedPortletURLFactory requestBackedPortletURLFactory) { JSONObject configJSONObject = JSONFactoryUtil.createJSONObject(); List<EditorConfigContributor> editorConfigContributors = getContributors(portletName, editorConfigKey, editorName); Iterator<EditorConfigContributor> iterator = ListUtil.reverseIterator( editorConfigContributors); while (iterator.hasNext()) { EditorConfigContributor editorConfigContributor = iterator.next(); editorConfigContributor.populateConfigJSONObject( configJSONObject, inputEditorTaglibAttributes, themeDisplay, requestBackedPortletURLFactory); } return configJSONObject; } @Override protected ServiceTrackerMap<String, List<EditorConfigContributor>> getServiceTrackerMap() { return _serviceTrackerMap; } private static final ServiceReferenceMapper<String, EditorConfigContributor> _serviceReferenceMapper = new EditorServiceReferenceMapper<>(); private static final ServiceTrackerMap <String, List<EditorConfigContributor>> _serviceTrackerMap = ServiceTrackerCollections.openMultiValueMap( EditorConfigContributor.class, "(|(editor.config.key=*)(editor.name=*)" + "(javax.portlet.name=*)(objectClass=" + EditorConfigContributor.class.getName() + "))", _serviceReferenceMapper); }