From: Roland Häder Date: Thu, 21 Apr 2016 10:17:46 +0000 (+0200) Subject: Contined: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aa37b945452000a91b161e5c4b10e3d6fa93a19c;p=juser-core.git Contined: - added method for checking user instance password with given, both from container - ignored strings for i18n - used MessageFormat.format() --- diff --git a/src/org/mxchange/jusercore/model/user/UserUtils.java b/src/org/mxchange/jusercore/model/user/UserUtils.java index 740e7e3..82a041b 100644 --- a/src/org/mxchange/jusercore/model/user/UserUtils.java +++ b/src/org/mxchange/jusercore/model/user/UserUtils.java @@ -22,6 +22,7 @@ import java.util.Random; import org.apache.commons.codec.digest.Crypt; import org.mxchange.jcore.BaseFrameworkSystem; import org.mxchange.jusercore.container.login.LoginContainer; +import org.mxchange.jusercore.container.login.UserLoginContainer; /** * An utilities class for users @@ -33,7 +34,7 @@ public class UserUtils extends BaseFrameworkSystem { /** * Password alphabet */ - private static final String PASSWORD_ALPHABET = "abcdefghijklmnopqrstuvwxzyABCDEFGHIJKLMNOPQRSTUVWXZY0123456789-/?!_+#@"; + private static final String PASSWORD_ALPHABET = "abcdefghijklmnopqrstuvwxzyABCDEFGHIJKLMNOPQRSTUVWXZY0123456789-/?!_+#@"; //NOI18N /** * Minimum password length @@ -64,10 +65,10 @@ public class UserUtils extends BaseFrameworkSystem { // Parameter should be valid if (null == length) { // Throw NPE - throw new NullPointerException("length is null"); + throw new NullPointerException("length is null"); //NOI18N } else if (length < PASSWORD_MINIMUM_LENGTH) { // To weak passwords - throw new IllegalArgumentException(MessageFormat.format("Password length {0} is to short, minimum: {1}", length, PASSWORD_MINIMUM_LENGTH)); + throw new IllegalArgumentException(MessageFormat.format("Password length {0} is to short, minimum: {1}", length, PASSWORD_MINIMUM_LENGTH)); //NOI18N } // Init variable @@ -83,7 +84,7 @@ public class UserUtils extends BaseFrameworkSystem { } // Should have the wanted length - assert (password.length() == length) : "Password length " + password.length() + " doesn't match requested: " + length; + assert (password.length() == length) : MessageFormat.format("Password length {0} doesn't match requested: {1}", password.length(), length); //NOI18N // Return it return password.toString(); @@ -100,10 +101,10 @@ public class UserUtils extends BaseFrameworkSystem { // Is it null or empty? if (null == userPassword) { // Throw NPE - throw new NullPointerException("userPassword is null"); + throw new NullPointerException("userPassword is null"); //NOI18N } else if (userPassword.isEmpty()) { // Empty passwords are hardcoded not allowed due to security risks - throw new IllegalArgumentException("userPassword is empty"); + throw new IllegalArgumentException("userPassword is empty"); //NOI18N } // Generate large number @@ -122,8 +123,7 @@ public class UserUtils extends BaseFrameworkSystem { /** * Checks if password from container matches the updatedUser's password *

- * @param container Container holding user instance and unencrypted - * password + * @param container Container holding user instance and unencrypted password * @param updatedUser Updated user instance from database *

* @return Whether the password matches @@ -132,19 +132,19 @@ public class UserUtils extends BaseFrameworkSystem { // Validate parameters if (null == container) { // Throw NPE - throw new NullPointerException("container is null"); + throw new NullPointerException("container is null"); //NOI18N } else if (null == updatedUser) { // And again NPE ... - throw new NullPointerException("updatedUser is null"); + throw new NullPointerException("updatedUser is null"); //NOI18N } else if (container.getUser() == null) { // NPE for user in container - throw new NullPointerException("container.user is null"); + throw new NullPointerException("container.user is null"); //NOI18N } else if (container.getUserPassword() == null) { // NPE for user password in container - throw new NullPointerException("container.userPassword is null"); + throw new NullPointerException("container.userPassword is null"); //NOI18N } else if (container.getUserPassword().isEmpty()) { // Empty password in container - throw new IllegalArgumentException("container.userPassword is empty"); + throw new IllegalArgumentException("container.userPassword is empty"); //NOI18N } // First encrypt password @@ -154,6 +154,36 @@ public class UserUtils extends BaseFrameworkSystem { return encryptedPassword.equals(updatedUser.getUserEncryptedPassword()); } + /** + * Checks if password from container matches with from user instance. + *

+ * @param container Container holding user instance and unencrypted password + *

+ * @return Whether it maches + */ + public static boolean ifPasswordMatches (final UserLoginContainer container) { + // Validate parameters + if (null == container) { + // Throw NPE + throw new NullPointerException("container is null"); //NOI18N + } else if (container.getUser() == null) { + // NPE for user in container + throw new NullPointerException("container.user is null"); //NOI18N + } else if (container.getUserPassword() == null) { + // NPE for user password in container + throw new NullPointerException("container.userPassword is null"); //NOI18N + } else if (container.getUserPassword().isEmpty()) { + // Empty password in container + throw new IllegalArgumentException("container.userPassword is empty"); //NOI18N + } + + // First encrypt password + String encryptedPassword = Crypt.crypt(container.getUserPassword(), container.getUser().getUserEncryptedPassword()); + + // Is it matching? + return encryptedPassword.equals(container.getUser().getUserEncryptedPassword()); + } + /** * No instance from this class */