Package org.structr.core.property

Source Code of org.structr.core.property.PasswordProperty

/**
* Copyright (C) 2010-2014 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Structr 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Structr.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.structr.core.property;

import org.apache.commons.lang3.RandomStringUtils;
import org.structr.common.SecurityContext;
import org.structr.common.error.FrameworkException;
import org.structr.common.error.TooShortToken;
import org.structr.core.GraphObject;
import org.structr.core.auth.AuthHelper;
import org.structr.core.converter.ValidationInfo;
import org.structr.core.entity.Principal;

/**
* A {@link StringProperty} that converts its value to a hexadecimal SHA512 hash upon storage.
* The return value of this property will always be the password hash, the clear-text password
* will be lost.
*
* @author Christian Morgner
*/
public class PasswordProperty extends StringProperty {

  private ValidationInfo validationInfo = null;
 
  public PasswordProperty(String name) {
    this(name, null);
  }
 
  public PasswordProperty(String name, ValidationInfo info) {
    super(name);
   
    this.validationInfo = info;
  }
 
  @Override
  public void registrationCallback(Class entityType) {

    if (validationInfo != null && validationInfo.getErrorKey() == null) {
      validationInfo.setErrorKey(this);
    }
  }
 
  @Override
  public String typeName() {
    return "String";
  }
 
  @Override
  public void setProperty(SecurityContext securityContext, GraphObject obj, String clearTextPassword) throws FrameworkException {
   
    if (clearTextPassword != null) {
     
      if (validationInfo != null) {

        String errorType     = validationInfo.getErrorType();
        PropertyKey errorKey = validationInfo.getErrorKey();
        int minLength        = validationInfo.getMinLength();

        if (minLength > 0 && clearTextPassword.length() < minLength) {

          throw new FrameworkException(errorType, new TooShortToken(errorKey, minLength));
        }
      }
     
      String salt = RandomStringUtils.randomAlphanumeric(16);
     
      obj.setProperty(Principal.salt, salt);
      super.setProperty(securityContext, obj, AuthHelper.getHash(clearTextPassword, salt));
     
    } else {
     
      super.setProperty(securityContext, obj, null);
    }
  }
}
TOP

Related Classes of org.structr.core.property.PasswordProperty

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.