/** * 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.users.admin.web.portlet.configuration.icon; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.model.Organization; import com.liferay.portal.kernel.model.User; import com.liferay.portal.kernel.model.UserGroupRole; import com.liferay.portal.kernel.portlet.LiferayWindowState; import com.liferay.portal.kernel.portlet.PortletProvider; import com.liferay.portal.kernel.portlet.PortletProviderUtil; 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.security.permission.PermissionChecker; import com.liferay.portal.kernel.service.permission.OrganizationPermissionUtil; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.ResourceBundleUtil; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.WebKeys; import com.liferay.users.admin.constants.UsersAdminPortletKeys; import com.liferay.users.admin.web.portlet.action.ActionUtil; import java.util.ResourceBundle; import javax.portlet.PortletRequest; import javax.portlet.PortletResponse; import javax.portlet.PortletURL; import org.osgi.service.component.annotations.Component; /** * @author Pei-Jung Lan */ @Component( immediate = true, property = { "javax.portlet.name=" + UsersAdminPortletKeys.USERS_ADMIN, "path=/users_admin/view" }, service = PortletConfigurationIcon.class ) public class AssignOrganizationRolesPortletConfigurationIcon extends BasePortletConfigurationIcon { @Override public String getMessage(PortletRequest portletRequest) { ResourceBundle resourceBundle = ResourceBundleUtil.getBundle( "content.Language", getLocale(portletRequest), getClass()); return LanguageUtil.get(resourceBundle, "assign-organization-roles"); } @Override public String getURL( PortletRequest portletRequest, PortletResponse portletResponse) { try { Organization organization = ActionUtil.getOrganization( portletRequest); long organizationGroupId = organization.getGroupId(); PortletURL portletURL = PortletProviderUtil.getPortletURL( portletRequest, UserGroupRole.class.getName(), PortletProvider.Action.EDIT); portletURL.setParameter("className", User.class.getName()); portletURL.setParameter( "groupId", String.valueOf(organizationGroupId)); portletURL.setWindowState(LiferayWindowState.POP_UP); return portletURL.toString(); } catch (Exception e) { } return StringPool.BLANK; } @Override public double getWeight() { return 103; } @Override public boolean isShow(PortletRequest portletRequest) { ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); try { PermissionChecker permissionChecker = themeDisplay.getPermissionChecker(); Organization organization = ActionUtil.getOrganization( portletRequest); long organizationGroupId = organization.getGroupId(); if (permissionChecker.isGroupOwner(organizationGroupId) || OrganizationPermissionUtil.contains( permissionChecker, organization, ActionKeys.ASSIGN_USER_ROLES)) { return true; } } catch (Exception e) { } return false; } @Override public boolean isUseDialog() { return true; } }