/** * 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.password.policies.admin.web.internal.portlet.configuration.icon; import com.liferay.password.policies.admin.constants.PasswordPoliciesAdminPortletKeys; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.model.PasswordPolicy; 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.security.permission.ActionKeys; import com.liferay.portal.kernel.service.PasswordPolicyLocalService; import com.liferay.portal.kernel.service.permission.PasswordPolicyPermissionUtil; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.ParamUtil; import com.liferay.portal.kernel.util.Portal; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.WebKeys; import javax.portlet.ActionRequest; import javax.portlet.PortletRequest; import javax.portlet.PortletResponse; import javax.portlet.PortletURL; import javax.servlet.http.HttpServletRequest; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Pei-Jung Lan */ @Component( immediate = true, property = { "javax.portlet.name=" + PasswordPoliciesAdminPortletKeys.PASSWORD_POLICIES_ADMIN, "path=/edit_password_policy.jsp", "path=/edit_password_policy_assignments.jsp" }, service = PortletConfigurationIcon.class ) public class DeletePasswordPolicyPortletConfigurationIcon extends BasePortletConfigurationIcon { @Override public String getMessage(PortletRequest portletRequest) { return LanguageUtil.get( getResourceBundle(getLocale(portletRequest)), "delete"); } @Override public String getURL( PortletRequest portletRequest, PortletResponse portletResponse) { try { PortletURL portletURL = PortletURLFactoryUtil.create( portletRequest, PasswordPoliciesAdminPortletKeys.PASSWORD_POLICIES_ADMIN, PortletRequest.ACTION_PHASE); portletURL.setParameter( ActionRequest.ACTION_NAME, "deletePasswordPolicy"); portletURL.setParameter("mvcPath", "/view.jsp"); portletURL.setParameter( "passwordPolicyId", String.valueOf(_getPasswordPolicyId(portletRequest))); return portletURL.toString(); } catch (Exception e) { } return StringPool.BLANK; } @Override public double getWeight() { return 101; } @Override public boolean isShow(PortletRequest portletRequest) { try { ThemeDisplay themeDisplay = (ThemeDisplay)portletRequest.getAttribute( WebKeys.THEME_DISPLAY); long passwordPolicyId = _getPasswordPolicyId(portletRequest); PasswordPolicy passwordPolicy = _passwordPolicyLocalService.fetchPasswordPolicy( passwordPolicyId); if (!passwordPolicy.getDefaultPolicy() && PasswordPolicyPermissionUtil.contains( themeDisplay.getPermissionChecker(), passwordPolicyId, ActionKeys.UPDATE)) { return true; } } catch (Exception e) { } return false; } @Reference(unbind = "-") protected void setPasswordPolicyLocalService( PasswordPolicyLocalService passwordPolicyLocalService) { _passwordPolicyLocalService = passwordPolicyLocalService; } private long _getPasswordPolicyId(PortletRequest portletRequest) { HttpServletRequest request = _portal.getHttpServletRequest( portletRequest); return ParamUtil.getLong(request, "passwordPolicyId"); } private PasswordPolicyLocalService _passwordPolicyLocalService; @Reference private Portal _portal; }