]> git.mxchange.org Git - jjobs-war.git/commitdiff
Continued with unlocking users: (please cherry-pick)
authorRoland Häder <roland@mxchange.org>
Fri, 5 Aug 2016 14:33:42 +0000 (16:33 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 7 Aug 2016 10:29:11 +0000 (12:29 +0200)
- added controller method unlockUserAccount() which unlocks locked user accounts ... (so?)

src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestBean.java
src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestController.java

index 5729c06df844ebfdfb019f39244af6a5009d96d9..682bdb2b9a84e2585e9dabb5840ec1e0b0310248 100644 (file)
@@ -46,6 +46,7 @@ import org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException;
 import org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException;
 import org.mxchange.jusercore.exceptions.UserNotFoundException;
 import org.mxchange.jusercore.exceptions.UserPasswordRepeatMismatchException;
+import org.mxchange.jusercore.exceptions.UserStatusConfirmedException;
 import org.mxchange.jusercore.exceptions.UserStatusLockedException;
 import org.mxchange.jusercore.exceptions.UserStatusUnconfirmedException;
 import org.mxchange.jusercore.model.user.AdminUserSessionBeanRemote;
@@ -476,6 +477,41 @@ public class JobsAdminUserWebRequestBean extends BaseJobsController implements J
                return "admin_show_user?faces-redirect=true&includeViewParams=true"; //NOI18N
        }
 
+       @Override
+       public String unlockUserAccount (final User user) {
+               // Is the user instance valid and CONFIRMED?
+               if (null == user) {
+                       // Throw NPE
+                       throw new NullPointerException("user is null"); //NOI18N
+               } else if (user.getUserId() == null) {
+                       // Throw again
+                       throw new NullPointerException("user.userId is null"); //NOI18N
+               } else if (user.getUserId() < 1) {
+                       // Invalid id number
+                       throw new IllegalArgumentException(MessageFormat.format("user.userId={0} is not valid", user.getUserId())); //NOI18N
+               } else if (user.getUserAccountStatus() == UserAccountStatus.CONFIRMED) {
+                       // User account is locked
+                       throw new FacesException(new UserStatusConfirmedException(user));
+               } else if (user.getUserAccountStatus() == UserAccountStatus.UNCONFIRMED) {
+                       // User account is locked
+                       throw new FaceletException(new UserStatusUnconfirmedException(user));
+               }
+
+               try {
+                       // Get base URL
+                       String baseUrl = FacesUtils.generateBaseUrl();
+
+                       // Call EJB to unlock account
+                       this.adminUserBean.unlockUserAccount(user, baseUrl);
+               } catch (final UserStatusConfirmedException | UserStatusUnconfirmedException | UserNotFoundException ex) {
+                       // Throw again
+                       throw new FaceletException(ex);
+               }
+
+               // Should go fine at this point, redirect to user profile
+               return "admin_show_user?faces-redirect=true&includeViewParams=true"; //NOI18N
+       }
+
        /**
         * Clears this bean
         */
index 0f02e8db8dcc981266b1a0618aa9b2cf05fea676..fd466e4c5b722262f257f7c4b594ef0f7b89ffd8 100644 (file)
@@ -60,6 +60,16 @@ public interface JobsAdminUserWebRequestController extends Serializable {
         */
        String lockUserAccount (final User user);
 
+       /**
+        * Unlocks selected user's account. This method makes sure that the account
+        * is locked.
+        * <p>
+        * @param user User instance to be unlocked
+        * <p>
+        * @return Redirect outcome
+        */
+       String unlockUserAccount (final User user);
+
        /**
         * Getter for user name
         * <p>