Package org.exoplatform.webui.organization

Source Code of org.exoplatform.webui.organization.UIAccountInputSet

/**
* Copyright (C) 2009 eXo Platform SAS.
*
* This 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 software 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.exoplatform.webui.organization;

import org.exoplatform.commons.serialization.api.annotations.Serialized;
import org.exoplatform.portal.pom.config.Utils;
import org.exoplatform.services.organization.OrganizationService;
import org.exoplatform.services.organization.Query;
import org.exoplatform.services.organization.User;
import org.exoplatform.web.application.ApplicationMessage;
import org.exoplatform.webui.application.WebuiRequestContext;
import org.exoplatform.webui.core.UIApplication;
import org.exoplatform.webui.form.UIFormInputWithActions;
import org.exoplatform.webui.form.UIFormStringInput;
import org.exoplatform.webui.form.validator.EmailAddressValidator;
import org.exoplatform.webui.form.validator.ExpressionValidator;
import org.exoplatform.webui.form.validator.MandatoryValidator;
import org.exoplatform.webui.form.validator.PasswordStringLengthValidator;
import org.exoplatform.webui.form.validator.ResourceValidator;
import org.exoplatform.webui.form.validator.StringLengthValidator;

/**
* Created by The eXo Platform SARL
* Author : Dang Van Minh
*          minhdv81@yahoo.com
* Jun 28, 2006
*/
@Serialized
public class UIAccountInputSet extends UIFormInputWithActions
{

   final static String USERNAME = "username";

   final static String PASSWORD1X = "password";

   final static String PASSWORD2X = "Confirmpassword";

   public UIAccountInputSet()
   {
   }

   public UIAccountInputSet(String name) throws Exception
   {
      super(name);
      //setComponentConfig(getClass(), null) ;
      addUIFormInput(new UIFormStringInput(USERNAME, "userName", null).addValidator(MandatoryValidator.class)
         .addValidator(StringLengthValidator.class, 3, 30).addValidator(ResourceValidator.class).addValidator(
            ExpressionValidator.class, Utils.USER_NAME_VALIDATOR_REGEX, "ResourceValidator.msg.Invalid-char"));
      addUIFormInput(new UIFormStringInput(PASSWORD1X, "password", null).setType(UIFormStringInput.PASSWORD_TYPE)
         .addValidator(MandatoryValidator.class).addValidator(PasswordStringLengthValidator.class, 6, 30));
      addUIFormInput(new UIFormStringInput(PASSWORD2X, "password", null).setType(UIFormStringInput.PASSWORD_TYPE)
         .addValidator(MandatoryValidator.class).addValidator(PasswordStringLengthValidator.class, 6, 30));
      addUIFormInput(new UIFormStringInput("firstName", "firstName", null).addValidator(StringLengthValidator.class, 3,
         45).addValidator(MandatoryValidator.class).addValidator(ExpressionValidator.class,
            Utils.FIRST_CHARACTER_NAME_VALIDATOR_REGEX, "FirstCharacterNameValidator.msg"));
      addUIFormInput(new UIFormStringInput("lastName", "lastName", null).addValidator(StringLengthValidator.class, 3,
         45).addValidator(MandatoryValidator.class).addValidator(ExpressionValidator.class,
            Utils.FIRST_CHARACTER_NAME_VALIDATOR_REGEX, "FirstCharacterNameValidator.msg"));
      addUIFormInput(new UIFormStringInput("email", "email", null).addValidator(MandatoryValidator.class).addValidator(
         EmailAddressValidator.class));
   }

   public String getUserName()
   {
      return getUIStringInput(USERNAME).getValue();
   }

   public String getPropertyPrefix()
   {
      return "UIAccountForm";
   }

   public void setValue(User user) throws Exception
   {
      if (user == null)
         return;
      invokeGetBindingField(user);
      getUIStringInput(USERNAME).setEditable(false);
   }

   public boolean save(OrganizationService service, boolean newUser) throws Exception
   {
      WebuiRequestContext context = WebuiRequestContext.getCurrentInstance();
      UIApplication uiApp = context.getUIApplication();
      String pass1x = getUIStringInput(PASSWORD1X).getValue();
      String pass2x = getUIStringInput(PASSWORD2X).getValue();
      if (!pass1x.equals(pass2x))
      {
         uiApp.addMessage(new ApplicationMessage("UIAccountForm.msg.password-is-not-match", null, ApplicationMessage.ERROR));
         return false;
      }
      String username = getUIStringInput(USERNAME).getValue();
      if (newUser)
      {
         User user = service.getUserHandler().createUserInstance(username);
         invokeSetBindingField(user);
         //user.setPassword(Util.encodeMD5(pass1x)) ;
         if (service.getUserHandler().findUserByName(user.getUserName()) != null)
         {
            Object[] args = {user.getUserName()};
            uiApp.addMessage(new ApplicationMessage("UIAccountInputSet.msg.user-exist", args, ApplicationMessage.ERROR));
            return false;
         }

         Query query = new Query();
         query.setEmail(getUIStringInput("email").getValue());
         if (service.getUserHandler().findUsers(query).getAll().size() > 0)
         {
            Object[] args = {user.getUserName()};
            uiApp.addMessage(new ApplicationMessage("UIAccountInputSet.msg.email-exist", args, ApplicationMessage.ERROR));
            return false;
         }

         service.getUserHandler().createUser(user, true);
         reset();
         return true;
      }
      User user = service.getUserHandler().findUserByName(username);
      invokeSetBindingField(user);
      //    user.setPassword(Util.encodeMD5(pass1x)) ;
      service.getUserHandler().saveUser(user, true);
      return true;
   }

}
TOP

Related Classes of org.exoplatform.webui.organization.UIAccountInputSet

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.