/** * 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.web.internal.portlet.configuration.icon; import com.liferay.knowledge.base.constants.KBActionKeys; import com.liferay.knowledge.base.constants.KBPortletKeys; import com.liferay.knowledge.base.model.KBFolder; import com.liferay.knowledge.base.service.permission.KBFolderPermission; import com.liferay.knowledge.base.web.internal.constants.KBWebKeys; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.portlet.LiferayWindowState; 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.PermissionChecker; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.WebKeys; import com.liferay.taglib.security.PermissionsURLTag; import javax.portlet.PortletRequest; import javax.portlet.PortletResponse; import org.osgi.service.component.annotations.Component; /** * @author Roberto Díaz */ @Component( immediate = true, property = { "javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_ADMIN, "path=/admin/view_folders.jsp" }, service = PortletConfigurationIcon.class ) public class KBFolderPermissionsPortletConfigurationIcon extends BasePortletConfigurationIcon { @Override public String getMessage(PortletRequest portletRequest) { return LanguageUtil.get( getResourceBundle(getLocale(portletRequest)), "permissions"); } @Override public String getURL( PortletRequest portletRequest, PortletResponse portletResponse) { String url = StringPool.BLANK; ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); KBFolder kbFolder = (KBFolder)portletRequest.getAttribute( KBWebKeys.KNOWLEDGE_BASE_PARENT_KB_FOLDER); try { String modelResource = KBFolder.class.getName(); String modelResourceDescription = kbFolder.getName(); String resourcePrimKey = String.valueOf(kbFolder.getKbFolderId()); url = PermissionsURLTag.doTag( StringPool.BLANK, modelResource, modelResourceDescription, null, resourcePrimKey, LiferayWindowState.POP_UP.toString(), null, themeDisplay.getRequest()); } catch (Exception e) { } return url; } @Override public double getWeight() { return 101; } @Override public boolean isShow(PortletRequest portletRequest) { ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); KBFolder kbFolder = (KBFolder)portletRequest.getAttribute( KBWebKeys.KNOWLEDGE_BASE_PARENT_KB_FOLDER); PermissionChecker permissionChecker = themeDisplay.getPermissionChecker(); if (KBFolderPermission.contains( permissionChecker, kbFolder, KBActionKeys.PERMISSIONS)) { return true; } return false; } @Override public boolean isUseDialog() { return true; } }