/modules/apps/login/login-web/src/main/java/com/liferay/login/web/internal/portlet/action/LoginConfigurationActionImpl.java

http://github.com/liferay/liferay-portal · Java · 104 lines · 70 code · 17 blank · 17 comment · 3 complexity · 857b46fcf8544605b347e4f25e5411be MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.login.web.internal.portlet.action;
  15. import com.liferay.login.web.constants.LoginPortletKeys;
  16. import com.liferay.petra.content.ContentUtil;
  17. import com.liferay.portal.kernel.exception.SystemException;
  18. import com.liferay.portal.kernel.portlet.ConfigurationAction;
  19. import com.liferay.portal.kernel.portlet.DefaultConfigurationAction;
  20. import com.liferay.portal.kernel.util.LocaleUtil;
  21. import com.liferay.portal.kernel.util.ParamUtil;
  22. import com.liferay.portal.kernel.util.PortalClassLoaderUtil;
  23. import com.liferay.portal.util.PropsValues;
  24. import java.util.Enumeration;
  25. import javax.portlet.ActionRequest;
  26. import javax.portlet.ActionResponse;
  27. import javax.portlet.PortletConfig;
  28. import javax.portlet.PortletPreferences;
  29. import javax.portlet.PortletRequest;
  30. import javax.portlet.ReadOnlyException;
  31. import org.osgi.service.component.annotations.Component;
  32. /**
  33. * @author Brian Wing Shun Chan
  34. * @author Julio Camarero
  35. */
  36. @Component(
  37. property = {
  38. "javax.portlet.name=" + LoginPortletKeys.FAST_LOGIN,
  39. "javax.portlet.name=" + LoginPortletKeys.LOGIN
  40. },
  41. service = ConfigurationAction.class
  42. )
  43. public class LoginConfigurationActionImpl extends DefaultConfigurationAction {
  44. @Override
  45. public void postProcess(
  46. long companyId, PortletRequest portletRequest,
  47. PortletPreferences portletPreferences) {
  48. String languageId = LocaleUtil.toLanguageId(
  49. LocaleUtil.getSiteDefault());
  50. removeDefaultValue(
  51. portletRequest, portletPreferences,
  52. "emailPasswordResetBody_" + languageId,
  53. ContentUtil.get(
  54. PortalClassLoaderUtil.getClassLoader(),
  55. PropsValues.ADMIN_EMAIL_PASSWORD_RESET_BODY));
  56. removeDefaultValue(
  57. portletRequest, portletPreferences,
  58. "emailPasswordResetSubject_" + languageId,
  59. ContentUtil.get(
  60. PortalClassLoaderUtil.getClassLoader(),
  61. PropsValues.ADMIN_EMAIL_PASSWORD_RESET_SUBJECT));
  62. String[] discardLegacyKeys = ParamUtil.getStringValues(
  63. portletRequest, "discardLegacyKey");
  64. Enumeration<String> enumeration = portletPreferences.getNames();
  65. try {
  66. while (enumeration.hasMoreElements()) {
  67. String name = enumeration.nextElement();
  68. for (String discardLegacyKey : discardLegacyKeys) {
  69. if (name.startsWith(discardLegacyKey + "_")) {
  70. portletPreferences.reset(name);
  71. }
  72. }
  73. }
  74. }
  75. catch (ReadOnlyException readOnlyException) {
  76. throw new SystemException(readOnlyException);
  77. }
  78. }
  79. @Override
  80. public void processAction(
  81. PortletConfig portletConfig, ActionRequest actionRequest,
  82. ActionResponse actionResponse)
  83. throws Exception {
  84. validateEmailFrom(actionRequest);
  85. super.processAction(portletConfig, actionRequest, actionResponse);
  86. }
  87. }