/** * 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.message.boards.web.internal.portlet.configuration.icon; import com.liferay.message.boards.kernel.model.MBCategory; import com.liferay.message.boards.kernel.model.MBCategoryConstants; import com.liferay.message.boards.web.constants.MBPortletKeys; import com.liferay.message.boards.web.internal.portlet.action.ActionUtil; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.portlet.configuration.icon.BasePortletConfigurationIcon; import com.liferay.portal.kernel.portlet.configuration.icon.PortletConfigurationIcon; import com.liferay.portal.kernel.security.permission.ActionKeys; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.Constants; import com.liferay.portal.kernel.util.Portal; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.WebKeys; import com.liferay.portlet.messageboards.service.permission.MBCategoryPermission; import com.liferay.trash.TrashHelper; import javax.portlet.ActionRequest; 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 Sergio González */ @Component( immediate = true, property = { "javax.portlet.name=" + MBPortletKeys.MESSAGE_BOARDS_ADMIN, "path=/message_boards/view_category" }, service = PortletConfigurationIcon.class ) public class DeleteCategoryPortletConfigurationIcon extends BasePortletConfigurationIcon { @Override public String getMessage(PortletRequest portletRequest) { String key = "delete"; ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); if (isTrashEnabled(themeDisplay.getScopeGroupId())) { key = "move-to-the-recycle-bin"; } return LanguageUtil.get( getResourceBundle(getLocale(portletRequest)), key); } @Override public String getURL( PortletRequest portletRequest, PortletResponse portletResponse) { try { PortletURL deleteURL = _portal.getControlPanelPortletURL( portletRequest, MBPortletKeys.MESSAGE_BOARDS_ADMIN, PortletRequest.ACTION_PHASE); deleteURL.setParameter( ActionRequest.ACTION_NAME, "/message_boards/edit_category"); String cmd = Constants.DELETE; ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); if (isTrashEnabled(themeDisplay.getScopeGroupId())) { cmd = Constants.MOVE_TO_TRASH; } deleteURL.setParameter(Constants.CMD, cmd); PortletURL parentCategoryURL = _portal.getControlPanelPortletURL( portletRequest, MBPortletKeys.MESSAGE_BOARDS_ADMIN, PortletRequest.RENDER_PHASE); MBCategory category = ActionUtil.getCategory(portletRequest); long parentCategoryId = getCategoryId(category.getParentCategory()); if (parentCategoryId == MBCategoryConstants.DEFAULT_PARENT_CATEGORY_ID) { parentCategoryURL.setParameter( "mvcRenderCommandName", "/message_boards/view"); } else { parentCategoryURL.setParameter( "mvcRenderCommandName", "/message_boards/view_category"); parentCategoryURL.setParameter( "mbCategoryId", String.valueOf(parentCategoryId)); } deleteURL.setParameter("redirect", parentCategoryURL.toString()); deleteURL.setParameter( "mbCategoryId", String.valueOf(category.getCategoryId())); return deleteURL.toString(); } catch (Exception e) { } return StringPool.BLANK; } @Override public double getWeight() { return 100; } @Override public boolean isShow(PortletRequest portletRequest) { try { MBCategory category = ActionUtil.getCategory(portletRequest); if (category == null) { return false; } ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); if (MBCategoryPermission.contains( themeDisplay.getPermissionChecker(), category, ActionKeys.DELETE)) { return true; } } catch (Exception e) { } return false; } protected long getCategoryId(MBCategory category) { long categoryId = MBCategoryConstants.DEFAULT_PARENT_CATEGORY_ID; if (category != null) { categoryId = category.getCategoryId(); } return categoryId; } protected boolean isTrashEnabled(long groupId) { try { if (_trashHelper.isTrashEnabled(groupId)) { return true; } } catch (Exception e) { } return false; } @Reference private Portal _portal; @Reference private TrashHelper _trashHelper; }