/** * 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.layout.admin.web.internal.portlet.configuration.icon; import com.liferay.layout.admin.web.internal.constants.LayoutAdminPortletKeys; import com.liferay.layout.admin.web.internal.display.context.OrphanPortletsDisplayContext; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.model.Layout; import com.liferay.portal.kernel.model.LayoutConstants; import com.liferay.portal.kernel.model.Portlet; import com.liferay.portal.kernel.portlet.LiferayWindowState; import com.liferay.portal.kernel.portlet.PortletURLFactoryUtil; import com.liferay.portal.kernel.portlet.configuration.icon.BasePortletConfigurationIcon; import com.liferay.portal.kernel.portlet.configuration.icon.PortletConfigurationIcon; import com.liferay.portal.kernel.service.LayoutLocalService; import com.liferay.portal.kernel.theme.PortletDisplay; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.ParamUtil; import com.liferay.portal.kernel.util.ResourceBundleUtil; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.WebKeys; import java.util.List; import java.util.ResourceBundle; import javax.portlet.PortletRequest; import javax.portlet.PortletResponse; import javax.portlet.PortletURL; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Eudaldo Alonso */ @Component( immediate = true, property = {"javax.portlet.name=" + LayoutAdminPortletKeys.GROUP_PAGES}, service = PortletConfigurationIcon.class ) public class OrphanPortletsPortletConfigurationIcon extends BasePortletConfigurationIcon { @Override public String getMessage(PortletRequest portletRequest) { ResourceBundle resourceBundle = ResourceBundleUtil.getBundle( "content.Language", getLocale(portletRequest), getClass()); return LanguageUtil.get(resourceBundle, "orphan-portlets"); } @Override public String getURL( PortletRequest portletRequest, PortletResponse portletResponse) { ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); PortletDisplay portletDisplay = themeDisplay.getPortletDisplay(); try { PortletURL portletURL = PortletURLFactoryUtil.create( portletRequest, portletDisplay.getId(), PortletRequest.RENDER_PHASE); portletURL.setParameter("mvcPath", "/orphan_portlets.jsp"); portletURL.setParameter("redirect", themeDisplay.getURLCurrent()); portletURL.setParameter( "selPlid", String.valueOf(getSelPlid(portletRequest))); portletURL.setWindowState(LiferayWindowState.POP_UP); return portletURL.toString(); } catch (Exception e) { } return StringPool.BLANK; } @Override public double getWeight() { return 103.0; } @Override public boolean isShow(PortletRequest portletRequest) { try { Layout layout = getLayout(portletRequest); if (layout == null) { return false; } if (!layout.isSupportsEmbeddedPortlets()) { return false; } OrphanPortletsDisplayContext orphanPortletsDisplayContext = new OrphanPortletsDisplayContext(portletRequest); List<Portlet> orphanPortlets = orphanPortletsDisplayContext.getOrphanPortlets(); if (!orphanPortlets.isEmpty()) { return true; } } catch (Exception e) { } return false; } @Override public boolean isUseDialog() { return true; } protected Layout getLayout(PortletRequest portletRequest) throws Exception { long selPlid = getSelPlid(portletRequest); return _layoutLocalService.fetchLayout(selPlid); } protected long getSelPlid(PortletRequest portletRequest) { return ParamUtil.getLong( portletRequest, "selPlid", LayoutConstants.DEFAULT_PLID); } @Reference(unbind = "-") protected void setLayoutLocalService( LayoutLocalService layoutLocalService) { _layoutLocalService = layoutLocalService; } private LayoutLocalService _layoutLocalService; }