/** * 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.login.web.internal.portlet.action; import com.liferay.login.web.constants.LoginPortletKeys; import com.liferay.petra.content.ContentUtil; import com.liferay.portal.kernel.portlet.ConfigurationAction; import com.liferay.portal.kernel.portlet.DefaultConfigurationAction; import com.liferay.portal.kernel.util.LocaleUtil; import com.liferay.portal.util.PropsValues; import javax.portlet.ActionRequest; import javax.portlet.ActionResponse; import javax.portlet.PortletConfig; import javax.portlet.PortletPreferences; import javax.portlet.PortletRequest; import org.osgi.service.component.annotations.Component; /** * @author Brian Wing Shun Chan * @author Julio Camarero */ @Component( property = { "javax.portlet.name=" + LoginPortletKeys.FAST_LOGIN, "javax.portlet.name=" + LoginPortletKeys.LOGIN }, service = ConfigurationAction.class ) public class LoginConfigurationActionImpl extends DefaultConfigurationAction { @Override public void postProcess( long companyId, PortletRequest portletRequest, PortletPreferences portletPreferences) { String languageId = LocaleUtil.toLanguageId( LocaleUtil.getSiteDefault()); removeDefaultValue( portletRequest, portletPreferences, "emailPasswordResetBody_" + languageId, ContentUtil.get( LoginConfigurationActionImpl.class.getClassLoader(), PropsValues.ADMIN_EMAIL_PASSWORD_RESET_BODY)); removeDefaultValue( portletRequest, portletPreferences, "emailPasswordResetSubject_" + languageId, ContentUtil.get( LoginConfigurationActionImpl.class.getClassLoader(), PropsValues.ADMIN_EMAIL_PASSWORD_RESET_SUBJECT)); removeDefaultValue( portletRequest, portletPreferences, "emailPasswordSentBody_" + languageId, ContentUtil.get( LoginConfigurationActionImpl.class.getClassLoader(), PropsValues.ADMIN_EMAIL_PASSWORD_SENT_BODY)); removeDefaultValue( portletRequest, portletPreferences, "emailPasswordSentSubject_" + languageId, ContentUtil.get( LoginConfigurationActionImpl.class.getClassLoader(), PropsValues.ADMIN_EMAIL_PASSWORD_SENT_SUBJECT)); } @Override public void processAction( PortletConfig portletConfig, ActionRequest actionRequest, ActionResponse actionResponse) throws Exception { validateEmailFrom(actionRequest); super.processAction(portletConfig, actionRequest, actionResponse); } }