Package com.iizix.server.user
Class UserAuthentication
java.lang.Object
com.iizix.server.user.UserAuthentication
- All Implemented Interfaces:
IAuthenticatedUserProvider
Helper class to perform user authentication. This class concentrates the calls to one location: here. It enabled implementation to external authentication systems such as JNDI or custom in-house through a Java API, etc.
- Author:
- Christopher Mindus
Method Summary
Modifier and TypeMethodDescriptionfinal String
createNewPasswordHash
(String userName, String password) Creates a new password hash to store in the database.static UserAuthentication
Gets the user authentication instance.getUser
(long id) Gets the basic user info for a user from its unique user ID.Gets the instance of a user with its information.getUser
(Connection conn, long id) Gets the basic user info for a user from its unique user ID.getUser
(Connection conn, String userName) Gets the instance of a user with its information.getUser
(Connection conn, String userName, String password) Gets the instance of a user with its information.getUserFromEmail
(String emailAddress) Looks up a user from the email.Finds locations of all users.final boolean
isOldPasswordMatching
(BasicUserInfo bui, String oldPassword, String password) Verifies that the old password matches before changing to a new one.boolean
isUserNameFree
(String userName) Checks if the user name is free to use, i.e.static void
validateHashPW
(String hashPW) Validates a hashed password.final UserAuthenticationInfo
validateUser
(UserIdentifier userIdentifier, AppFactory appFactory, String validatePassword) Authenticates a user ID and password.final UserAuthenticationInfo
validateUser
(UserIdentifier userIdentifier, String appID, String validatePassword) Authenticates a user ID and password.
Method Details
getInstance
Gets the user authentication instance.validateHashPW
Validates a hashed password.- Parameters:
hashPW
- The hashed password. It is based on PBKDF2 with Keyed-Hash Message Authentication Code (HMAC) with a SHA-256 hash. It can start with "EXT:
" if the user has signed in using an external Sign In Provider, e.g. LinkedIn or Facebook, the remaining part of the string identifies the provider and the users identifier for that provider.- Throws:
NullPointerException
- IfhashPW
isnull
.IllegalArgumentException
- IfhashPW
is an empty string or has invalid format.
getUserLocations
Finds locations of all users.- Specified by:
getUserLocations
in interfaceIAuthenticatedUserProvider
isUserNameFree
Checks if the user name is free to use, i.e. has not yet been signed up.- Parameters:
userName
- The user name.- Returns:
- true if free, false if already taken.
- Throws:
UserException
- If the user name is invalid.
getUser
Gets the instance of a user with its information.- Specified by:
getUser
in interfaceIAuthenticatedUserProvider
- Parameters:
userName
- The user name.- Returns:
- The instance holding the potentially authenticated user.
- Throws:
NullPointerException
- If theuserName
isnull
.NotFoundException
- If the user name is not found or an SQL exception occurred.
getUserFromEmail
Looks up a user from the email.- Parameters:
emailAddress
- The email address.- Throws:
NullPointerException
- If theemailAddress
isnull
.NotFoundException
- If user is not found.
getUser
public AuthenticatedUser getUser(Connection conn, String userName) throws NotFoundException, SQLException Gets the instance of a user with its information. This always gets the information from the database and never a cached user.- Parameters:
conn
- The connection.userName
- The user name.- Returns:
- The instance holding the potentially authenticated user, or null if the user does not exist in the server's database.
- Throws:
NotFoundException
- If user is not found.SQLException
- For SQL errors.
getUser
public AuthenticatedUser getUser(Connection conn, String userName, String password) throws NotFoundException, SQLException Gets the instance of a user with its information.- Parameters:
conn
- The database connection.userName
- The user name.password
- The password hash or the clear text password.- Returns:
- The instance holding the potentially authenticated user, or
null
if the user does not exist in the server's database or the password doesn't match. - Throws:
NullPointerException
- If theuserName
orpassword
isnull
.NotFoundException
- If user is not found.SQLException
- For SQL errors.
getUser
Gets the basic user info for a user from its unique user ID. The value comes from
.UserInfoBase.id
- Specified by:
getUser
in interfaceIAuthenticatedUserProvider
- Parameters:
id
- The unique user ID.- Returns:
- The user information.
- Throws:
NotFoundException
- If the user ID is not found or an SQL exception occurred.
getUser
Gets the basic user info for a user from its unique user ID. The value comes from
.UserInfoBase.id
- Parameters:
conn
- The connection.id
- The unique user ID.- Returns:
- The user information.
- Throws:
NotFoundException
- If user is not found.SQLException
- For SQL errors.
validateUser
public final UserAuthenticationInfo validateUser(UserIdentifier userIdentifier, String appID, String validatePassword) Authenticates a user ID and password.- Parameters:
userIdentifier
- The user identifier.appID
- The app ID to validate,null
to skip this test.validatePassword
- The password to validate. If the password is empty, the user is authenticated as pre-validation used e.g. by the iiziRun Developer listing possible sessions, etc. When this parameter is null, the real password is not validated.- Returns:
- The user authentication result.
validateUser
public final UserAuthenticationInfo validateUser(UserIdentifier userIdentifier, AppFactory appFactory, String validatePassword) Authenticates a user ID and password.- Parameters:
userIdentifier
- The user identifier.appFactory
- The app to validate,null
to skip this test.validatePassword
- The password to validate. If the password is empty, the user is authenticated as pre-validation used e.g. by the iiziRun Developer listing possible sessions, etc. When this parameter is null, the real password is not validated.- Returns:
- The user authentication result.
createNewPasswordHash
Creates a new password hash to store in the database. The password is not decryptable.- Parameters:
userName
- The basic user information.password
- The new password.- Returns:
- The new password hash.
isOldPasswordMatching
Verifies that the old password matches before changing to a new one.- Parameters:
bui
- The basic user information.oldPassword
- The old (existing) password.password
- The password.- Returns:
- true for success, false if not matching.
- Throws:
RuntimeException
- If not called from inside the iiziServer.