]> git.mxchange.org Git - addressbook-war.git/blob - src/java/org/mxchange/addressbook/beans/email_address/EmailChangeWebSessionBean.java
Continued a bit:
[addressbook-war.git] / src / java / org / mxchange / addressbook / beans / email_address / EmailChangeWebSessionBean.java
1 /*
2  * Copyright (C) 2016 quix0r
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.addressbook.beans.email_address;
18
19 import java.text.MessageFormat;
20 import java.util.GregorianCalendar;
21 import java.util.List;
22 import java.util.Objects;
23 import javax.enterprise.context.SessionScoped;
24 import javax.faces.view.facelets.FaceletException;
25 import javax.inject.Inject;
26 import javax.inject.Named;
27 import javax.naming.Context;
28 import javax.naming.InitialContext;
29 import javax.naming.NamingException;
30 import org.mxchange.addressbook.beans.login.UserLoginWebSessionController;
31 import org.mxchange.jcontacts.contact.Contact;
32 import org.mxchange.jusercore.exceptions.UserPasswordMismatchException;
33 import org.mxchange.jusercore.model.email_address.ChangeableEmailAddress;
34 import org.mxchange.jusercore.model.email_address.EmailAddressChange;
35 import org.mxchange.jusercore.model.email_address.EmailChangeSessionBeanRemote;
36 import org.mxchange.jusercore.model.user.User;
37
38 /**
39  * A web session bean for changing email addresses
40  * <p>
41  * @author Roland Haeder<roland@mxchange.org>
42  */
43 @Named ("emailChangeController")
44 @SessionScoped
45 public class EmailChangeWebSessionBean implements EmailChangeWebSessionController {
46
47         /**
48          * Serial number
49          */
50         private static final long serialVersionUID = 186_078_724_659_153L;
51
52         /**
53          * Email address 1 (changing)
54          */
55         private String emailAddress1;
56
57         /**
58          * Email address 2 (repeat in changing)
59          */
60         private String emailAddress2;
61
62         /**
63          * Local list of already queued email addresses
64          */
65         private List<String> emailAddresses;
66
67         /**
68          * Remote email change bean
69          */
70         private final EmailChangeSessionBeanRemote emailBean;
71
72         /**
73          * Login bean (controller)
74          */
75         @Inject
76         private UserLoginWebSessionController loginController;
77
78         /**
79          * Default constructor
80          */
81         public EmailChangeWebSessionBean () {
82                 // Try it
83                 try {
84                         // Get initial context
85                         Context context = new InitialContext();
86
87                         // Try to lookup
88                         this.emailBean = (EmailChangeSessionBeanRemote) context.lookup("ejb/stateless-jjobs-email-change"); //NOI18N
89
90                         // Init list
91                         this.emailAddresses = this.emailBean.allQueuedAddressesAsList();
92                 } catch (final NamingException e) {
93                         // Throw again
94                         throw new FaceletException(e);
95                 }
96         }
97
98         @Override
99         public String doChangeEmailAddress () {
100                 // This method shall only be called if the user is logged-in
101                 if (!this.loginController.isUserLoggedIn()) {
102                         // Not logged-in
103                         throw new IllegalStateException("User is not logged-in"); //NOI18N
104                 } else if (!this.isRequiredChangeEmailAddressSet()) {
105                         // Not all required fields are set
106                         throw new FaceletException("Not all required fields are set."); //NOI18N
107                 } else if (!Objects.equals(this.getEmailAddress1(), this.getEmailAddress2())) {
108                         // Email address 1+2 mismatch
109                         throw new FaceletException("Email address 1/2 are mismatching."); //NOI18N
110                 } else if (!this.loginController.ifCurrentPasswordMatches()) {
111                         // Password not matching
112                         throw new FaceletException(new UserPasswordMismatchException(this.loginController.getLoggedInUser()));
113                 }
114
115                 // Get user instance
116                 User user = this.loginController.getLoggedInUser();
117
118                 // It should be there, so run some tests on it
119                 assert (user instanceof User) : "Instance loginController.loggedInUser is null"; //NOI18N
120                 assert (user.getUserId() instanceof Long) : "Instance loginController.loggedInUser.userId is null"; //NOI18N
121                 assert (user.getUserId() > 0) : MessageFormat.format("loginController.loggedInUser.userId={0} is invalid", user.getUserId()); //NOI18N
122                 assert (user.getUserContact() instanceof Contact) : "Instance loginController.loggedInUser.userContact is null"; //NOI18N
123                 assert (user.getUserContact().getContactId() instanceof Long) : "Instance loginController.userContact.contactId is null"; //NOI18N
124                 assert (user.getUserContact().getContactId() > 0) : MessageFormat.format("Instance loginController.userContact.contactId={0} is invalid", user.getUserContact().getContactId()); //NOI18N
125
126                 // Check if the email address is already enqueued
127                 if (this.isEmailAddressQueued()) {
128                         // Yes, then abort here
129                         return "login_email_already_added"; //NOI18N
130                 }
131
132                 // Create change object, to save EJB calls, the hash is not generated here
133                 ChangeableEmailAddress emailAddress = new EmailAddressChange(user, this.getEmailAddress1(), new GregorianCalendar());
134
135                 // Call EJB
136                 this.emailBean.enqueueEmailAddressForChange(emailAddress);
137
138                 // All fine
139                 return "login_email_change_queued"; //NOI18N
140         }
141
142         @Override
143         public String getEmailAddress1 () {
144                 return this.emailAddress1;
145         }
146
147         @Override
148         public void setEmailAddress1 (final String emailAddress1) {
149                 this.emailAddress1 = emailAddress1;
150         }
151
152         @Override
153         public String getEmailAddress2 () {
154                 return this.emailAddress2;
155         }
156
157         @Override
158         public void setEmailAddress2 (final String emailAddress2) {
159                 this.emailAddress2 = emailAddress2;
160         }
161
162         @Override
163         public boolean isRequiredChangeEmailAddressSet () {
164                 return ((this.getEmailAddress1() != null) &&
165                                 (this.getEmailAddress2() != null));
166         }
167
168         /**
169          * Checks if current emailAddress1 has already been queued. First a local
170          * list is being checked, if not found, the EJB is called. Only if found,
171          * the result is "cached" in the list.
172          * <p>
173          * @return Whether the email address in field emailAddress1 is already queued
174          */
175         private boolean isEmailAddressQueued () {
176                 // It should be there
177                 assert (this.getEmailAddress1() != null) : "emailAddress1 should not be null"; //NOI18N
178                 assert (!this.getEmailAddress1().trim().isEmpty()) : "emailAddress1 should not be empty"; //NOI18N
179
180                 // Check list
181                 if (this.emailAddresses.contains(this.getEmailAddress1())) {
182                         // Okay, found it
183                         return true;
184                 }
185
186                 // Check EJB
187                 boolean isQueued = this.emailBean.isEmailAddressEnqueued(this.getEmailAddress1());
188
189                 // Is it there?
190                 if (isQueued) {
191                         // Add to list
192                         this.emailAddresses.add(this.getEmailAddress1());
193                 }
194
195                 // Return status
196                 return isQueued;
197         }
198
199 }