/** * 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.asset.tags.navigation.web.internal.portlet.template; import com.liferay.asset.kernel.model.AssetTag; import com.liferay.asset.kernel.service.AssetTagLocalService; import com.liferay.asset.kernel.service.AssetTagService; import com.liferay.asset.kernel.service.AssetTagStatsLocalService; import com.liferay.asset.tags.navigation.web.constants.AssetTagsNavigationPortletKeys; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.portletdisplaytemplate.BasePortletDisplayTemplateHandler; import com.liferay.portal.kernel.template.TemplateHandler; import com.liferay.portal.kernel.template.TemplateVariableGroup; import com.liferay.portal.kernel.util.Portal; import com.liferay.portal.kernel.util.ResourceBundleUtil; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portlet.display.template.PortletDisplayTemplateConstants; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.ResourceBundle; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Juan Fernández */ @Component( immediate = true, property = { "javax.portlet.name=" + AssetTagsNavigationPortletKeys.ASSET_TAGS_NAVIGATION }, service = TemplateHandler.class ) public class AssetTagsNavigationPortletDisplayTemplateHandler extends BasePortletDisplayTemplateHandler { @Override public String getClassName() { return AssetTag.class.getName(); } @Override public String getName(Locale locale) { ResourceBundle resourceBundle = ResourceBundleUtil.getBundle( "content.Language", locale, getClass()); String portletTitle = _portal.getPortletTitle( AssetTagsNavigationPortletKeys.ASSET_TAGS_NAVIGATION, resourceBundle); return portletTitle.concat(StringPool.SPACE).concat( LanguageUtil.get(locale, "template")); } @Override public String getResourceName() { return AssetTagsNavigationPortletKeys.ASSET_TAGS_NAVIGATION; } @Override public Map<String, TemplateVariableGroup> getTemplateVariableGroups( long classPK, String language, Locale locale) throws Exception { Map<String, TemplateVariableGroup> templateVariableGroups = super.getTemplateVariableGroups(classPK, language, locale); TemplateVariableGroup templateVariableGroup = templateVariableGroups.get("fields"); templateVariableGroup.empty(); templateVariableGroup.addCollectionVariable( "tags", List.class, PortletDisplayTemplateConstants.ENTRIES, "tag", AssetTag.class, "curTag", "name"); String[] restrictedVariables = getRestrictedVariables(language); TemplateVariableGroup assetServicesTemplateVariableGroup = new TemplateVariableGroup("tag-services", restrictedVariables); assetServicesTemplateVariableGroup.setAutocompleteEnabled(false); assetServicesTemplateVariableGroup.addServiceLocatorVariables( AssetTagLocalService.class, AssetTagService.class, AssetTagStatsLocalService.class); templateVariableGroups.put( assetServicesTemplateVariableGroup.getLabel(), assetServicesTemplateVariableGroup); return templateVariableGroups; } @Override protected String getTemplatesConfigPath() { return "com/liferay/asset/tags/navigation/web/portlet/template" + "/dependencies/portlet-display-templates.xml"; } @Reference private Portal _portal; }