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 SummaryModifier and TypeMethodDescription- final String- createNewPasswordHash- (String userName, String password) Creates a new password hash to store in the database.- static UserAuthenticationGets 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) 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- getInstanceGets the user authentication instance.
- validateHashPWValidates 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- If- hashPWis- null.
- IllegalArgumentException- If- hashPWis an empty string or has invalid format.
 
- getUserLocationsFinds locations of all users.- Specified by:
- getUserLocationsin interface- IAuthenticatedUserProvider
 
- isUserNameFreeChecks 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.
 
- getUserGets the instance of a user with its information.- Specified by:
- getUserin interface- IAuthenticatedUserProvider
- Parameters:
- userName- The user name.
- Returns:
- The instance holding the potentially authenticated user.
- Throws:
- NullPointerException- If the- userNameis- null.
- NotFoundException- If the user name is not found or an SQL exception occurred.
 
- getUserFromEmailLooks up a user from the email.- Parameters:
- emailAddress- The email address.
- Throws:
- NullPointerException- If the- emailAddressis- null.
- NotFoundException- If user is not found.
 
- getUserpublic 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.
 
- getUserpublic 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 nullif the user does not exist in the server's database or the password doesn't match.
- Throws:
- NullPointerException- If the- userNameor- passwordis- null.
- NotFoundException- If user is not found.
- SQLException- For SQL errors.
 
- getUserGets the basic user info for a user from its unique user ID. The value comes from- UserInfoBase.id- Specified by:
- getUserin interface- IAuthenticatedUserProvider
- Parameters:
- id- The unique user ID.
- Returns:
- The user information.
- Throws:
- NotFoundException- If the user ID is not found or an SQL exception occurred.
 
- getUserGets 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.
 
- validateUserpublic 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,- nullto 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.
 
- validateUserpublic 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,- nullto 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.
 
- createNewPasswordHashCreates 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.
 
- isOldPasswordMatchingVerifies that the old password matches before changing to a new one.- Parameters:
- bui- The basic user information.
- oldPassword- The old (existing) password.
- Returns:
- true for success, false if not matching.
- Throws:
- RuntimeException- If not called from inside the iiziServer.