com.liferay.wiki.web.internal.portlet.configuration.icon.NodePermissionsPortletConfigurationIcon.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.wiki.web.internal.portlet.configuration.icon.NodePermissionsPortletConfigurationIcon.java

Source

/**
 * 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.wiki.web.internal.portlet.configuration.icon;

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.ActionKeys;
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 com.liferay.wiki.constants.WikiPortletKeys;
import com.liferay.wiki.model.WikiNode;
import com.liferay.wiki.service.permission.WikiNodePermissionChecker;
import com.liferay.wiki.web.internal.portlet.action.ActionUtil;

import javax.portlet.PortletRequest;
import javax.portlet.PortletResponse;

import org.osgi.service.component.annotations.Component;

/**
 * @author Roberto Daz
 */
@Component(immediate = true, property = { "javax.portlet.name=" + WikiPortletKeys.WIKI_ADMIN,
        "path=/wiki/view_pages" }, service = PortletConfigurationIcon.class)
public class NodePermissionsPortletConfigurationIcon extends BasePortletConfigurationIcon {

    @Override
    public String getMessage(PortletRequest portletRequest) {
        return LanguageUtil.get(getResourceBundle(getLocale(portletRequest)), "permissions");
    }

    @Override
    public String getURL(PortletRequest portletRequest, PortletResponse portletResponse) {

        ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY);

        String url = StringPool.BLANK;

        try {
            WikiNode node = ActionUtil.getNode(portletRequest);

            url = PermissionsURLTag.doTag(StringPool.BLANK, WikiNode.class.getName(), node.getName(), null,
                    String.valueOf(node.getNodeId()), LiferayWindowState.POP_UP.toString(), null,
                    themeDisplay.getRequest());
        } catch (Exception e) {
        }

        return url;
    }

    @Override
    public double getWeight() {
        return 104;
    }

    @Override
    public boolean isShow(PortletRequest portletRequest) {
        ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY);

        try {
            WikiNode node = ActionUtil.getNode(portletRequest);

            return WikiNodePermissionChecker.contains(themeDisplay.getPermissionChecker(), node,
                    ActionKeys.PERMISSIONS);
        } catch (Exception e) {
        }

        return false;
    }

    @Override
    public boolean isUseDialog() {
        return true;
    }

}