]> git.mxchange.org Git - jjobs-ejb.git/blob - src/java/org/mxchange/jusercore/model/user/email_address/JobsUserEmailChangeSessionBean.java
updated JNDI names
[jjobs-ejb.git] / src / java / org / mxchange / jusercore / model / user / email_address / JobsUserEmailChangeSessionBean.java
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (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 Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jusercore.model.user.email_address;
18
19 import java.text.MessageFormat;
20 import java.util.GregorianCalendar;
21 import java.util.List;
22 import javax.ejb.EJB;
23 import javax.ejb.EJBException;
24 import javax.ejb.Stateless;
25 import javax.mail.Address;
26 import javax.mail.internet.AddressException;
27 import javax.mail.internet.InternetAddress;
28 import javax.persistence.NoResultException;
29 import javax.persistence.Query;
30 import org.mxchange.jjobs.database.BaseJobsDatabaseBean;
31 import org.mxchange.jusercore.model.email_address.ChangeableEmailAddress;
32 import org.mxchange.jusercore.model.email_address.EmailAddressChange;
33 import org.mxchange.jusercore.model.user.UserSessionBeanRemote;
34 import org.mxchange.jusercore.model.user.UserUtils;
35
36 /**
37  * A session-scoped bean for changing email addresses
38  * <p>
39  * @author Roland Häder<roland@mxchange.org>
40  */
41 @Stateless (name = "userEmailChange", description = "A bean handling user email changes")
42 public class JobsUserEmailChangeSessionBean extends BaseJobsDatabaseBean implements UserEmailChangeSessionBeanRemote {
43
44         /**
45          * Serial number
46          */
47         private static final long serialVersionUID = 182_698_165_971_548L;
48
49         /**
50          * User bean
51          */
52         @EJB
53         private UserSessionBeanRemote userBean;
54
55         /**
56          * Default constructor
57          */
58         public JobsUserEmailChangeSessionBean () {
59                 // Call super constructor
60                 super();
61         }
62
63         @Override
64         @SuppressWarnings ("unchecked")
65         public List<String> allQueuedAddresses () {
66                 // Trace message
67                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allQueuedAddresses: CALLED!", this.getClass().getSimpleName())); //NOI18N
68
69                 // Get named query
70                 Query query = this.getEntityManager().createNamedQuery("AllEmailAddressChanges", String.class); //NOI18N
71
72                 // Get all entries
73                 List<String> emailAddresses = query.getResultList();
74
75                 // Trace message
76                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allQueuedAddresses: emailAddresses.size()={1} - EXIT!", this.getClass().getSimpleName(), emailAddresses.size())); //NOI18N
77
78                 // Return it
79                 return emailAddresses;
80         }
81
82         @Override
83         public void enqueueEmailAddressForChange (final ChangeableEmailAddress emailChange, final String baseUrl) {
84                 // Trace message
85                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.enqueueEmailAddressForChange: emailChange={1},baseUrl={2} - CALLED!", this.getClass().getSimpleName(), emailChange, baseUrl)); //NOI18N
86
87                 // Email address change should be valid
88                 if (null == emailChange) {
89                         // Abort here
90                         throw new NullPointerException("emailChange is null"); //NOI18N
91                 } else if (emailChange.getEmailChangeUser() == null) {
92                         // Throw NPE again
93                         throw new NullPointerException("emailChange.emailChangeUser is null"); //NOI18N
94                 } else if (emailChange.getEmailChangeUser().getUserId() == null) {
95                         // Throw NPE again
96                         throw new NullPointerException("emailChange.emailChangeUser.userId is null"); //NOI18N
97                 } else if (emailChange.getEmailChangeUser().getUserId() < 1) {
98                         // Not valid id
99                         throw new IllegalArgumentException(MessageFormat.format("emailChange.emailChangeUser.userId={0} is invalid.", emailChange.getEmailChangeUser().getUserId())); //NOI18N
100                 } else if (!this.userBean.ifUserExists(emailChange.getEmailChangeUser())) {
101                         // User does not exist
102                         throw new EJBException(MessageFormat.format("Email change with id {0} does not exist.", emailChange.getEmailChangeId())); //NOI18N
103                 } else if (emailChange.getEmailAddress().trim().isEmpty()) {
104                         // Email address is empty
105                         throw new IllegalArgumentException("emailChange.emaiLAddress is empty."); //NOI18N
106                 } else if (this.isEmailAddressEnqueued(emailChange.getEmailAddress())) {
107                         // Email address is already enqueued
108                         throw new EJBException(MessageFormat.format("Email address {0} is already enqueued.", emailChange.getEmailAddress())); //NOI18N
109                 }
110
111                 // The email change is not (yet) there, add secure hash and "created" timestamp
112                 emailChange.setEmailChangeCreated(new GregorianCalendar());
113                 this.generateSecureHash(emailChange);
114
115                 // Make user managed
116                 emailChange.setEmailChangeUser(this.getManagedUser(emailChange.getEmailChangeUser()));
117
118                 // Persist it
119                 //@TODO Fix email delivery then allow this: this.getEntityManager().persist(emailChange);
120                 // Init variable
121                 Address emailAddress;
122
123                 try {
124                         // Create email address and set
125                         emailAddress = new InternetAddress(emailChange.getEmailAddress());
126                 } catch (final AddressException ex) {
127                         // Throw again
128                         throw new EJBException(ex);
129                 }
130
131                 // Send email
132                 this.sendEmail("User email change", "user_email_change", emailAddress, emailChange.getEmailChangeUser(), baseUrl, null); //NOI18N
133
134                 // Trace message
135                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.enqueueEmailAddressForChange - EXIT!", this.getClass().getSimpleName())); //NOI18N
136         }
137
138         @Override
139         public boolean isEmailAddressEnqueued (final String emailAddress) {
140                 // Trace message
141                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.isEmailAddressEnqueued: emailAddress={1} - CALLED!", this.getClass().getSimpleName(), emailAddress)); //NOI18N
142
143                 // Create query instance
144                 Query query = this.getEntityManager().createNamedQuery("SearchEmailChangeByEmail"); //NOI18N
145
146                 // Add email address as parameter
147                 query.setParameter("email", emailAddress); //NOI18N
148
149                 // Initialize variable
150                 boolean isFound = false;
151
152                 // Try it
153                 try {
154                         // Try to get single result
155                         ChangeableEmailAddress dummy = (ChangeableEmailAddress) query.getSingleResult();
156
157                         // Found it
158                         isFound = true;
159                 } catch (final NoResultException ex) {
160                         // Log it
161                         this.getLoggerBeanLocal().logException(ex);
162                 }
163
164                 // Trace message
165                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.isEmailAddressEnqueued: isFound={1} - EXIT!", this.getClass().getSimpleName(), isFound)); //NOI18N
166
167                 // Return it
168                 return isFound;
169         }
170
171         @Override
172         public void updateEmailAddress (final ChangeableEmailAddress emailAddress) {
173                 // Trace message
174                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateEmailAddress: emailAddress={1} - CALLED!", this.getClass().getSimpleName(), emailAddress)); //NOI18N
175
176                 // Email address change should be valid
177                 if (null == emailAddress) {
178                         // Abort here
179                         throw new NullPointerException("emailAddress is null"); //NOI18N
180                 } else if (emailAddress.getEmailChangeId() == null) {
181                         // Throw NPE again
182                         throw new NullPointerException("emailAddress.emailChangeId is null"); //NOI18N
183                 } else if (emailAddress.getEmailChangeId() < 1) {
184                         // Not valid
185                         throw new IllegalArgumentException(MessageFormat.format("emailAddress.emailChangeId={0} is not valid.", emailAddress.getEmailChangeId())); //NOI18N
186                 } else if (emailAddress.getEmailAddress().trim().isEmpty()) {
187                         // Email address is empty
188                         throw new IllegalArgumentException("emailAddress.emaiLAddress is empty."); //NOI18N
189                 } else if (!this.userBean.ifUserExists(emailAddress.getEmailChangeUser())) {
190                         // User does not exist
191                         throw new EJBException(MessageFormat.format("Email change with id {0} does not exist.", emailAddress.getEmailChangeId())); //NOI18N
192                 } else if (!this.isEmailAddressEnqueued(emailAddress.getEmailAddress())) {
193                         // Email address is not enqueued
194                         throw new EJBException(MessageFormat.format("Email address {0} is not enqueued.", emailAddress.getEmailAddress())); //NOI18N
195                 }
196
197                 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
198         }
199
200         /**
201          * Generates a secure, unique hash for given email address change. This
202          * requires to check if the hash is really not there.
203          * <p>
204          * @param emailAddressChange Email address change
205          */
206         private void generateSecureHash (final ChangeableEmailAddress emailAddressChange) {
207                 // Email address change should be valid
208                 if (null == emailAddressChange) {
209                         // Abort here
210                         throw new NullPointerException("emailAddressChange is null"); //NOI18N
211                 } else if (emailAddressChange.getEmailAddress().trim().isEmpty()) {
212                         // Email address is empty
213                         throw new IllegalArgumentException("emailAddressChange.emaiLAddress is empty."); //NOI18N
214                 }
215
216                 // Initialize loop with null
217                 String hash = null;
218
219                 // Default is not used
220                 boolean isUsed = true;
221
222                 // Search for free hash
223                 while (isUsed) {
224                         // Generate hash, there is already in UserUtils a nice method that can be used for this purpose.
225                         hash = UserUtils.encryptPassword(String.format("%s:%s", emailAddressChange.getEmailAddress(), emailAddressChange.toString())); //NOI18N
226
227                         // The hash *may* be unique, better test it
228                         Query query = this.getEntityManager().createNamedQuery("SearchEmailChangeByHash", EmailAddressChange.class); //NOI18N
229
230                         // Set hash as parameter
231                         query.setParameter("hash", hash); //NOI18N
232
233                         // Try to get single result
234                         try {
235                                 // Get single result
236                                 ChangeableEmailAddress dummy = (ChangeableEmailAddress) query.getSingleResult();
237                         } catch (final NoResultException ex) {
238                                 // Not found
239                                 isUsed = false;
240                         }
241                 }
242
243                 // hash should not be null and set
244                 assert (hash != null) : "hash is null"; //NOI18N
245                 assert (!hash.isEmpty()) : "hash is empty"; //NOI18N
246
247                 // Set it in email change
248                 emailAddressChange.setEmailChangeHash(hash);
249         }
250
251 }